Skip to content

Commit

Permalink
update deps + change logo
Browse files Browse the repository at this point in the history
  • Loading branch information
chaitanyapotti committed Jun 5, 2024
1 parent b97e7b3 commit d7503e2
Show file tree
Hide file tree
Showing 3 changed files with 90 additions and 84 deletions.
142 changes: 74 additions & 68 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@
"format": "prettier --write src/"
},
"dependencies": {
"@gtm-support/vue-gtm": "^2.2.0",
"@gtm-support/vue-gtm": "^3.0.1",
"@mertasan/tailwindcss-variables": "^2.7.0",
"bn.js": "^5.2.1",
"@toruslabs/ethereum-controllers": "^5.7.0",
"@toruslabs/vue-components": "^7.8.2",
"@toruslabs/vue-icons": "^7.6.1",
"@vueuse/core": "^10.9.0",
"@vueuse/core": "^10.10.0",
"@walletconnect/sign-client": "^2.13.1",
"@web3auth/default-evm-adapter": "^8.6.2",
"@web3auth/ethereum-provider": "^8.6.2",
Expand All @@ -36,11 +36,11 @@
"vue-router": "^4.3.2"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.10.2",
"@rushstack/eslint-patch": "^1.10.3",
"@tsconfig/node18": "^18.2.4",
"@types/jsdom": "^21.1.6",
"@types/node": "^20.12.10",
"@vitejs/plugin-vue": "^5.0.4",
"@types/jsdom": "^21.1.7",
"@types/node": "^20.14.1",
"@vitejs/plugin-vue": "^5.0.5",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/test-utils": "^2.4.6",
Expand All @@ -49,19 +49,19 @@
"buffer": "^6.0.3",
"empty-module": "^0.0.2",
"eslint": "^8.56.0",
"eslint-plugin-vue": "^9.25.0",
"jsdom": "^24.0.0",
"eslint-plugin-vue": "^9.26.0",
"jsdom": "^24.1.0",
"lodash-es": "^4.17.21",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prettier": "^3.3.0",
"process": "^0.11.10",
"source-map-explorer": "^2.5.3",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vite": "^5.2.12",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.6.0",
"vue-tsc": "^2.0.16"
"vue-tsc": "^2.0.19"
}
}
10 changes: 5 additions & 5 deletions src/store/web3authStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ export const useWeb3authStore = defineStore('web3auth', () => {
privateKeyProvider: privateKeyProvider,
uiConfig: {
uxMode: 'redirect',
logoDark: 'https://images.web3auth.io/web3auth-logo-w.svg',
logoLight: 'https://images.web3auth.io/web3auth-logo-w-light.svg',
logoLight: 'https://images.web3auth.io/web3auth-logo-w.svg',
logoDark: 'https://images.web3auth.io/web3auth-logo-w-light.svg',
// logoDark: 'https://images.web3auth.io/login-farcaster-active.svg',
// logoLight: 'https://images.web3auth.io/login-farcaster-light.svg',
mode: 'light',
Expand Down Expand Up @@ -111,17 +111,17 @@ export const useWeb3authStore = defineStore('web3auth', () => {
}

async function showWalletUi() {
if(!walletServicesPlugin.value) return console.error('Wallet Services Plugin not initialized');
if (!walletServicesPlugin.value) return console.error('Wallet Services Plugin not initialized')
return walletServicesPlugin.value.showWalletUi()
}

function initiateTopUpPlugin() {
if(!walletServicesPlugin.value) return console.error('Wallet Services Plugin not initialized');
if (!walletServicesPlugin.value) return console.error('Wallet Services Plugin not initialized')
return walletServicesPlugin.value.showCheckout()
}

function initiateWalletConnect() {
if(!walletServicesPlugin.value) return console.error('Wallet Services Plugin not initialized');
if (!walletServicesPlugin.value) return console.error('Wallet Services Plugin not initialized')
return walletServicesPlugin.value.showWalletConnectScanner()
}

Expand Down

0 comments on commit d7503e2

Please sign in to comment.