Skip to content

Commit 47d3d84

Browse files
authored
bump version to 0.7.5 (#17)
* bump version to 0.7.5 * fix extension update guide links * remove unused variable
1 parent 3dec43b commit 47d3d84

File tree

6 files changed

+4
-12
lines changed

6 files changed

+4
-12
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Wallet Guard: Browse Web3 Securely",
3-
"version": "0.7.4",
3+
"version": "0.7.5",
44
"description": "A browser extension for detecting phishing attacks on crypto wallets",
55
"main": "index.js",
66
"scripts": {

src/components/app-dashboard/tabs/dashboard/DashboardTab.tsx

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ import { OnboardingSimulation } from './onboarding/OnboardingSimulation';
3939
import { OnboardingCommunity } from './onboarding/OnboardingCommunity';
4040
import { OnboardingPhishing } from './onboarding/OnboardingPhishing';
4141
import { posthog } from 'posthog-js';
42+
import { openGuide } from '../../../../lib/helpers/linkHelper';
4243

4344
export function DashboardTab() {
4445
const [walletInfo, setWalletInfo] = useState<WalletInfo[]>([]);
@@ -126,12 +127,6 @@ export function DashboardTab() {
126127
chrome.storage.local.set({ settings: newSettings });
127128
}
128129

129-
function openGuide() {
130-
chrome.tabs.create({
131-
url: 'https://medium.com/@walletguardofficial/how-to-update-browser-extensions-e61b1138cf7e',
132-
});
133-
}
134-
135130
async function getVersionFromLocalStorage() {
136131
const requests: Promise<WalletInfo | null>[] = [];
137132
const supportedWalletKeys = Object.keys(supportedWallets) as WalletType[];

src/injected/injectWalletGuard.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ let timer: NodeJS.Timer | undefined = undefined;
3636
// https://github.com/RevokeCash/browser-extension
3737
// https://github.com/jqphu/PocketUniverse
3838
const addWalletGuardProxy = (provider: any) => {
39-
console.log('added proxy');
4039
const sendHandler = {
4140
apply: (target: any, thisArg: any, args: any[]) => {
4241
const [payloadOrMethod, callbackOrParams] = args;

src/lib/environment.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
export const SERVER_URL_PROD = 'https://7gsdnppspe.us-east-2.awsapprunner.com';
2-
31
// PDS
42
export const PDS_SERVER_URL_PROD = 'https://walletguard-phishing-detection-service-prod.com';
53

src/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"name": "Wallet Guard: Browse Web3 Securely",
44
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0SMGNwLFsP2k1jAD54vtDqLJuIpeZWCc9gdvo2N8hzE1qIkOt29ynU1VgkJbtfuWHqWSyOCo1ljs2MjbqqFjG4qz5o3ZrEAMwmEbWGCuPddUIIiWIK0oF+BkwZiRpRS2nw/i9Dmeusf0eOlxxLYD0NpKszX73lqGt4LBIY8Wva7vmqdnKPa1F6+DDZviXcBRa8CLCzqDujTjON37o+NvQOq2u49UzVXr/DcePFrUTnnjdNkKTQkLlH00lwvxUUJl0g5IVdlxNgZXPY/C6P39YIIxsBFJH0rXvQrLgED6NGR17CBnLhOmmYghku17yoUGg3KrT4aeh8+uG5NrQZuqGwIDAQAB",
55
"description": "Wallet Guard acts as a security companion to your crypto wallet of choice, so you can browse at ease.",
6-
"version": "0.7.4",
6+
"version": "0.7.5",
77
"icons": {
88
"128": "images/wg_logos/logo_128x128.png"
99
},

src/services/http/versionService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export async function checkAllWalletsAndCreateAlerts() {
7171
name: `${capitalizeFirstLetter(wallet.name)} Version`,
7272
category: AlertCategory.WalletOutOfDate,
7373
details: 'View the update guide for more info',
74-
link: 'https://medium.com/@walletguardofficial/how-to-update-browser-extensions-e61b1138cf7e',
74+
link: 'https://www.walletguard.app/blog/how-to-update-browser-extensions',
7575
key: `${wallet.name}:${wallet.latestVersion}`
7676
} as AlertDetail);
7777
});

0 commit comments

Comments
 (0)