[Internal] Add info for Terra tokens (#13688)

* Create info.json

* Create info.json

* Create info.json

* Create info.json

* Support Terra tokens

* Rename asset folders to ID

Co-authored-by: Nazar <nazarmamai1@gmail.com>
This commit is contained in:
Adam R 2021-09-17 12:55:44 +02:00 committed by GitHub
parent 41339bcb3e
commit a4c0f220b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 123 additions and 9 deletions

View File

@ -0,0 +1,29 @@
{
"name": "TerraUMNT",
"website": "https://terra.money",
"description": "TerraUSD is the first decentralized stablecoin that is scalable, yield bearing and interchain.",
"explorer": "https://finder.terra.money/columbus-4/address/terra1sndgzq62wp23mv20ndr4sxg6k8xcsudsy87uph",
"type": "TERRA",
"symbol": "UMNT",
"decimals": 6,
"status": "active",
"id": "terra1sndgzq62wp23mv20ndr4sxg6k8xcsudsy87uph",
"links": [
{
"name": "twitter",
"url": "https://twitter.com/TerraMoney"
},
{
"name": "telegram",
"url": "https://t.me/terra_announcements"
},
{
"name": "discord",
"url": "https://discord.com/invite/bYfyhUT"
},
{
"name": "medium",
"url": "https://medium.com/terra-money"
}
]
}

View File

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,29 @@
{
"name": "TerraUSD",
"website": "https://terra.money",
"description": "TerraUSD is the first decentralized stablecoin that is scalable, yield bearing and interchain.",
"explorer": "https://finder.terra.money/columbus-4/address/terra1tndcaqxkpc5ce9qee5ggqf430mr2z3pefe5wj6",
"type": "TERRA",
"symbol": "UST",
"decimals": 18,
"status": "active",
"id": "terra1tndcaqxkpc5ce9qee5ggqf430mr2z3pefe5wj6",
"links": [
{
"name": "twitter",
"url": "https://twitter.com/TerraMoney"
},
{
"name": "telegram",
"url": "https://t.me/terra_announcements"
},
{
"name": "discord",
"url": "https://discord.com/invite/bYfyhUT"
},
{
"name": "medium",
"url": "https://medium.com/terra-money"
}
]
}

View File

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1,29 @@
{
"name": "TerraKRW",
"website": "https://terra.money",
"description": "TerraUSD is the first decentralized stablecoin that is scalable, yield bearing and interchain.",
"explorer": "https://finder.terra.money/columbus-4/address/terra1zw0kfxrxgrs5l087mjm79hcmj3y8z6tljuhpmc",
"type": "TERRA",
"symbol": "KRT",
"decimals": 6,
"status": "active",
"id": "terra1zw0kfxrxgrs5l087mjm79hcmj3y8z6tljuhpmc",
"links": [
{
"name": "twitter",
"url": "https://twitter.com/TerraMoney"
},
{
"name": "telegram",
"url": "https://t.me/terra_announcements"
},
{
"name": "discord",
"url": "https://discord.com/invite/bYfyhUT"
},
{
"name": "medium",
"url": "https://medium.com/terra-money"
}
]
}

View File

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1,29 @@
{
"name": "TerraSDT",
"website": "https://terra.money",
"description": "TerraUSD is the first decentralized stablecoin that is scalable, yield bearing and interchain.",
"explorer": "https://finder.terra.money/columbus-4/address/terra1vs2vuks65rq7xj78mwtvn7vvnm2gn7adjlr002",
"type": "TERRA",
"symbol": "SDT",
"decimals": 6,
"status": "active",
"id": "tterra1vs2vuks65rq7xj78mwtvn7vvnm2gn7adjlr002",
"links": [
{
"name": "twitter",
"url": "https://twitter.com/TerraMoney"
},
{
"name": "telegram",
"url": "https://t.me/terra_announcements"
},
{
"name": "discord",
"url": "https://discord.com/invite/bYfyhUT"
},
{
"name": "medium",
"url": "https://medium.com/terra-money"
}
]
}

View File

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -222,6 +222,7 @@ export function chainFromAssetType(type: string): string {
case "AVALANCHE": return "avalanchec";
case "ARBITRUM": return "arbitrum";
case "FANTOM": return "fantom";
case "TERRA": return "terra";
default: return "";
}
}
@ -310,7 +311,9 @@ export function explorerUrl(chain: string, contract: string): string {
return `https://arbiscan.io/token/${contract}`
case "fantom":
return `https://ftmscan.com/token/${contract}`
}
case "terra":
return `https://finder.terra.money/columbus-4/${contract}`
}
}
return "";
}

View File

@ -92,14 +92,9 @@ export class FoldersFiles implements ActionInterface {
if (!infoExists || !logoExists) {
if (!infoExists && logoExists) {
const msg = `Missing info file for asset '${chain}/${address}' -- ${infoFullPath}`;
// enforce that info must be present (with some exceptions)
if (chain === 'terra') {
//console.log(msg);
warnings.push(msg);
} else {
console.log(msg);
errors.push(msg);
}
// enforce that info must be present
console.log(msg);
errors.push(msg);
}
if (!logoExists && infoExists) {
const info: unknown = readJsonFile(infoFullPath);