Skip to content

Commit

Permalink
Fixing BSC explorer url (#150)
Browse files Browse the repository at this point in the history
  • Loading branch information
githubdoramon authored Oct 23, 2021
1 parent 25b923f commit 65546a6
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
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.2",
"version": "0.12.3",
"author": "Aragon Association <legal@aragon.org>",
"license": "MIT",
"main": "dist/cjs/index.js",
Expand Down
26 changes: 13 additions & 13 deletions src/chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -169,18 +169,6 @@ const CHAIN_INFORMATION = new Map<number, ChainInformation | ChainType>([
testnet: true,
},
],
[
1666700000,
{
id: 1666700000,
nativeCurrency: ONE,
type: 'harmonyTest',
fullName: 'Harmony ONE Testnet',
shortName: 'Harmony Testnet',
explorerUrl: `https://explorer.pops.one/`,
testnet: true,
},
],
[
1666600000,
{
Expand All @@ -193,6 +181,18 @@ const CHAIN_INFORMATION = new Map<number, ChainInformation | ChainType>([
testnet: false,
},
],
[
1666700000,
{
id: 1666700000,
nativeCurrency: ONE,
type: 'harmonyTest',
fullName: 'Harmony ONE Testnet',
shortName: 'Harmony Testnet',
explorerUrl: `https://explorer.testnet.harmony.one/`,
testnet: true,
},
],
[
56,
{
Expand All @@ -201,7 +201,7 @@ const CHAIN_INFORMATION = new Map<number, ChainInformation | ChainType>([
type: 'bsc',
fullName: 'Binance Smart Chain',
shortName: 'BSC',
explorerUrl: `https://testnet.bscscan.com/`,
explorerUrl: `https://bscscan.com/`,
testnet: false,
},
],
Expand Down

0 comments on commit 65546a6

Please sign in to comment.