mirror of
https://github.com/pezkuwichain/pezkuwi-wallet-utils.git
synced 2026-07-11 03:27:33 +00:00
diagnostic: temporarily remove Tron to test live-app breakage hypothesis (#38)
* diagnostic: temporarily remove Tron from published chains.json
Hypothesis: the live (already-published) Play Store app - unrelated to
any of today's wallet-android code changes, compiled months before Tron
support was ever added - stopped showing any tokens/networks around the
same time Tron was added to this shared chains.json (2026-07-07).
Tron's chainId ("tron:0x2b6653dc") is a third, previously-unseen format -
neither a 32-byte substrate genesis hash nor an "eip155:N" EVM id. If the
live app's pre-Tron code has any hardcoded assumption about chainId shape,
encountering this one malformed-from-its-perspective entry could throw
while processing the shared chain list - and per a related bug already
fixed on the wallet-android side today, a single chain's processing
failure can permanently kill sync for every chain, matching the observed
"completely empty" symptom.
This removes Tron from the published feed as a live, falsifiable test: if
the already-installed live app recovers after this goes out, the
hypothesis is confirmed and Tron needs a compatibility fix (in wallet-utils
and/or wallet-android) before being reintroduced. If it does NOT recover,
the hypothesis is wrong and the real cause is elsewhere.
Tron entry preserved for restoration once the compatibility issue (if
confirmed) is fixed - see pezkuwi-overlay/chains/pezkuwi-chains.json git
history (this commit's parent) for the full entry.
* chore: retrigger CI now that master triggers are fixed
This commit is contained in:
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot Relay",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot Relay",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot Relay",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -274,71 +274,6 @@
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
|
||||
"name": "Polkadot",
|
||||
|
||||
@@ -273,70 +273,5 @@
|
||||
"feeViaRuntimeCall": true,
|
||||
"disabledCheckMetadataHash": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"chainId": "tron:0x2b6653dc",
|
||||
"name": "Tron",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/chains/gradient/Tron.svg",
|
||||
"addressPrefix": 0,
|
||||
"options": [
|
||||
"tronBased",
|
||||
"noSubstrateRuntime"
|
||||
],
|
||||
"nodeSelectionStrategy": "roundRobin",
|
||||
"nodes": [
|
||||
{
|
||||
"url": "https://api.trongrid.io",
|
||||
"name": "TronGrid"
|
||||
}
|
||||
],
|
||||
"explorers": [
|
||||
{
|
||||
"name": "Tronscan",
|
||||
"extrinsic": "https://tronscan.org/#/transaction/{value}",
|
||||
"account": "https://tronscan.org/#/address/{value}"
|
||||
}
|
||||
],
|
||||
"externalApi": {
|
||||
"history": [
|
||||
{
|
||||
"type": "trongrid",
|
||||
"url": "https://api.trongrid.io"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"assetId": 0,
|
||||
"symbol": "TRX",
|
||||
"precision": 6,
|
||||
"name": "Tron",
|
||||
"priceId": "tron",
|
||||
"staking": null,
|
||||
"type": "tronNative",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/icons/tokens/colored/TRX.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": null
|
||||
},
|
||||
{
|
||||
"assetId": 1,
|
||||
"symbol": "USDT",
|
||||
"precision": 6,
|
||||
"name": "Tether USD",
|
||||
"priceId": "tether",
|
||||
"staking": null,
|
||||
"type": "trc20",
|
||||
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/colored/USDT.svg",
|
||||
"buyProviders": {},
|
||||
"sellProviders": {},
|
||||
"typeExtras": {
|
||||
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
|
||||
}
|
||||
}
|
||||
],
|
||||
"additional": {
|
||||
"themeColor": "#EB0029"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user