-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update addresses, add isValidAddress & searchChecksummedNetworkss
- Loading branch information
1 parent
5c19b2b
commit 7289113
Showing
7 changed files
with
286 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,5 +3,8 @@ module.exports = { | |
"env": { | ||
"node": true, | ||
"mocha": true | ||
} | ||
}, | ||
"plugins": [ | ||
"json" | ||
] | ||
}; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,167 @@ | ||
[ | ||
{ | ||
"name": "Ethereum Mainnet", | ||
"chainId": 1, | ||
"shortName": "eth", | ||
"chain": "ETH", | ||
"network": "mainnet", | ||
"networkId": 1, | ||
"nativeCurrency": { | ||
"name": "Ether", | ||
"symbol": "ETH", | ||
"decimals": 18 | ||
}, | ||
"rpc": [ | ||
"https://mainnet.infura.io/v3/${INFURA_API_KEY}", | ||
"https://api.mycryptoapi.com/eth" | ||
], | ||
"faucets": [], | ||
"infoURL": "https://ethereum.org", | ||
"explorers": [ | ||
"https://etherscan.io" | ||
] | ||
}, | ||
{ | ||
"name": "Ethereum Testnet Ropsten", | ||
"chainId": 3, | ||
"shortName": "rop", | ||
"chain": "ETH", | ||
"network": "ropsten", | ||
"networkId": 3, | ||
"nativeCurrency": { | ||
"name": "Ropsten Ether", | ||
"symbol": "ROP", | ||
"decimals": 18 | ||
}, | ||
"rpc": [ | ||
"https://ropsten.infura.io/v3/${INFURA_API_KEY}" | ||
], | ||
"faucets": [ | ||
"https://faucet.ropsten.be?${ADDRESS}" | ||
], | ||
"infoURL": "https://github.com/ethereum/ropsten", | ||
"explorers": [ | ||
"https://ropsten.etherscan.io" | ||
] | ||
}, | ||
{ | ||
"name": "RSK Mainnet", | ||
"chainId": 30, | ||
"shortName": "rsk", | ||
"chain": "RSK", | ||
"network": "mainnet", | ||
"networkId": 30, | ||
"nativeCurrency": { | ||
"name": "RSK Mainnet Ether", | ||
"symbol": "RSK", | ||
"decimals": 18 | ||
}, | ||
"rpc": [ | ||
"https://public-node.rsk.co", | ||
"https://mycrypto.rsk.co" | ||
], | ||
"faucets": [], | ||
"infoURL": "https://rsk.co", | ||
"explorers": [ | ||
"https://explorer.rsk.co", | ||
"https://blockscout.com/rsk/mainnet" | ||
] | ||
}, | ||
{ | ||
"name": "RSK Testnet", | ||
"chainId": 31, | ||
"shortName": "trsk", | ||
"chain": "RSK", | ||
"network": "testnet", | ||
"networkId": 31, | ||
"nativeCurrency": { | ||
"name": "RSK Testnet Ether", | ||
"symbol": "TRSK", | ||
"decimals": 18 | ||
}, | ||
"rpc": [ | ||
"https://public-node.testnet.rsk.co", | ||
"https://mycrypto.testnet.rsk.co" | ||
], | ||
"faucets": [ | ||
"https://faucet.testnet.rsk.co" | ||
], | ||
"infoURL": "https://rsk.co", | ||
"explorers": [ | ||
"https://explorer.testnet.rsk.co" | ||
] | ||
}, | ||
{ | ||
"name": "Ethereum Testnet Rinkeby", | ||
"chainId": 4, | ||
"shortName": "rin", | ||
"chain": "ETH", | ||
"network": "rinkeby", | ||
"networkId": 4, | ||
"nativeCurrency": { | ||
"name": "Rinkeby Ether", | ||
"symbol": "RIN", | ||
"decimals": 18 | ||
}, | ||
"rpc": [ | ||
"https://rinkeby.infura.io/v3/${INFURA_API_KEY}" | ||
], | ||
"faucets": [ | ||
"https://faucet.rinkeby.io" | ||
], | ||
"infoURL": "https://www.rinkeby.io", | ||
"explorers": [ | ||
"https://rinkeby.etherscan.io" | ||
] | ||
}, | ||
{ | ||
"name": "Ethereum Testnet Kovan", | ||
"chainId": 42, | ||
"shortName": "kov", | ||
"chain": "ETH", | ||
"network": "kovan", | ||
"networkId": 42, | ||
"nativeCurrency": { | ||
"name": "Kovan Ether", | ||
"symbol": "KOV", | ||
"decimals": 18 | ||
}, | ||
"rpc": [ | ||
"https://kovan.infura.io/v3/${INFURA_API_KEY}" | ||
], | ||
"faucets": [ | ||
"https://faucet.kovan.network", | ||
"https://gitter.im/kovan-testnet/faucet" | ||
], | ||
"infoURL": "https://kovan-testnet.github.io/website", | ||
"explorers": [ | ||
"https://kovan.etherscan.io" | ||
] | ||
}, | ||
{ | ||
"name": "Ethereum Testnet Görli", | ||
"chainId": 5, | ||
"shortName": "gor", | ||
"chain": "ETH", | ||
"network": "goerli", | ||
"networkId": 5, | ||
"nativeCurrency": { | ||
"name": "Görli Ether", | ||
"symbol": "GOR", | ||
"decimals": 18 | ||
}, | ||
"rpc": [ | ||
"https://rpc.goerli.mudit.blog/", | ||
"https://rpc.slock.it/goerli ", | ||
"https://goerli.prylabs.net/" | ||
], | ||
"faucets": [ | ||
"https://goerli-faucet.slock.it/?address=${ADDRESS}", | ||
"https://faucet.goerli.mudit.blog" | ||
], | ||
"infoURL": "https://goerli.net/#about", | ||
"explorers": [ | ||
"https://goerli.etherscan.io" | ||
] | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters