Skip to content

Commit

Permalink
Merge pull request blocknative#716 from blocknative/release/1.35.1
Browse files Browse the repository at this point in the history
Release 1.35.1 - Master
  • Loading branch information
taylorjdawson authored Oct 4, 2021
2 parents 76c47c9 + c56dc3a commit 80a795c
Show file tree
Hide file tree
Showing 4 changed files with 210 additions and 32 deletions.
10 changes: 6 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bnc-onboard",
"version": "1.35.0",
"version": "1.35.1",
"description": "Onboard users to web3 by allowing them to select a wallet, get that wallet ready to transact and have access to synced wallet state.",
"keywords": [
"ethereum",
Expand Down Expand Up @@ -60,10 +60,9 @@
"@gnosis.pm/safe-apps-provider": "^0.5.0",
"@gnosis.pm/safe-apps-sdk": "^3.0.0",
"@keystonehq/eth-keyring": "0.7.7",
"@ledgerhq/hw-app-eth": "^5.49.0",
"@ledgerhq/hw-app-eth": "6.8.1",
"@ledgerhq/hw-transport-u2f": "^5.21.0",
"@ledgerhq/hw-transport-webusb": "5.53.0",
"@myetherwallet/mewconnect-web-client": "^2.2.0-beta.11",
"@ledgerhq/hw-transport-webusb": "6.7.0",
"@portis/web3": "^4.0.0",
"@shapeshiftoss/hdwallet-core": "^1.15.2",
"@shapeshiftoss/hdwallet-keepkey": "^1.15.2",
Expand All @@ -86,6 +85,9 @@
"walletlink": "^2.1.11",
"web3-provider-engine": "^15.0.4"
},
"optionalDependencies": {
"@myetherwallet/mewconnect-web-client": "^2.2.0-beta.11"
},
"resolutions": {
"authereum/web3-utils/underscore": "^1.12.1",
"authereum/ethereum-private-key-to-address/meow/trim-newlines": "^3.0.1",
Expand Down
1 change: 1 addition & 0 deletions src/modules/select/wallets/wallet-connect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ function walletConnect(
const provider = new WalletConnectProvider({
infuraId: infuraKey,
rpc,
chainId: networkId,
bridge,
pollingInterval
})
Expand Down
7 changes: 4 additions & 3 deletions src/utilities.ts
Original file line number Diff line number Diff line change
Expand Up @@ -381,11 +381,12 @@ export function networkName(id: number): string {
3: 'ropsten',
4: 'rinkeby',
5: 'goerli',
28: 'boba-rinkeby',
42: 'kovan',
100: 'xdai',
56: 'bsc',
288: 'boba-mainnet',
28: 'boba-rinkeby'
100: 'xdai',
137: 'polygon',
288: 'boba-mainnet'
} as { [key: number]: string }
)[id] || 'unknown'
}
Expand Down
Loading

0 comments on commit 80a795c

Please sign in to comment.