Merge branch 'ethereum-lists:master' into master

This commit is contained in:
echo 2022-03-14 17:20:38 +08:00 committed by GitHub
commit 7baee16270
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
100 changed files with 1384 additions and 118 deletions

View File

@ -1,25 +0,0 @@
---
name: Add new chain / network ID
about: Adding a new chain and/or network ID by filing an issue
title: "[New Chain / Network]"
labels: ''
assignees: ''
---
> Fill out the following to add your chain / network id, OR propose a Pull Request making your edits to the ```_data/chains.json``` file directly
```
{
"name": "Ethereum Mainnet",
"shortName": "eth",
"chain": "ETH",
"network": "mainnet",
"chainId": 1,
"networkId": 1,
"rpc": ["https://mainnet.infura.io"],
"faucets": [],
"infoURL: "https://ethereum.org",
"nativeCurrency": {"name":"Ether","symbol":"ETH","decimals":18}
}
```

View File

@ -1,8 +0,0 @@
---
name: other
about: either an issue with ethereum-lists/chains or a suggestion
title: ""
labels: ''
assignees: ''
---

16
.github/workflows/stale.yml vendored Normal file
View File

@ -0,0 +1,16 @@
name: 'Close stale issues and PRs'
on:
schedule:
- cron: '30 1 * * *'
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v4
with:
stale-issue-message: 'This issue has no activity in a while - it will be closed soon.'
exempt-issue-labels: enhancement
stale-pr-message: 'This PR has no activity in a while - it will be closed soon.'
days-before-stale: 42
days-before-close: 7

View File

@ -39,7 +39,7 @@ when an icon is used in either the network or a explorer there must be a json in
[
{
"url": "ipfs://QmdwQDr6vmBtXmK2TmknkEuZNoaDqTasFdZdu3DRw8b2wt",
"url": "ipfs://QmdwQDr6vmBtXmK2TmknkEuZNoaDqTasFdZdu3DRw8b2wt",
"width": 1000,
"height": 1628,
"format": "png"
@ -69,7 +69,7 @@ If the chain is an L2 or a shard of another chain you can link it to the parent
where you need to specify type 2 and the reference to an existing parent. The field about bridges is optional.
## Aggregation
## Aggregation
There are also aggregated json files with all chains automatically assembled:
* https://chainid.network/chains.json
@ -89,4 +89,15 @@ There are also aggregated json files with all chains automatically assembled:
* [eth-chains](https://github.com/taylorjdawson/eth-chains)
* [EVM-BOX](https://github.com/izayl/evm-box)
* [FaucETH](https://github.com/komputing/FaucETH)
* [Sourcify playground](https://playground.sourcify.dev)
* [chaindirectory.xyz](https://www.chaindirectory.xyz)
* [chain-list.org](https://chain-list.org)
* [DefiLlama's chainlist](https://chainlist.defillama.com/)
* [chainlist.network](https://chainlist.network/)
* [evmchainlist.org](https://evmchainlist.org)
* [evmchainlist.com](https://evmchainlist.com)
* [thechainlist.io](https://thechainlist.io)
* [chainlist.info](https://chainlist.info)
* [chainmap.io](https://chainmap.io)
* [chainlist.in](https://www.chainlist.in)
* Your project - contact us to add it here!

View File

@ -1,11 +1,11 @@
{
"name": "Optimistic Ethereum",
"name": "Optimism",
"chain": "ETH",
"rpc": ["https://mainnet.optimism.io/"],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "OETH",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://optimism.io",

View File

@ -2,15 +2,15 @@
"name": "Gnosis Chain (formerly xDai)",
"chain": "Gnosis",
"rpc": [
"https://rpc.xdaichain.com",
"https://rpc.gnosischain.com",
"https://xdai.poanetwork.dev",
"wss://rpc.xdaichain.com/wss",
"wss://rpc.gnosischain.com/wss",
"wss://xdai.poanetwork.dev/wss",
"http://xdai.poanetwork.dev",
"https://dai.poa.network",
"ws://xdai.poanetwork.dev:8546"
],
"faucets": ["https://faucet.gimlu.com/gnosis", "https://stakely.io/faucet/xdai-chain", "https://faucet.prussia.dev/xdai"],
"faucets": ["https://faucet.gimlu.com/gnosis", "https://stakely.io/faucet/gnosis-chain-xdai", "https://faucet.prussia.dev/xdai"],
"nativeCurrency": {
"name": "xDAI",
"symbol": "xDAI",

View File

@ -1,7 +1,8 @@
{
"name": "Conflux",
"name": "Conflux eSpace",
"chain": "Conflux",
"rpc": ["https://ethcore.confluxrpc.com"],
"network": "mainnet",
"rpc": ["https://evm.confluxrpc.com"],
"faucets": [],
"nativeCurrency": {
"name": "CFX",
@ -12,10 +13,11 @@
"shortName": "cfx",
"chainId": 1030,
"networkId": 1030,
"icon": "conflux",
"explorers": [
{
"name": "Conflux Scan",
"url": "https://confluxscan.io",
"url": "https://evm.confluxscan.net",
"standard": "none"
}
]

View File

@ -0,0 +1,24 @@
{
"name": "Nebula Testnet",
"chain": "NTN",
"icon": "nebulatestnet",
"rpc": [
"https://testnet.rpc.novanetwork.io:9070",
"http://testnet.rpc.novanetwork.io:8545"
],
"faucets": [],
"nativeCurrency": {
"name": "Nebula X",
"symbol": "NBX",
"decimals": 18
},
"infoURL": "https://novanetwork.io",
"shortName": "ntn",
"chainId": 107,
"networkId": 107,
"explorers": [{
"name": "nebulatestnet",
"url": "https://explorer.novanetwork.io",
"standard": "EIP3091"
}]
}

View File

@ -16,5 +16,11 @@
"shortName": "TT",
"chainId": 108,
"networkId": 108,
"slip44": 1001
}
"slip44": 1001,
"explorers": [{
"name": "ThundercoreScan",
"url": "https://scan.thundercore.com",
"standard": "none"
}]
}

View File

@ -0,0 +1,26 @@
{
"name": "BROChain Mainnet",
"chain": "BRO",
"network": "mainnet",
"rpc": [
"https://rpc.brochain.org",
"http://rpc.brochain.org",
"https://rpc.brochain.org/mainnet",
"http://rpc.brochain.org/mainnet"
],
"faucets": [],
"nativeCurrency": {
"name": "Brother",
"symbol": "BRO",
"decimals": 18
},
"infoURL": "https://brochain.org",
"shortName": "bro",
"chainId": 108801,
"networkId": 108801,
"explorers": [{
"name": "BROChain Explorer",
"url": "https://explorer.brochain.org",
"standard": "EIP3091"
}]
}

View File

@ -0,0 +1,25 @@
{
"name": "WAGMI",
"chain": "WAGMI",
"icon": "wagmi",
"rpc": [
"https://api.trywagmi.xyz/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "WAGMI",
"symbol": "WGM",
"decimals": 18
},
"infoURL": "https://trywagmi.xyz",
"shortName": "WAGMI",
"chainId": 11111,
"networkId": 11111,
"explorers": [
{
"name": "WAGMI Explorer",
"url": "https://trywagmi.xyz",
"standard": "none"
}
]
}

View File

@ -0,0 +1,25 @@
{
"name": "Sepolia",
"title": "Ethereum Testnet Sepolia",
"chain": "ETH",
"rpc": [
],
"faucets": [
],
"nativeCurrency": {
"name": "Sepolia Ether",
"symbol": "SEP",
"decimals": 18
},
"infoURL": "https://sepolia.otterscan.io",
"shortName": "sep",
"chainId": 11155111,
"networkId": 11155111,
"explorers": [
{
"name": "otterscan-sepolia",
"url": "https://sepolia.otterscan.io",
"standard": "EIP3091"
}
]
}

View File

@ -1,7 +1,10 @@
{
"name": "Palm Testnet",
"chain": "Palm",
"rpc": [],
"icon": "palm",
"rpc": [
"https://palm-testnet.infura.io/v3/{INFURA_API_KEY}"
],
"faucets": [],
"nativeCurrency": {
"name": "PALM",
@ -11,5 +14,11 @@
"infoURL": "https://palm.io",
"shortName": "tpalm",
"chainId": 11297108099,
"networkId": 11297108099
"networkId": 11297108099,
"explorers": [{
"name": "Palm Testnet Explorer",
"url": "https://explorer.palm-uat.xyz",
"standard": "EIP3091",
"icon": "palm"
}]
}

View File

@ -1,7 +1,10 @@
{
"name": "Palm Mainnet",
"name": "Palm",
"chain": "Palm",
"rpc": [],
"icon": "palm",
"rpc": [
"https://palm-mainnet.infura.io/v3/{INFURA_API_KEY}"
],
"faucets": [],
"nativeCurrency": {
"name": "PALM",
@ -11,5 +14,11 @@
"infoURL": "https://palm.io",
"shortName": "palm",
"chainId": 11297108109,
"networkId": 11297108109
"networkId": 11297108109,
"explorers": [{
"name": "Palm Explorer",
"url": "https://explorer.palm.io",
"standard": "EIP3091",
"icon": "palm"
}]
}

View File

@ -0,0 +1,23 @@
{
"name": "Shyft Testnet",
"chain": "SHYFTT",
"icon": "shyft",
"rpc": [
"https://rpc.testnet.shyft.network/"
],
"faucets": [],
"nativeCurrency": {
"name": "Shyft Test Token",
"symbol": "SHYFTT",
"decimals": 18
},
"infoURL": "https://shyft.network",
"shortName": "shyftt",
"chainId": 11437,
"networkId": 11437,
"explorers": [{
"name": "Shyft Testnet BX",
"url": "https://bx.testnet.shyft.network",
"standard": "EIP3091"
}]
}

View File

@ -0,0 +1,25 @@
{
"name": "Iora Chain",
"chain": "IORA",
"network": "iorachain",
"icon": "iorachain",
"rpc": ["https://dataseed.iorachain.com"],
"faucets": [],
"nativeCurrency": {
"name": "Iora",
"symbol": "IORA",
"decimals": 18
},
"infoURL": "https://iorachain.com",
"shortName": "iora",
"chainId": 1197,
"networkId": 1197,
"explorers": [
{
"name": "ioraexplorer",
"url": "https://explorer.iorachain.com",
"standard": "EIP3091"
}
]
}

View File

@ -0,0 +1,18 @@
{
"name": "Evanesco Testnet",
"chain": "Evanesco Testnet",
"network": "avis",
"rpc": [
"https://seed5.evanesco.org:8547"
],
"faucets": [],
"nativeCurrency": {
"name": "AVIS",
"symbol": "AVIS",
"decimals": 18
},
"infoURL": "https://evanesco.org/",
"shortName": "avis",
"chainId": 1201,
"networkId": 1201
}

View File

@ -0,0 +1,25 @@
{
"name": "OYchain Testnet",
"chain": "OYchain",
"rpc": [
"https://rpc.testnet.oychain.io"
],
"faucets": [
"https://faucet.oychain.io"
],
"nativeCurrency": {
"name": "OYchain Token",
"symbol": "OY",
"decimals": 18
},
"infoURL": "https://www.oychain.io",
"shortName": "oychain testnet",
"chainId": 125,
"networkId": 125,
"slip44": 125,
"explorers": [{
"name": "OYchain Testnet Explorer",
"url": "https://explorer.testnet.oychain.io",
"standard": "none"
}]
}

View File

@ -0,0 +1,26 @@
{
"name": "OYchain Mainnet",
"chain": "OYchain",
"icon": "oychain",
"rpc": [
"https://rpc.mainnet.oychain.io"
],
"faucets": [ ],
"nativeCurrency": {
"name": "OYchain Token",
"symbol": "OY",
"decimals": 18
},
"infoURL": "https://www.oychain.io",
"shortName": "oychain mainnet",
"chainId": 126,
"networkId": 126,
"slip44": 126,
"explorers": [{
"name": "OYchain Mainnet Explorer",
"url": "https://explorer.oychain.io",
"standard": "none"
}]
}

View File

@ -16,11 +16,6 @@
"chainId": 1284,
"networkId": 1284,
"explorers": [
{
"name": "blockscout",
"url": "https://blockscout.moonbeam.network",
"standard": "none"
},
{
"name": "moonscan",
"url": "https://moonbeam.moonscan.io",

View File

@ -2,8 +2,8 @@
"name": "Moonriver",
"chain": "MOON",
"rpc": [
"https://rpc.moonriver.moonbeam.network",
"wss://wss.moonriver.moonbeam.network"
"https://rpc.api.moonriver.moonbeam.network",
"wss://wss.api.moonriver.moonbeam.network"
],
"faucets": [],
"nativeCurrency": {

View File

@ -2,7 +2,7 @@
"name": "Etho Protocol",
"chain": "ETHO",
"rpc": [
"https://rpc.ether1.org"
"https://rpc.ethoprotocol.com"
],
"faucets": [],

View File

@ -1,5 +1,5 @@
{
"name": "Aurora MainNet",
"name": "Aurora Mainnet",
"chain": "NEAR",
"rpc": [
"https://mainnet.aurora.dev"
@ -7,7 +7,7 @@
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "aETH",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://aurora.dev",
@ -16,8 +16,8 @@
"networkId": 1313161554,
"explorers": [
{
"name": "explorer.aurora.dev",
"url": "https://explorer.mainnet.aurora.dev",
"name": "aurorascan.dev",
"url": "https://aurorascan.dev",
"standard": "EIP3091"
}
]

View File

@ -1,5 +1,5 @@
{
"name": "Aurora TestNet",
"name": "Aurora Testnet",
"chain": "NEAR",
"rpc": [
"https://testnet.aurora.dev/"
@ -7,7 +7,7 @@
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "aETH",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://aurora.dev",
@ -16,8 +16,8 @@
"networkId": 1313161555,
"explorers": [
{
"name": "explorer.aurora.dev",
"url": "https://explorer.testnet.aurora.dev",
"name": "aurorascan.dev",
"url": "https://testnet.aurorascan.dev",
"standard": "EIP3091"
}
]

View File

@ -1,5 +1,5 @@
{
"name": "Aurora BetaNet",
"name": "Aurora Betanet",
"chain": "NEAR",
"rpc": [
"https://betanet.aurora.dev/"
@ -7,7 +7,7 @@
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "aETH",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://aurora.dev",

View File

@ -0,0 +1,25 @@
{
"name": "Phoenix Mainnet",
"chain": "Phoenix",
"network": "mainnet",
"rpc": [
"https://rpc.phoenixplorer.com/"
],
"faucets": [],
"nativeCurrency": {
"name": "Phoenix",
"symbol": "PHX",
"decimals": 18
},
"infoURL": "https://cryptophoenix.org/phoenix",
"shortName": "Phoenix",
"chainId": 13381,
"networkId": 13381,
"icon": "phoenix",
"explorers": [{
"name": "phoenixplorer",
"url": "https://phoenixplorer.com",
"icon": "phoenixplorer",
"standard": "EIP3091"
}]
}

View File

@ -15,5 +15,10 @@
"infoURL": "https://thundercore.com",
"shortName": "TST",
"chainId": 18,
"networkId": 18
}
"networkId": 18,
"explorers": [{
"name": "ThundercoreTestNetScanner",
"url": "https://scan-testnet.thundercore.com",
"standard": "none"
}]
}

View File

@ -16,7 +16,7 @@
"networkId": 189,
"explorers": [{
"name": "Blockmeta",
"url": "https://bmc.blockmeta.com",
"url": "https://bmctestnet.blockmeta.com",
"standard": "none"
}]
}

View File

@ -1,10 +1,10 @@
{
"name": "ELA-ETH-Sidechain Mainnet",
"name": "Elastos Smart Chain",
"chain": "ETH",
"rpc": [
"https://mainrpc.elaeth.io"
"https://api.elastos.io/eth"
],
"faucets": [],
"faucets": ["https://faucet.elastos.org/"],
"nativeCurrency": {
"name": "Elastos",
"symbol": "ELA",
@ -13,5 +13,10 @@
"infoURL": "https://www.elastos.org/",
"shortName": "elaeth",
"chainId": 20,
"networkId": 20
"networkId": 20,
"explorers": [{
"name": "elastos eth explorer",
"url": "https://eth.elastos.io",
"standard": "EIP3091"
}]
}

View File

@ -14,7 +14,7 @@
"decimals": 18
},
"infoURL": "https://www.platon.network",
"shortName": "PlatON",
"shortName": "platondev",
"chainId": 210309,
"networkId": 1,
"icon": "platon",

View File

@ -0,0 +1,27 @@
{
"name": "PlatON Mainnet",
"chain": "PlatON",
"network": "mainnet",
"rpc": [
"https://openapi.platon.network/rpc",
"wss://openapi.platon.network/ws"
],
"faucets": [],
"nativeCurrency": {
"name": "LAT",
"symbol": "lat",
"decimals": 18
},
"infoURL": "https://www.platon.network",
"shortName": "platon",
"chainId": 210425,
"networkId": 1,
"icon": "platon",
"explorers": [
{
"name": "PlatON explorer",
"url": "https://scan.platon.network",
"standard": "none"
}
]
}

View File

@ -0,0 +1,23 @@
{
"name": "omChain Mainnet",
"chain": "OML",
"icon": "omlira",
"rpc": [
"https://seed.omlira.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Omlira",
"symbol": "OML",
"decimals": 18
},
"infoURL": "https://omlira.com",
"shortName": "oml",
"chainId": 21816,
"networkId": 21816,
"explorers": [{
"name": "omChain Explorer",
"url": "https://explorer.omlira.com",
"standard": "EIP3091"
}]
}

View File

@ -0,0 +1,26 @@
{
"name": "Evanesco Mainnet",
"chain": "EVA",
"network": "mainnet",
"rpc": [
"https://seed4.evanesco.org:8546"
],
"faucets": [],
"nativeCurrency": {
"name": "EVA",
"symbol": "EVA",
"decimals": 18
},
"infoURL": "https://evanesco.org/",
"shortName": "evanesco",
"chainId": 2213,
"networkId": 2213,
"icon": "evanesco",
"explorers": [
{
"name": "Evanesco Explorer",
"url": "https://explorer.evanesco.org",
"standard": "none"
}
]
}

View File

@ -2,21 +2,21 @@
"name": "Cronos Mainnet Beta",
"chain": "CRO",
"rpc": [
"https://evm-cronos.crypto.org"
"https://evm.cronos.org"
],
"faucets": [],
"nativeCurrency": {
"name": "Crypto.org Coin",
"name": "Cronos",
"symbol": "CRO",
"decimals": 18
},
"infoURL": "https://cronos.crypto.org",
"infoURL": "https://cronos.org/",
"shortName": "cro",
"chainId": 25,
"networkId": 25,
"explorers": [{
"name": "Cronos Explorer",
"url": "https://cronos.crypto.org/explorer",
"url": "https://cronos.org/explorer",
"standard": "none"
}]
}

View File

@ -0,0 +1,15 @@
{
"name": "Setheum",
"chain": "Setheum",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Setheum",
"symbol": "SETM",
"decimals": 18
},
"infoURL": "https://setheum.xyz",
"shortName": "setm",
"chainId": 258,
"networkId": 258
}

View File

@ -1,11 +1,13 @@
{
"name": "Ethereum Testnet Ropsten",
"name": "Ropsten",
"title": "Ethereum Testnet Ropsten",
"chain": "ETH",
"rpc": [
"https://ropsten.infura.io/v3/${INFURA_API_KEY}",
"wss://ropsten.infura.io/ws/v3/${INFURA_API_KEY}"
],
"faucets": [
"http://fauceth.komputing.org?chain=3&address=${ADDRESS}",
"https://faucet.ropsten.be?${ADDRESS}"
],
"nativeCurrency": {
@ -19,5 +21,10 @@
"networkId": 3,
"ens": {
"registry":"0x112234455c3a32fd11230c42e7bccd4a84e02010"
}
},
"explorers": [{
"name": "etherscan",
"url": "https://ropsten.etherscan.io",
"standard": "EIP3091"
}]
}

View File

@ -0,0 +1,23 @@
{
"name": "Web3Q Mainnet",
"chain": "Web3Q",
"rpc": [
"https://mainnet.web3q.io:8545"
],
"faucets": [
],
"nativeCurrency": {
"name": "Web3Q",
"symbol": "W3Q",
"decimals": 18
},
"infoURL": "https://web3q.io/home.w3q/",
"shortName": "w3q",
"chainId": 333,
"networkId": 333,
"explorers": [{
"name": "w3q-mainnet",
"url": "https://explorer.mainnet.web3q.io",
"standard": "EIP3091"
}]
}

View File

@ -0,0 +1,23 @@
{
"name": "Web3Q Testnet",
"chain": "Web3Q",
"rpc": [
"https://testnet.web3q.io:8545"
],
"faucets": [
],
"nativeCurrency": {
"name": "Web3Q",
"symbol": "W3Q",
"decimals": 18
},
"infoURL": "https://web3q.io/home.w3q/",
"shortName": "w3q-t",
"chainId": 3333,
"networkId": 3333,
"explorers": [{
"name": "w3q-testnet",
"url": "https://explorer.testnet.web3q.io",
"standard": "EIP3091"
}]
}

View File

@ -0,0 +1,25 @@
{
"name": "Paribu Net Mainnet",
"chain": "PRB",
"network": "Paribu Net",
"rpc": [
"https://rpc.paribu.network"
],
"faucets": [],
"nativeCurrency": {
"name": "PRB",
"symbol": "PRB",
"decimals": 18
},
"infoURL": "https://net.paribu.com",
"shortName": "prb",
"chainId": 34000,
"networkId": 34000,
"icon": "prb",
"explorers": [{
"name": "Paribu Net Explorer",
"url": "https://explorer.paribu.network",
"icon": "explorer",
"standard": "EIP3091"
}]
}

View File

@ -0,0 +1,25 @@
{
"name": "Paribu Net Testnet",
"chain": "PRB",
"network": "Paribu Net",
"rpc": [
"https://rpc.testnet.paribuscan.com"
],
"faucets": ["https://faucet.paribuscan.com"],
"nativeCurrency": {
"name": "PRB",
"symbol": "PRB",
"decimals": 18
},
"infoURL": "https://net.paribu.com",
"shortName": "prbtestnet",
"chainId": 35000,
"networkId": 35000,
"icon": "prb",
"explorers": [{
"name": "Paribu Net Testnet Explorer",
"url": "https://testnet.paribuscan.com",
"icon": "explorer",
"standard": "EIP3091"
}]
}

View File

@ -6,7 +6,7 @@
"networkId": 42161,
"nativeCurrency": {
"name": "Ether",
"symbol": "AETH",
"symbol": "ETH",
"decimals": 18
},
"rpc": [

View File

@ -10,12 +10,13 @@
"symbol": "ARETH",
"decimals": 18
},
"rpc": [
"http://fauceth.komputing.org?chain=421611&address=${ADDRESS}",
"rpc": [
"https://rinkeby.arbitrum.io/rpc",
"wss://rinkeby.arbitrum.io/ws"
],
"faucets": [],
"faucets": [
"http://fauceth.komputing.org?chain=421611&address=${ADDRESS}"
],
"infoURL": "https://arbitrum.io",
"explorers": [
{

View File

@ -1,5 +1,5 @@
{
"name": "Avalanche Mainnet",
"name": "Avalanche C-Chain",
"chain": "AVAX",
"rpc": [
"https://api.avax.network/ext/bc/C/rpc"
@ -14,7 +14,7 @@
"shortName": "Avalanche",
"chainId": 43114,
"networkId": 43114,
"slip44": 9000,
"slip44": 9005,
"explorers": [
{
"name": "snowtrace",

View File

@ -0,0 +1,24 @@
{
"name": "Double-A Chain Mainnet",
"chain": "AAC",
"rpc": [
"https://rpc.acuteangle.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Acuteangle Native Token",
"symbol": "AAC",
"decimals": 18
},
"infoURL": "https://www.acuteangle.com/",
"shortName": "aac",
"chainId": 512,
"networkId": 512,
"slip44": 1512,
"explorers": [{
"name": "aacscan",
"url": "https://scan.acuteangle.com",
"standard": "EIP3091"
}],
"icon": "aac"
}

View File

@ -0,0 +1,25 @@
{
"name": "Double-A Chain Testnet",
"chain": "AAC",
"icon": "aac",
"rpc": [
"https://rpc-testnet.acuteangle.com"
],
"faucets": [
"https://scan-testnet.acuteangle.com/faucet"
],
"nativeCurrency": {
"name": "Acuteangle Native Token",
"symbol": "AAC",
"decimals": 18
},
"infoURL": "https://www.acuteangle.com/",
"shortName": "aact",
"chainId": 513,
"networkId": 513,
"explorers": [{
"name": "aacscan-testnet",
"url": "https://scan-testnet.acuteangle.com",
"standard": "EIP3091"
}]
}

View File

@ -0,0 +1,24 @@
{
"name": "Vela1 Chain Mainnet",
"chain": "VELA1",
"rpc": [
"https://rpc.velaverse.io"
],
"faucets": [],
"nativeCurrency": {
"name": "CLASS COIN",
"symbol": "CLASS",
"decimals": 18
},
"infoURL": "https://velaverse.io",
"shortName": "CLASS",
"chainId": 555,
"networkId": 555,
"explorers": [
{
"name": "Vela1 Chain Mainnet Explorer",
"url": "https://exp.velaverse.io",
"standard": "EIP3091"
}
]
}

View File

@ -0,0 +1,25 @@
{
"name": "REI Chain Mainnet",
"chain": "REI",
"icon": "reichain",
"rpc": [
"https://rei-rpc.moonrhythm.io"
],
"faucets": [
"http://kururu.finance/faucet?chainId=55555"
],
"nativeCurrency": {
"name": "Rei",
"symbol": "REI",
"decimals": 18
},
"infoURL": "https://reichain.io",
"shortName": "rei",
"chainId": 55555,
"networkId": 55555,
"explorers": [{
"name": "reiscan",
"url": "https://reiscan.com",
"standard": "EIP3091"
}]
}

View File

@ -0,0 +1,25 @@
{
"name": "REI Chain Testnet",
"chain": "REI",
"icon": "reichain",
"rpc": [
"https://rei-testnet-rpc.moonrhythm.io"
],
"faucets": [
"http://kururu.finance/faucet?chainId=55556"
],
"nativeCurrency": {
"name": "tRei",
"symbol": "tREI",
"decimals": 18
},
"infoURL": "https://reichain.io",
"shortName": "trei",
"chainId": 55556,
"networkId": 55556,
"explorers": [{
"name": "reiscan",
"url": "https://testnet.reiscan.com",
"standard": "EIP3091"
}]
}

View File

@ -11,8 +11,13 @@
"symbol": "RBD",
"decimals": 18
},
"infoURL": "http://wegochain.io",
"infoURL": "https://www.wegochain.io",
"shortName": "rbd",
"chainId": 5869,
"networkId": 5869
"networkId": 5869,
"explorers": [{
"name": "wegoscan2",
"url": "https://scan2.wegochain.io",
"standard": "EIP3091"
}]
}

View File

@ -0,0 +1,18 @@
{
"name": "Meshnyan testnet",
"chain": "MeshTestChain",
"rpc": [
],
"faucets": [
],
"nativeCurrency": {
"name": "Meshnyan Testnet Native Token",
"symbol": "MESHT",
"decimals": 18
},
"infoURL": "",
"shortName": "mesh-chain-testnet",
"chainId": 600,
"networkId": 600
}

View File

@ -0,0 +1,23 @@
{
"name": "eCredits Mainnet",
"chain": "ECS",
"network": "mainnet",
"rpc": [
"https://rpc.ecredits.com"
],
"faucets": [],
"nativeCurrency": {
"name": "eCredits",
"symbol": "ECS",
"decimals": 18
},
"infoURL": "https://ecredits.com",
"shortName": "ecs",
"chainId": 63000,
"networkId": 63000,
"explorers": [{
"name": "eCredits MainNet Explorer",
"url": "https://explorer.ecredits.com",
"standard": "EIP3091"
}]
}

View File

@ -0,0 +1,25 @@
{
"name": "eCredits Testnet",
"chain": "ECS",
"network": "testnet",
"rpc": [
"https://rpc.tst.ecredits.com"
],
"faucets": [
"https://faucet.tst.ecredits.com"
],
"nativeCurrency": {
"name": "eCredits",
"symbol": "ECS",
"decimals": 18
},
"infoURL": "https://ecredits.com",
"shortName": "ecs-testnet",
"chainId": 63001,
"networkId": 63001,
"explorers": [{
"name": "eCredits TestNet Explorer",
"url": "https://explorer.tst.ecredits.com",
"standard": "EIP3091"
}]
}

View File

@ -10,11 +10,11 @@
"nativeCurrency": {
"name": "VS",
"symbol": "VS",
"decimals": 6
"decimals": 18
},
"infoURL": "https://visionscan.org",
"shortName": "vpioneer",
"chainId": 666666,
"networkId": 666666,
"slip44": 60
}
}

View File

@ -1,6 +1,6 @@
{
"name": "Optimistic Kovan",
"title": "Optimistic Ethereum Testnet Kovan",
"name": "Optimism Kovan",
"title": "Optimism Testnet Kovan",
"chain": "ETH",
"rpc": ["https://kovan.optimism.io/"],
"faucets": [

View File

@ -8,11 +8,11 @@
"faucets": [],
"nativeCurrency": {
"name": "BCS Token",
"symbol": "PLAY",
"symbol": "BCS",
"decimals": 18
},
"infoURL": "https://blockchainstation.io",
"shortName": "play",
"shortName": "bcs",
"chainId": 707,
"networkId": 707,
"explorers": [{

View File

@ -10,11 +10,11 @@
],
"nativeCurrency": {
"name": "BCS Testnet Token",
"symbol": "tPLAY",
"symbol": "tBCS",
"decimals": 18
},
"infoURL": "https://blockchainstation.io",
"shortName": "tplay",
"shortName": "tbcs",
"chainId": 708,
"networkId": 708,
"explorers": [{

View File

@ -0,0 +1,24 @@
{
"name": "Conflux eSpace (Testnet)",
"chain": "Conflux",
"network": "testnet",
"rpc": ["https://evmtestnet.confluxrpc.com"],
"faucets": ["https://faucet.confluxnetwork.org"],
"nativeCurrency": {
"name": "CFX",
"symbol": "CFX",
"decimals": 18
},
"infoURL": "https://confluxnetwork.org",
"shortName": "cfxtest",
"chainId": 71,
"networkId": 71,
"icon": "conflux",
"explorers": [
{
"name": "Conflux Scan",
"url": "https://evmtestnet.confluxscan.net",
"standard": "none"
}
]
}

View File

@ -0,0 +1,24 @@
{
"name": "Shyft Mainnet",
"chain": "SHYFT",
"icon": "shyft",
"rpc": [
"https://rpc.shyft.network/"
],
"faucets": [],
"nativeCurrency": {
"name": "Shyft",
"symbol": "SHYFT",
"decimals": 18
},
"infoURL": "https://shyft.network",
"shortName": "shyft",
"chainId": 7341,
"networkId": 7341,
"slip44": 2147490989,
"explorers": [{
"name": "Shyft BX",
"url": "https://bx.shyft.network",
"standard": "EIP3091"
}]
}

View File

@ -0,0 +1,26 @@
{
"name": "IDChain Mainnet",
"chain": "IDChain",
"network": "mainnet",
"rpc": [
"https://idchain.one/rpc/",
"wss://idchain.one/ws/"
],
"faucets": [],
"nativeCurrency": {
"name": "EIDI",
"symbol": "EIDI",
"decimals": 18
},
"infoURL": "https://idchain.one/begin/",
"shortName": "idchain",
"chainId": 74,
"networkId": 74,
"icon": "idchain",
"explorers": [{
"name": "explorer",
"url": "https://explorer.idchain.one",
"icon": "etherscan",
"standard": "EIP3091"
}]
}

View File

@ -0,0 +1,30 @@
{
"name": "Teleport",
"chain": "Teleport",
"rpc": ["https://evm-rpc.teleport.network"],
"faucets": [],
"nativeCurrency": {
"name": "Tele",
"symbol": "TELE",
"decimals": 18
},
"infoURL": "https://teleport.network",
"shortName": "teleport",
"chainId": 8000,
"networkId": 8000,
"icon": "teleport",
"explorers": [
{
"name": "Teleport EVM Explorer (Blockscout)",
"url": "https://evm-explorer.teleport.network",
"standard": "none",
"icon": "teleport"
},
{
"name": "Teleport Cosmos Explorer (Big Dipper)",
"url": "https://explorer.teleport.network",
"standard": "none",
"icon": "teleport"
}
]
}

View File

@ -1,5 +1,6 @@
{
"name": "Polygon Testnet Mumbai",
"name": "Mumbai",
"title": "Polygon Testnet Mumbai",
"chain": "Polygon",
"rpc": [
"https://matic-mumbai.chainstacklabs.com",

View File

@ -0,0 +1,30 @@
{
"name": "Teleport Testnet",
"chain": "Teleport",
"rpc": ["https://evm-rpc.testnet.teleport.network"],
"faucets": ["https://chain-docs.teleport.network/testnet/faucet.html"],
"nativeCurrency": {
"name": "Tele",
"symbol": "TELE",
"decimals": 18
},
"infoURL": "https://teleport.network",
"shortName": "teleport-testnet",
"chainId": 8001,
"networkId": 8001,
"icon": "teleport",
"explorers": [
{
"name": "Teleport EVM Explorer (Blockscout)",
"url": "https://evm-explorer.testnet.teleport.network",
"standard": "none",
"icon": "teleport"
},
{
"name": "Teleport Cosmos Explorer (Big Dipper)",
"url": "https://explorer.testnet.teleport.network",
"standard": "none",
"icon": "teleport"
}
]
}

View File

@ -0,0 +1,24 @@
{
"name": "Nova Network",
"chain": "NNW",
"icon": "novanetwork",
"rpc": [
"https://rpc.novanetwork.io:9070",
"http://nova.genyrpc.info:8545"
],
"faucets": [],
"nativeCurrency": {
"name": "Supernova",
"symbol": "SNT",
"decimals": 18
},
"infoURL": "https://novanetwork.io",
"shortName": "nnw",
"chainId": 87,
"networkId": 87,
"explorers": [{
"name": "novanetwork",
"url": "https://explorer.novanetwork.io",
"standard": "EIP3091"
}]
}

View File

@ -6,11 +6,11 @@
],
"faucets": [],
"nativeCurrency": {
"name": "TomoChain Ether",
"name": "TomoChain",
"symbol": "TOMO",
"decimals": 18
},
"infoURL": "https://tomocoin.io",
"infoURL": "https://tomochain.com",
"shortName": "tomo",
"chainId": 88,
"networkId": 88,

View File

@ -9,11 +9,16 @@
"nativeCurrency": {
"name": "VS",
"symbol": "VS",
"decimals": 6
"decimals": 18
},
"infoURL": "https://visionscan.org",
"infoURL": "https://www.v.network",
"explorers": [{
"name": "Visionscan",
"url": "https://www.visionscan.org",
"standard": "EIP3091"
}],
"shortName": "vision",
"chainId": 888888,
"networkId": 888888,
"slip44": 60
}
}

View File

@ -0,0 +1,18 @@
{
"name": "TomoChain Testnet",
"chain": "TOMO",
"rpc": [
"https://rpc.testnet.tomochain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "TomoChain",
"symbol": "TOMO",
"decimals": 18
},
"infoURL": "https://tomochain.com",
"shortName": "tomot",
"chainId": 89,
"networkId": 89,
"slip44": 889
}

View File

@ -0,0 +1,25 @@
{
"name": "Garizon Stage0",
"chain": "GAR",
"network": "mainnet",
"icon": "garizon",
"rpc": [
"https://s0.garizon.net/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "Garizon",
"symbol": "GAR",
"decimals": 18
},
"infoURL": "https://garizon.com",
"shortName": "gar-s0",
"chainId": 90,
"networkId": 90,
"explorers": [{
"name": "explorer",
"url": "https://explorer.garizon.com",
"icon": "garizon",
"standard": "EIP3091"
}]
}

View File

@ -0,0 +1,27 @@
{
"name": "Garizon Testnet Stage0",
"chain": "GAR",
"network": "testnet",
"icon": "garizon",
"rpc": [
"https://s0-testnet.garizon.net/rpc"
],
"faucets": [
"https://faucet-testnet.garizon.com"
],
"nativeCurrency": {
"name": "Garizon",
"symbol": "GAR",
"decimals": 18
},
"infoURL": "https://garizon.com",
"shortName": "gar-test-s0",
"chainId": 900,
"networkId": 900,
"explorers": [{
"name": "explorer",
"url": "https://explorer-testnet.garizon.com",
"icon": "garizon",
"standard": "EIP3091"
}]
}

View File

@ -1,28 +1,28 @@
{
"name": "Evmos Testnet",
"chain": "Evmos",
"rpc": ["https://ethereum.rpc.evmos.dev"],
"faucets": ["https://faucet.evmos.org"],
"rpc": ["https://evmos-archive-testnet.api.bdnodes.net:8545"],
"faucets": ["https://faucet.evmos.dev"],
"nativeCurrency": {
"name": "Photon",
"symbol": "PHOTON",
"name": "test-Evmos",
"symbol": "tEVMOS",
"decimals": 18
},
"infoURL": "https://evmos.org",
"shortName": "evmos-mons",
"shortName": "evmos-testnet",
"chainId": 9000,
"networkId": 9000,
"icon": "evmos",
"explorers": [
{
"name": "Evmos EVM Explorer (Blockscout)",
"url": "https://evm.evmos.org",
"url": "https://evm.evmos.dev",
"standard": "none",
"icon": "evmos"
},
{
"name": "Evmos Cosmos Explorer (Big Dipper)",
"url": "https://explorer.evmos.org",
"name": "Evmos Cosmos Explorer",
"url": "https://explorer.evmos.dev",
"standard": "none",
"icon": "evmos"
}

View File

@ -1,7 +1,7 @@
{
"name": "Evmos",
"chain": "Evmos",
"rpc": ["https://ethereum.rpc.evmos.org"],
"rpc": ["https://eth.bd.evmos.org:8545"],
"faucets": [],
"nativeCurrency": {
"name": "Evmos",
@ -21,8 +21,8 @@
"icon": "evmos"
},
{
"name": "Evmos Cosmos Explorer (Big Dipper)",
"url": "https://explorer.evmos.org",
"name": "Evmos Cosmos Explorer (Mintscan)",
"url": "https://www.mintscan.io/evmos",
"standard": "none",
"icon": "evmos"
}

View File

@ -0,0 +1,31 @@
{
"name": "Garizon Testnet Stage1",
"chain": "GAR",
"network": "testnet",
"icon": "garizon",
"rpc": [
"https://s1-testnet.garizon.net/rpc"
],
"faucets": [
"https://faucet-testnet.garizon.com"
],
"nativeCurrency": {
"name": "Garizon",
"symbol": "GAR",
"decimals": 18
},
"infoURL": "https://garizon.com",
"shortName": "gar-test-s1",
"chainId": 901,
"networkId": 901,
"explorers": [{
"name": "explorer",
"url": "https://explorer-testnet.garizon.com",
"icon": "garizon",
"standard": "EIP3091"
}],
"parent": {
"chain": "eip155-900",
"type": "shard"
}
}

View File

@ -0,0 +1,31 @@
{
"name": "Garizon Testnet Stage2",
"chain": "GAR",
"network": "testnet",
"icon": "garizon",
"rpc": [
"https://s2-testnet.garizon.net/rpc"
],
"faucets": [
"https://faucet-testnet.garizon.com"
],
"nativeCurrency": {
"name": "Garizon",
"symbol": "GAR",
"decimals": 18
},
"infoURL": "https://garizon.com",
"shortName": "gar-test-s2",
"chainId": 902,
"networkId": 902,
"explorers": [{
"name": "explorer",
"url": "https://explorer-testnet.garizon.com",
"icon": "garizon",
"standard": "EIP3091"
}],
"parent": {
"chain": "eip155-900",
"type": "shard"
}
}

View File

@ -0,0 +1,31 @@
{
"name": "Garizon Testnet Stage3",
"chain": "GAR",
"network": "testnet",
"icon": "garizon",
"rpc": [
"https://s3-testnet.garizon.net/rpc"
],
"faucets": [
"https://faucet-testnet.garizon.com"
],
"nativeCurrency": {
"name": "Garizon",
"symbol": "GAR",
"decimals": 18
},
"infoURL": "https://garizon.com",
"shortName": "gar-test-s3",
"chainId": 903,
"networkId": 903,
"explorers": [{
"name": "explorer",
"url": "https://explorer-testnet.garizon.com",
"icon": "garizon",
"standard": "EIP3091"
}],
"parent": {
"chain": "eip155-900",
"type": "shard"
}
}

View File

@ -0,0 +1,29 @@
{
"name": "Garizon Stage1",
"chain": "GAR",
"network": "mainnet",
"icon": "garizon",
"rpc": [
"https://s1.garizon.net/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "Garizon",
"symbol": "GAR",
"decimals": 18
},
"infoURL": "https://garizon.com",
"shortName": "gar-s1",
"chainId": 91,
"networkId": 91,
"explorers": [{
"name": "explorer",
"url": "https://explorer.garizon.com",
"icon": "garizon",
"standard": "EIP3091"
}],
"parent": {
"chain": "eip155-90",
"type": "shard"
}
}

View File

@ -0,0 +1,29 @@
{
"name": "Garizon Stage2",
"chain": "GAR",
"network": "mainnet",
"icon": "garizon",
"rpc": [
"https://s2.garizon.net/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "Garizon",
"symbol": "GAR",
"decimals": 18
},
"infoURL": "https://garizon.com",
"shortName": "gar-s2",
"chainId": 92,
"networkId": 92,
"explorers": [{
"name": "explorer",
"url": "https://explorer.garizon.com",
"icon": "garizon",
"standard": "EIP3091"
}],
"parent": {
"chain": "eip155-90",
"type": "shard"
}
}

View File

@ -0,0 +1,29 @@
{
"name": "Garizon Stage3",
"chain": "GAR",
"network": "mainnet",
"icon": "garizon",
"rpc": [
"https://s3.garizon.net/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "Garizon",
"symbol": "GAR",
"decimals": 18
},
"infoURL": "https://garizon.com",
"shortName": "gar-s3",
"chainId": 93,
"networkId": 93,
"explorers": [{
"name": "explorer",
"url": "https://explorer.garizon.com",
"icon": "garizon",
"standard": "EIP3091"
}],
"parent": {
"chain": "eip155-90",
"type": "shard"
}
}

View File

@ -0,0 +1,20 @@
{
"name": "UB Smart Chain(testnet)",
"chain": "USC",
"network": "testnet",
"rpc": [
"https://testnet.rpc.uschain.network"
],
"faucets": [
],
"nativeCurrency": {
"name": "UBC",
"symbol": "UBC",
"decimals": 18
},
"infoURL": "https://www.ubchain.site",
"shortName": "usctest",
"chainId": 99998,
"networkId": 99998
}

View File

@ -0,0 +1,20 @@
{
"name": "UB Smart Chain",
"chain": "USC",
"network": "mainnet",
"rpc": [
"https://rpc.uschain.network"
],
"faucets": [
],
"nativeCurrency": {
"name": "UBC",
"symbol": "UBC",
"decimals": 18
},
"infoURL": "https://www.ubchain.site/",
"shortName": "usc",
"chainId": 99999,
"networkId": 99999
}

19
_data/eip155-4918.json Normal file
View File

@ -0,0 +1,19 @@
{
"name": "Venidium Testnet",
"chain": "XVM",
"rpc": ["https://rpc-evm-testnet.venidium.io/"],
"nativeCurrency": {
"name": "Venidium",
"symbol": "XVM",
"decimals": 18
},
"infoURL": "https://venidium.io/",
"shortName": "xvm",
"chainId": 4918,
"networkId": 4918,
"explorers": [{
"name": "Venidium EVM Testnet Explorer",
"url": "https://evm-testnet.venidiumexplorer.com/",
"standard": "EIP3091"
}]
}

8
_data/icons/aac.json Normal file
View File

@ -0,0 +1,8 @@
[
{
"url":"ipfs://QmRUrz4dULaoaMpnqd8qXT7ehwz3aaqnYKY4ePsy7isGaF",
"width":512,
"height":512,
"format":"png"
}
]

8
_data/icons/conflux.json Normal file
View File

@ -0,0 +1,8 @@
[
{
"url":"ipfs://bafkreifj7n24u2dslfijfihwqvpdeigt5aj3k3sxv6s35lv75sxsfr3ojy",
"width":460,
"height":576,
"format":"png"
}
]

View File

@ -0,0 +1,8 @@
[
{
"url": "ipfs://QmZbmGYdfbMRrWJore3c7hyD6q7B5pXHJqTSNjbZZUK6V8",
"width": 200,
"height": 200,
"format": "png"
}
]

8
_data/icons/garizon.json Normal file
View File

@ -0,0 +1,8 @@
[
{
"url": "ipfs://QmW3WRyuLZ95K8hvV2QN6rP5yWY98sSzWyVUxD2eUjXGrc",
"width": 1024,
"height": 613,
"format": "png"
}
]

8
_data/icons/idchain.json Normal file
View File

@ -0,0 +1,8 @@
[
{
"url":"ipfs://QmZVwsY6HPXScKqZCA9SWNrr4jrQAHkPhVhMWi6Fj1DsrJ",
"width":162,
"height":129,
"format":"png"
}
]

View File

@ -0,0 +1,8 @@
[
{
"url": "ipfs://bafybeiehps5cqdhqottu2efo4jeehwpkz5rbux3cjxd75rm6rjm4sgs2wi",
"width": 250,
"height": 250,
"format": "png"
}
]

View File

@ -0,0 +1,8 @@
[
{
"url": "ipfs://QmNtr72zqg3eKGNyVVNgTNLddPm3nUCqggXYyE9vQxZDW2",
"width": 512,
"height": 512,
"format": "png"
}
]

View File

@ -0,0 +1,8 @@
[
{
"url": "ipfs://QmNtr72zqg3eKGNyVVNgTNLddPm3nUCqggXYyE9vQxZDW2",
"width": 512,
"height": 512,
"format": "png"
}
]

8
_data/icons/omlira.json Normal file
View File

@ -0,0 +1,8 @@
[
{
"url":"ipfs://QmQtEHaejiDbmiCvbBYw9jNQv3DLK5XHCQwLRfnLNpdN5j",
"width":256,
"height":256,
"format":"png"
}
]

8
_data/icons/oychain.json Normal file
View File

@ -0,0 +1,8 @@
[
{
"url": "ipfs://bafybeifjr626ix4jkugnhna7efgymleesv2atlxiprcukthgsitqihedei",
"width": 677,
"height": 237,
"format": "png"
}
]

8
_data/icons/palm.json Normal file
View File

@ -0,0 +1,8 @@
[
{
"url": "ipfs://QmX6h8xm4em77oNpFRtmAqrZ734MH4VGCC68dEKHUfdfPs",
"width": 1080,
"height": 1080,
"format": "svg"
}
]

8
_data/icons/phoenix.json Normal file
View File

@ -0,0 +1,8 @@
[
{
"url": "ipfs://QmYiLMeKDXMSNuQmtxNdxm53xR588pcRXMf7zuiZLjQnc6",
"width": 1501,
"height": 1501,
"format": "png"
}
]

8
_data/icons/prb.json Normal file
View File

@ -0,0 +1,8 @@
[
{
"url":"ipfs://QmVgc77jYo2zrxQjhYwT4KzvSrSZ1DBJraJVX57xAvP8MD",
"width":2362,
"height":2362,
"format":"png"
}
]

View File

@ -0,0 +1,8 @@
[
{
"url": "ipfs://QmNy5d5knHVjJJS9g4kLsh9i73RTjckpKL6KZvRk6ptbhf",
"width": 591,
"height": 591,
"format": "svg"
}
]

9
_data/icons/shyft.json Normal file
View File

@ -0,0 +1,9 @@
[
{
"url":"ipfs://QmUkFZC2ZmoYPTKf7AHdjwRPZoV2h1MCuHaGM4iu8SNFpi",
"width":400,
"height":400,
"format":"svg"
}
]

View File

@ -0,0 +1,8 @@
[
{
"url": "ipfs://QmdP1sLnsmW9dwnfb1GxAXU1nHDzCvWBQNumvMXpdbCSuz",
"width": 390,
"height": 390,
"format": "svg"
}
]

8
_data/icons/wagmi.json Normal file
View File

@ -0,0 +1,8 @@
[
{
"url": "ipfs://QmNoyUXxnak8B3xgFxErkVfyVEPJUMHBzq7qJcYzkUrPR4",
"width": 500,
"height": 500,
"format": "png"
}
]

View File

@ -10,7 +10,7 @@ buildscript {
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${KOTLIN_VERSION}"
classpath 'com.github.ben-manes:gradle-versions-plugin:0.41.0'
classpath 'com.github.ben-manes:gradle-versions-plugin:0.42.0'
}
}

Binary file not shown.

View File

@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

View File

@ -10,7 +10,7 @@ dependencies {
implementation "com.github.komputing.kethereum:erc55:${KETHEREUM_VERSION}"
implementation "com.github.komputing.kethereum:crypto_impl_bouncycastle:${KETHEREUM_VERSION}"
implementation 'com.beust:klaxon:5.5'
implementation 'com.beust:klaxon:5.6'
implementation 'com.squareup.moshi:moshi:1.13.0'
implementation 'com.squareup.okhttp3:okhttp:4.9.3'