Skip to content

Commit

Permalink
Merge branch 'master' into debank
Browse files Browse the repository at this point in the history
  • Loading branch information
windycrypto authored Aug 24, 2023
2 parents a3d3b60 + 8940a46 commit 225570f
Show file tree
Hide file tree
Showing 10 changed files with 126 additions and 11 deletions.
23 changes: 23 additions & 0 deletions _data/chains/eip155-3701.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"name": "Xpla Mainnet",
"chain": "XPLA",
"rpc": ["https://dimension-rpc.xpla.dev"],
"faucets": ["https://faucet.xpla.io/"],
"nativeCurrency": {
"name": "XPLA",
"symbol": "XPLA",
"decimals": 18
},
"infoURL": "https://xpla.io/",
"shortName": "xpla",
"chainId": 3701,
"networkId": 3701,
"icon": "xpla",
"explorers": [
{
"name": "XPLA Explorer",
"url": "https://explorer.xpla.io",
"standard": "none"
}
]
}
24 changes: 24 additions & 0 deletions _data/chains/eip155-3888.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"name": "KalyChain Mainnet",
"chain": "KLC",
"icon": "kalychain",
"rpc": ["https://rpc.kalychain.io/rpc"],
"features": [{ "name": "EIP155" }, { "name": "EIP1559" }],
"faucets": [],
"nativeCurrency": {
"name": "KalyCoin",
"symbol": "KLC",
"decimals": 18
},
"infoURL": "https://kalychain.io",
"shortName": "kalymainnet",
"chainId": 3888,
"networkId": 3888,
"explorers": [
{
"name": "KalyScan",
"url": "https://kalyscan.io",
"standard": "EIP3091"
}
]
}
24 changes: 24 additions & 0 deletions _data/chains/eip155-3889.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"name": "KalyChain Testnet",
"chain": "KLC",
"icon": "kalychain",
"rpc": ["https://testnetrpc.kalychain.io/rpc"],
"features": [{ "name": "EIP155" }, { "name": "EIP1559" }],
"faucets": [],
"nativeCurrency": {
"name": "KalyCoin",
"symbol": "KLC",
"decimals": 18
},
"infoURL": "https://kalychain.io",
"shortName": "kalytestnet",
"chainId": 3889,
"networkId": 3889,
"explorers": [
{
"name": "KalyScan",
"url": "https://testnet.kalyscan.io",
"standard": "EIP3091"
}
]
}
16 changes: 6 additions & 10 deletions _data/chains/eip155-8181.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,11 @@
{
"name": "BeOne Chain Testnet",
"chain": "BOC",
"rpc": [
"https://pre-boc1.beonechain.com",
"https://pre-boc2.beonechain.com",
"https://pre-boc3.beonechain.com"
],
"name": "Testnet BeOne Chain",
"chain": "tBOC",
"rpc": ["https://pre-boc1.beonechain.com"],
"faucets": ["https://testnet.beonescan.com/faucet"],
"nativeCurrency": {
"name": "BeOne Chain Testnet",
"symbol": "BOC",
"name": "Testnet BeOne Chain",
"symbol": "tBOC",
"decimals": 18
},
"infoURL": "https://testnet.beonescan.com",
Expand All @@ -19,7 +15,7 @@
"icon": "beonechain",
"explorers": [
{
"name": "BeOne Chain Testnet",
"name": "Testnet BeOne Chain",
"url": "https://testnet.beonescan.com",
"icon": "beonechain",
"standard": "none"
Expand Down
24 changes: 24 additions & 0 deletions _data/chains/eip155-84886.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"name": "Aerie Network",
"chain": "Aerie",
"rpc": ["https://mainnet.aerielab.io"],
"faucets": [],
"nativeCurrency": {
"name": "Aerie",
"symbol": "AER",
"decimals": 18
},
"infoURL": "https://aerielab.io/",
"shortName": "Aerie",
"chainId": 84886,
"networkId": 84886,
"icon": "aerie",
"explorers": [
{
"name": "Aerie Explorer",
"url": "https://explorer.aerielab.io",
"icon": "aerie",
"standard": "EIP3091"
}
]
}
8 changes: 8 additions & 0 deletions _data/icons/aerie.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[
{
"url": "ipfs://bafkreig54jss26xllpjbclmfgwvot72m4ku7qxignhlqei6mijvwi2m4pu",
"width": 1062,
"height": 1069,
"format": "png"
}
]
8 changes: 8 additions & 0 deletions _data/icons/kalychain.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[
{
"url": "ipfs://QmUaXcPewLuQtY5a7xPTzJyVdjkH487VfV7gSR8UXrbxQ3",
"width": 512,
"height": 512,
"format": "png"
}
]
8 changes: 8 additions & 0 deletions _data/icons/xpla.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[
{
"url": "ipfs://Qmf4GoxfpeA5VGqu7KP5eyv1WKaCpNDbvMxq1MjQBwFWxq",
"width": 512,
"height": 512,
"format": "png"
}
]
Binary file not shown.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
buildscript {
ext {
KOTLIN_VERSION = "1.9.0"
KOTLIN_VERSION = "1.9.10"
KETHEREUM_VERSION = "0.86.0"
}

Expand Down

0 comments on commit 225570f

Please sign in to comment.