Skip to content

Commit

Permalink
add arbitrum (#151)
Browse files Browse the repository at this point in the history
  • Loading branch information
yuetloo committed Oct 25, 2021
1 parent 65546a6 commit f72523d
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 2 deletions.
Binary file removed .DS_Store
Binary file not shown.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ yarn-error.log
.yarn/cache
.cache/
.idea/
.vscode/
.vscode/
.DS_Store
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "use-wallet",
"version": "0.12.3",
"version": "0.13.0",
"author": "Aragon Association <legal@aragon.org>",
"license": "MIT",
"main": "dist/cjs/index.js",
Expand Down
24 changes: 24 additions & 0 deletions src/chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,30 @@ const CHAIN_INFORMATION = new Map<number, ChainInformation | ChainType>([
testnet: true,
},
],
[
421611,
{
id: 421611,
nativeCurrency: ETH,
type: 'arbitrumTest',
fullName: 'Arbitrum Testnet',
shortName: 'Arbitrum Testnet',
explorerUrl: 'https://testnet.arbiscan.io/',
testnet: true,
},
],
[
42161,
{
id: 42161,
nativeCurrency: ETH,
type: 'arbitrum',
fullName: 'Arbitrum Mainnet',
shortName: 'Arbitrum',
explorerUrl: 'https://arbiscan.io/',
testnet: false,
},
],
[
1337,
{
Expand Down

0 comments on commit f72523d

Please sign in to comment.