* add_RONIN

Added Ronin Blockchain and assets.

* Add RONIN as valid token type

* Add ronin explorer support

* Fixes (sanity and consistency, auto)

Co-authored-by: catenocrypt <13562139+catenocrypt@users.noreply.github.com>
Co-authored-by: catenocrypt <catenocrypt@users.noreply.github.com>
This commit is contained in:
Andrew M 2021-10-12 15:18:05 +08:00 committed by GitHub
parent 9a996c5716
commit af570af4e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
9 changed files with 50 additions and 0 deletions

View File

@ -0,0 +1,12 @@
{
"name": "Axie Infinity Shard",
"website": "https://axieinfinity.com",
"description": "Axie Infinity Shards are Axie Infinity's governance token.",
"explorer": "https://explorer.roninchain.com/token/ronin:0x97a9107C1793BC407d6F527b77e7fff4D812bece",
"research": "https://research.binance.com/en/projects/axie-infinity",
"type": "RONIN",
"symbol": "AXS",
"decimals": 18,
"status": "active",
"id": "0x97a9107C1793BC407d6F527b77e7fff4D812bece"
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -0,0 +1,12 @@
{
"name": "Smooth Love Potion",
"website": "https://axieinfinity.com",
"description": "Smooth Love Potion (SLP) is an ERC-20 token on the Axie Infinity platform that is used to breed new digital pets (Axies).",
"explorer": "https://explorer.roninchain.com/token/ronin:0xa8754b9Fa15fc18BB59458815510E40a12cD2014",
"research": "https://research.binance.com/en/projects/small-love-potion",
"type": "RONIN",
"symbol": "SLP",
"decimals": 0,
"status": "active",
"id": "0xa8754b9Fa15fc18BB59458815510E40a12cD2014"
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

View File

@ -0,0 +1,11 @@
{
"name": "Ronin Wrapped Ether",
"symbol": "WETH",
"type": "RONIN",
"decimals": 18,
"description": "-",
"website": "https://weth.io/",
"explorer": "https://explorer.roninchain.com/token/ronin:0xc99a6A985eD2Cac1ef41640596C5A5f9F4E19Ef5",
"status": "active",
"id": "0xc99a6A985eD2Cac1ef41640596C5A5f9F4E19Ef5"
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -0,0 +1,12 @@
{
"name": "Ronin",
"website": "https://skymavis.com",
"description": "Ronin unlocks explosive growth for Blockchain gaming and collectible projects.",
"explorer": "https://explorer.roninchain.com",
"research": "",
"symbol": "RON",
"type": "coin",
"decimals": 18,
"status": "active",
"links": []
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

View File

@ -223,6 +223,7 @@ export function chainFromAssetType(type: string): string {
case "ARBITRUM": return "arbitrum"; case "ARBITRUM": return "arbitrum";
case "FANTOM": return "fantom"; case "FANTOM": return "fantom";
case "TERRA": return "terra"; case "TERRA": return "terra";
case "RONIN": return "ronin";
default: return ""; default: return "";
} }
} }
@ -313,6 +314,8 @@ export function explorerUrl(chain: string, contract: string): string {
return `https://ftmscan.com/token/${contract}` return `https://ftmscan.com/token/${contract}`
case "terra": case "terra":
return `https://finder.terra.money/columbus-4/${contract}` return `https://finder.terra.money/columbus-4/${contract}`
case "ronin":
return `https://explorer.roninchain.com/token/ronin:${contract}`
} }
} }
return ""; return "";