Skip to content

Commit

Permalink
Merge pull request #76 from gnosis/decoding-fix
Browse files Browse the repository at this point in the history
Decoding fix
  • Loading branch information
jfschwarz authored Oct 6, 2023
2 parents 73e303a + ca71eee commit aee461c
Show file tree
Hide file tree
Showing 41 changed files with 308 additions and 268 deletions.
1 change: 1 addition & 0 deletions extension/.cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"words": [
"aave",
"alchemix",
"ankr",
"apikey",
"barnbridge",
"bitshift",
Expand Down
303 changes: 163 additions & 140 deletions extension/.pnp.cjs

Large diffs are not rendered by default.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
4 changes: 4 additions & 0 deletions extension/.yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ packageExtensions:
'@walletconnect/modal-ui@*':
dependencies:
'lit-html': '*'
'zksync-web3@*':
dependencies:
'@ethersproject/web': '*'
'@ethersproject/hash': '*'

plugins:
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
Expand Down
20 changes: 10 additions & 10 deletions extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@
"@ethersproject/abi": "^5.7.0",
"@ethersproject/abstract-provider": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@gnosis.pm/zodiac": "^3.2.2",
"@safe-global/api-kit": "^1.3.0",
"@safe-global/protocol-kit": "^1.2.0",
"@safe-global/safe-core-sdk-types": "^2.2.0",
"@gnosis.pm/zodiac": "^3.3.10",
"@safe-global/api-kit": "^1.3.1",
"@safe-global/protocol-kit": "^1.3.0",
"@safe-global/safe-core-sdk-types": "^2.3.0",
"@shazow/whatsabi": "^0.2.1",
"@testing-library/jest-dom": "^5.16.1",
"@typechain/ethers-v5": "^10.0.0",
Expand All @@ -41,13 +41,13 @@
"@types/react-modal": "^3.13.1",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"@walletconnect/core": "^2.9.0",
"@walletconnect/ethereum-provider": "^2.8.6",
"@walletconnect/core": "^2.10.1",
"@walletconnect/ethereum-provider": "^2.10.1",
"@walletconnect/keyvaluestorage": "^1.0.2",
"@walletconnect/modal": "^2.5.9",
"@walletconnect/modal": "^2.6.2",
"@walletconnect/safe-json": "^1.0.2",
"@walletconnect/sign-client": "^2.9.0",
"@walletconnect/universal-provider": "^2.9.0",
"@walletconnect/sign-client": "^2.10.1",
"@walletconnect/universal-provider": "^2.10.1",
"classnames": "^2.3.1",
"copy-to-clipboard": "^3.3.1",
"cspell": "^5.21.2",
Expand Down Expand Up @@ -76,7 +76,7 @@
"react-icons": "^4.3.1",
"react-modal": "^3.15.1",
"react-moment": "^1.1.3",
"react-multisend": "^1.2.0",
"react-multisend": "^2.0.0",
"react-select": "^5.2.1",
"react-toastify": "^9.0.8",
"rimraf": "^3.0.2",
Expand Down
3 changes: 2 additions & 1 deletion extension/src/bridge/iframe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,5 +113,6 @@ export default class BridgeIframe extends EventEmitter {
// Some apps don't support generic injected providers, so we pretend to be MetaMask
isMetaMask =
window.location.hostname === 'app.stakewise.io' ||
window.location.hostname === 'app.aura.finance'
window.location.hostname === 'app.aura.finance' ||
window.location.hostname === 'www.ankr.com'
}
Loading

0 comments on commit aee461c

Please sign in to comment.