mirror of
https://github.com/Instadapp/trustwallet-assets.git
synced 2024-07-29 22:37:31 +00:00
add_RONIN (#14319)
* 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:
parent
9a996c5716
commit
af570af4e1
|
@ -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 |
|
@ -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 |
|
@ -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 |
12
blockchains/ronin/info/info.json
Normal file
12
blockchains/ronin/info/info.json
Normal 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": []
|
||||
}
|
BIN
blockchains/ronin/info/logo.png
Normal file
BIN
blockchains/ronin/info/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 18 KiB |
|
@ -223,6 +223,7 @@ export function chainFromAssetType(type: string): string {
|
|||
case "ARBITRUM": return "arbitrum";
|
||||
case "FANTOM": return "fantom";
|
||||
case "TERRA": return "terra";
|
||||
case "RONIN": return "ronin";
|
||||
default: return "";
|
||||
}
|
||||
}
|
||||
|
@ -313,6 +314,8 @@ export function explorerUrl(chain: string, contract: string): string {
|
|||
return `https://ftmscan.com/token/${contract}`
|
||||
case "terra":
|
||||
return `https://finder.terra.money/columbus-4/${contract}`
|
||||
case "ronin":
|
||||
return `https://explorer.roninchain.com/token/ronin:${contract}`
|
||||
}
|
||||
}
|
||||
return "";
|
||||
|
|
Loading…
Reference in New Issue
Block a user