Skip to content

Commit

Permalink
refactor: wallet connect pairing and signing (#2956)
Browse files Browse the repository at this point in the history
  • Loading branch information
johnthecat authored Jan 14, 2025
1 parent 1819421 commit 5281ba9
Show file tree
Hide file tree
Showing 69 changed files with 1,899 additions and 1,590 deletions.
2 changes: 2 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,8 @@ module.exports = {
'effector/enforce-effect-naming-convention': 'off',
// Took around 4 seconds to check this single rule
'effector/enforce-store-naming-convention': 'off',
// Makes no sense since we're replacing effect handlers while testing
'effector/strict-effect-handlers': 'off',

// Boundaries setup
'boundaries/entry-point': [
Expand Down
12 changes: 7 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
"main:staging": "vite build --mode staging -c vite.config.main.ts",
"main:prod": "vite build -c vite.config.main.ts",
"build": "cross-env CHAINS_FILE=chains TOKENS_FILE=tokens pnpm r clean:prod main:prod preload:prod renderer:prod",
"build:dev": "cross-env CHAINS_FILE=chains-dev TOKENS_FILE=tokens-dev pnpm r clean:prod main:dev preload:dev renderer:dev",
"build:staging": "cross-env CHAINS_FILE=chains TOKENS_FILE=tokens pnpm r clean:prod renderer:staging preload:staging main:staging",
"build:dev": "cross-env CHAINS_FILE=chains-dev TOKENS_FILE=tokens-dev pnpm r clean:prod clean:build main:dev preload:dev renderer:dev",
"build:staging": "cross-env CHAINS_FILE=chains TOKENS_FILE=tokens pnpm r clean:prod clean:build renderer:staging preload:staging main:staging",
"postbuild": "node scripts/postbuild.js",
"postbuild:staging": "node scripts/postbuild.js staging",
"dist": "cross-env NODE_ENV=production electron-builder --config electron-builder.js -p never",
Expand Down Expand Up @@ -96,9 +96,10 @@
"@substrate/connect": "2.1.1",
"@substrate/txwrapper-orml": "7.5.3",
"@substrate/txwrapper-polkadot": "7.5.3",
"@walletconnect/types": "2.17.2",
"@walletconnect/universal-provider": "^2.17.2",
"@walletconnect/utils": "2.17.2",
"@walletconnect/core": "2.17.3",
"@walletconnect/sign-client": "2.17.3",
"@walletconnect/types": "2.17.3",
"@walletconnect/utils": "2.17.3",
"@zxing/browser": "0.1.5",
"@zxing/library": "0.21.3",
"bignumber.js": "9.1.2",
Expand Down Expand Up @@ -220,6 +221,7 @@
"prettier-plugin-tailwindcss": "0.6.8",
"pretty-quick": "4.0.0",
"react-refresh": "0.14.2",
"react-scan": "0.0.54",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.21",
"storybook": "8.4.7",
Expand Down
Loading

0 comments on commit 5281ba9

Please sign in to comment.