Fix stale blacklist chain_ids, add stale-blacklist warning to sync script

Root cause of the balances-test hang in pezkuwi-wallet-android (silent
for over an hour, cancelled multiple times before finding this):
every single chain_id in blocked-chains.json was stale - none matched
anything in Nova's current chains.json (last_updated 2026-02-11, ~5
months of upstream chain-id drift since). The blacklist mechanism
silently no-opped for all 6 entries, so none of the chains it was
meant to exclude were actually excluded.

With the blacklist ineffective, several chains with genuinely dead RPC
endpoints (confirmed live 2026-07-08: 3DPass, Curio, Quartz, Subsocial
- 502s, timeouts, SSL failures) stayed in the merged output. The
Android app's ChainConnection/NodeAutobalancer has no backoff/circuit
breaker for dead endpoints, so it retried them in an extremely tight
loop (~1 attempt/second, 1500-1800+ attempts observed in a 25 minute
window per chain) - burning resources indefinitely and starving the
app's actual chain-sync/test work, which is what made the Android CI
job hang for over an hour with zero progress.

Fix: re-verified and corrected all chain_ids (matching by current
name against live chains.json), added 3DPass/Curio/Subsocial which
weren't blacklisted before, dropped entries for chains no longer
present upstream at all (Passet Hub Testnet, Darwinia Crab, DeepBrain,
Exosama - nothing to block, kept them as historical noise otherwise).

Also added a stale-blacklist warning to sync_from_nova.py: it now
tracks which blocked chain_ids actually matched something in Nova's
current chains across all versions, and prints a warning listing any
that didn't - so this exact silent drift is caught at sync time going
forward instead of rotting unnoticed for another five months.
This commit is contained in:
2026-07-08 02:04:47 -07:00
parent 95939ab8a2
commit 2efab72f83
65 changed files with 7284 additions and 9091 deletions
+148 -143
View File
@@ -2759,69 +2759,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Calamari.svg",
"addressPrefix": 78
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
},
{
"url": "wss://asia-ws-quartz.unique.network",
"name": "Unique Asia node"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json",
"overridesCommon": true
},
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}",
"event": null
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg",
"addressPrefix": 255
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -4077,54 +4014,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litmus.svg",
"addressPrefix": 131
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://para.f3joule.space",
"name": "Subsocial node"
},
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -4886,6 +4775,54 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing.svg",
"addressPrefix": 51
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"priceId": "aleph-zero",
"staking": "aleph-zero",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg"
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}",
"event": null
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
],
"staking": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 42
},
{
"chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -6107,6 +6044,51 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hashed.svg",
"addressPrefix": 42
},
{
"chainId": "eip155:2109",
"name": "Exosama",
"assets": [
{
"assetId": 0,
"symbol": "SAMA",
"priceId": "exosama-network",
"type": "evmNative",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://rpc.exosama.com",
"name": "Exosama node"
}
],
"explorers": [
{
"name": "Exosama explorer",
"extrinsic": "https://explorer.exosama.com/tx/{hash}",
"account": "https://explorer.exosama.com/address/{address}",
"event": null
}
],
"externalApi": {
"history": [
{
"type": "etherscan",
"url": "https://explorer.exosama.com/api",
"parameters": {
"assetType": "evm"
}
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg",
"addressPrefix": 2109,
"options": [
"ethereumBased",
"noSubstrateRuntime"
]
},
{
"chainId": "2f0555cc76fc2840a25a6ea3b9637146806f1f44b090c175ffde2a7e5ab36c03",
"name": "Bittensor",
@@ -6161,38 +6143,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ajuna.svg",
"addressPrefix": 1328
},
{
"chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66",
"name": "3DPass",
"assets": [
{
"assetId": 0,
"symbol": "P3D",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/P3D.svg"
}
],
"nodes": [
{
"url": "wss://rpc2.3dpass.org",
"name": "3DPass node"
}
],
"explorers": [
{
"name": "3DPass explorer",
"extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}",
"account": "https://explorer.3dpass.org/account/{address}",
"event": null
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/3dpass.json",
"overridesCommon": true
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg",
"addressPrefix": 71
},
{
"chainId": "f0b8924b12e8108550d28870bc03f7b45a947e1b2b9abf81bfb0b89ecb60570e",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -6239,5 +6189,60 @@
"options": [
"ethereumBased"
]
},
{
"chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Crab",
"assets": [
{
"assetId": 0,
"symbol": "CRAB",
"precision": 18,
"priceId": "darwinia-network-native-token",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg"
},
{
"assetId": 1,
"symbol": "CKTON",
"precision": 18,
"type": "statemine",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CKTON.svg",
"typeExtras": {
"assetId": "1026"
}
}
],
"nodes": [
{
"url": "wss://crab-rpc.darwinia.network/",
"name": "Darwinia node"
},
{
"url": "wss://darwiniacrab-rpc.dwellir.com",
"name": "Dwellir node"
},
{
"url": "wss://crab.api.onfinality.io/public-ws",
"name": "OnFinality node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://crab.subscan.io/extrinsic/{hash}",
"account": "https://crab.subscan.io/account/{address}",
"event": null
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia_crab.json",
"overridesCommon": true
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg",
"addressPrefix": 42,
"options": [
"ethereumBased"
]
}
]
+148 -143
View File
@@ -2759,69 +2759,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Calamari.svg",
"addressPrefix": 78
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
},
{
"url": "wss://asia-ws-quartz.unique.network",
"name": "Unique Asia node"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json",
"overridesCommon": true
},
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}",
"event": null
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg",
"addressPrefix": 255
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -4077,54 +4014,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litmus.svg",
"addressPrefix": 131
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://para.f3joule.space",
"name": "Subsocial node"
},
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -4886,6 +4775,54 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing.svg",
"addressPrefix": 51
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"priceId": "aleph-zero",
"staking": "aleph-zero",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg"
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}",
"event": null
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
],
"staking": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 42
},
{
"chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -6107,6 +6044,51 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hashed.svg",
"addressPrefix": 42
},
{
"chainId": "eip155:2109",
"name": "Exosama",
"assets": [
{
"assetId": 0,
"symbol": "SAMA",
"priceId": "exosama-network",
"type": "evmNative",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://rpc.exosama.com",
"name": "Exosama node"
}
],
"explorers": [
{
"name": "Exosama explorer",
"extrinsic": "https://explorer.exosama.com/tx/{hash}",
"account": "https://explorer.exosama.com/address/{address}",
"event": null
}
],
"externalApi": {
"history": [
{
"type": "etherscan",
"url": "https://explorer.exosama.com/api",
"parameters": {
"assetType": "evm"
}
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg",
"addressPrefix": 2109,
"options": [
"ethereumBased",
"noSubstrateRuntime"
]
},
{
"chainId": "2f0555cc76fc2840a25a6ea3b9637146806f1f44b090c175ffde2a7e5ab36c03",
"name": "Bittensor",
@@ -6161,38 +6143,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ajuna.svg",
"addressPrefix": 1328
},
{
"chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66",
"name": "3DPass",
"assets": [
{
"assetId": 0,
"symbol": "P3D",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/P3D.svg"
}
],
"nodes": [
{
"url": "wss://rpc2.3dpass.org",
"name": "3DPass node"
}
],
"explorers": [
{
"name": "3DPass explorer",
"extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}",
"account": "https://explorer.3dpass.org/account/{address}",
"event": null
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/3dpass.json",
"overridesCommon": true
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg",
"addressPrefix": 71
},
{
"chainId": "f0b8924b12e8108550d28870bc03f7b45a947e1b2b9abf81bfb0b89ecb60570e",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -6239,5 +6189,60 @@
"options": [
"ethereumBased"
]
},
{
"chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Crab",
"assets": [
{
"assetId": 0,
"symbol": "CRAB",
"precision": 18,
"priceId": "darwinia-network-native-token",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg"
},
{
"assetId": 1,
"symbol": "CKTON",
"precision": 18,
"type": "statemine",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CKTON.svg",
"typeExtras": {
"assetId": "1026"
}
}
],
"nodes": [
{
"url": "wss://crab-rpc.darwinia.network/",
"name": "Darwinia node"
},
{
"url": "wss://darwiniacrab-rpc.dwellir.com",
"name": "Dwellir node"
},
{
"url": "wss://crab.api.onfinality.io/public-ws",
"name": "OnFinality node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://crab.subscan.io/extrinsic/{hash}",
"account": "https://crab.subscan.io/account/{address}",
"event": null
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia_crab.json",
"overridesCommon": true
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg",
"addressPrefix": 42,
"options": [
"ethereumBased"
]
}
]
+131 -126
View File
@@ -2920,69 +2920,6 @@
"governance-v1"
]
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
},
{
"url": "wss://asia-ws-quartz.unique.network",
"name": "Unique Asia node"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json",
"overridesCommon": true
},
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}",
"event": null
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg",
"addressPrefix": 255
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -4599,54 +4536,6 @@
"governance-v1"
]
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://para.f3joule.space",
"name": "Subsocial node"
},
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -5507,6 +5396,54 @@
"governance-v1"
]
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"staking": "aleph-zero",
"priceId": "aleph-zero",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg"
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}",
"event": null
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
],
"staking": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 42
},
{
"chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -7317,36 +7254,49 @@
]
},
{
"chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66",
"name": "3DPass",
"chainId": "eip155:2109",
"name": "Exosama",
"assets": [
{
"assetId": 0,
"symbol": "P3D",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/P3D.svg"
"symbol": "SAMA",
"priceId": "exosama-network",
"type": "evmNative",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://rpc2.3dpass.org",
"name": "3DPass node"
"url": "wss://rpc.exosama.com",
"name": "Exosama node"
}
],
"explorers": [
{
"name": "3DPass explorer",
"extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}",
"account": "https://explorer.3dpass.org/account/{address}",
"name": "Exosama explorer",
"extrinsic": "https://explorer.exosama.com/tx/{hash}",
"account": "https://explorer.exosama.com/address/{address}",
"event": null
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/3dpass.json",
"overridesCommon": true
"externalApi": {
"history": [
{
"type": "etherscan",
"url": "https://explorer.exosama.com/api",
"parameters": {
"assetType": "evm"
}
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg",
"addressPrefix": 71
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg",
"addressPrefix": 2109,
"options": [
"ethereumBased",
"noSubstrateRuntime"
]
},
{
"chainId": "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee",
@@ -7423,5 +7373,60 @@
"options": [
"ethereumBased"
]
},
{
"chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Crab",
"assets": [
{
"assetId": 0,
"symbol": "CRAB",
"precision": 18,
"priceId": "darwinia-network-native-token",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg"
},
{
"assetId": 1,
"symbol": "CKTON",
"precision": 18,
"type": "statemine",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CKTON.svg",
"typeExtras": {
"assetId": "1026"
}
}
],
"nodes": [
{
"url": "wss://crab-rpc.darwinia.network/",
"name": "Darwinia node"
},
{
"url": "wss://darwiniacrab-rpc.dwellir.com",
"name": "Dwellir node"
},
{
"url": "wss://crab.api.onfinality.io/public-ws",
"name": "OnFinality node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://crab.subscan.io/extrinsic/{hash}",
"account": "https://crab.subscan.io/account/{address}",
"event": null
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia_crab.json",
"overridesCommon": true
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg",
"addressPrefix": 42,
"options": [
"ethereumBased"
]
}
]
+148 -143
View File
@@ -2796,69 +2796,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Calamari.svg",
"addressPrefix": 78
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
},
{
"url": "wss://asia-ws-quartz.unique.network",
"name": "Unique Asia node"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json",
"overridesCommon": true
},
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}",
"event": null
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg",
"addressPrefix": 255
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -4180,54 +4117,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litmus.svg",
"addressPrefix": 131
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://para.f3joule.space",
"name": "Subsocial node"
},
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -5062,6 +4951,54 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing.svg",
"addressPrefix": 51
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"priceId": "aleph-zero",
"staking": "aleph-zero",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg"
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}",
"event": null
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
],
"staking": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 42
},
{
"chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -6358,6 +6295,51 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hashed.svg",
"addressPrefix": 42
},
{
"chainId": "eip155:2109",
"name": "Exosama",
"assets": [
{
"assetId": 0,
"symbol": "SAMA",
"priceId": "exosama-network",
"type": "evmNative",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://rpc.exosama.com",
"name": "Exosama node"
}
],
"explorers": [
{
"name": "Exosama explorer",
"extrinsic": "https://explorer.exosama.com/tx/{hash}",
"account": "https://explorer.exosama.com/address/{address}",
"event": null
}
],
"externalApi": {
"history": [
{
"type": "etherscan",
"url": "https://explorer.exosama.com/api",
"parameters": {
"assetType": "evm"
}
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg",
"addressPrefix": 2109,
"options": [
"ethereumBased",
"noSubstrateRuntime"
]
},
{
"chainId": "2f0555cc76fc2840a25a6ea3b9637146806f1f44b090c175ffde2a7e5ab36c03",
"name": "Bittensor",
@@ -6484,38 +6466,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ajuna.svg",
"addressPrefix": 1328
},
{
"chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66",
"name": "3DPass",
"assets": [
{
"assetId": 0,
"symbol": "P3D",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/P3D.svg"
}
],
"nodes": [
{
"url": "wss://rpc2.3dpass.org",
"name": "3DPass node"
}
],
"explorers": [
{
"name": "3DPass explorer",
"extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}",
"account": "https://explorer.3dpass.org/account/{address}",
"event": null
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/3dpass.json",
"overridesCommon": true
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg",
"addressPrefix": 71
},
{
"chainId": "f0b8924b12e8108550d28870bc03f7b45a947e1b2b9abf81bfb0b89ecb60570e",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -6563,6 +6513,61 @@
"ethereumBased"
]
},
{
"chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Crab",
"assets": [
{
"assetId": 0,
"symbol": "CRAB",
"precision": 18,
"priceId": "darwinia-network-native-token",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg"
},
{
"assetId": 1,
"symbol": "CKTON",
"precision": 18,
"type": "statemine",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CKTON.svg",
"typeExtras": {
"assetId": "1026"
}
}
],
"nodes": [
{
"url": "wss://crab-rpc.darwinia.network/",
"name": "Darwinia node"
},
{
"url": "wss://darwiniacrab-rpc.dwellir.com",
"name": "Dwellir node"
},
{
"url": "wss://crab.api.onfinality.io/public-ws",
"name": "OnFinality node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://crab.subscan.io/extrinsic/{hash}",
"account": "https://crab.subscan.io/account/{address}",
"event": null
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia_crab.json",
"overridesCommon": true
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg",
"addressPrefix": 42,
"options": [
"ethereumBased"
]
},
{
"chainId": "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
+148 -143
View File
@@ -2796,69 +2796,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Calamari.svg",
"addressPrefix": 78
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
},
{
"url": "wss://asia-ws-quartz.unique.network",
"name": "Unique Asia node"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json",
"overridesCommon": true
},
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}",
"event": null
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg",
"addressPrefix": 255
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -4180,54 +4117,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litmus.svg",
"addressPrefix": 131
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://para.f3joule.space",
"name": "Subsocial node"
},
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -5062,6 +4951,54 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing.svg",
"addressPrefix": 51
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"priceId": "aleph-zero",
"staking": "aleph-zero",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg"
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}",
"event": null
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
],
"staking": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 42
},
{
"chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -6358,6 +6295,51 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hashed.svg",
"addressPrefix": 42
},
{
"chainId": "eip155:2109",
"name": "Exosama",
"assets": [
{
"assetId": 0,
"symbol": "SAMA",
"priceId": "exosama-network",
"type": "evmNative",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://rpc.exosama.com",
"name": "Exosama node"
}
],
"explorers": [
{
"name": "Exosama explorer",
"extrinsic": "https://explorer.exosama.com/tx/{hash}",
"account": "https://explorer.exosama.com/address/{address}",
"event": null
}
],
"externalApi": {
"history": [
{
"type": "etherscan",
"url": "https://explorer.exosama.com/api",
"parameters": {
"assetType": "evm"
}
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg",
"addressPrefix": 2109,
"options": [
"ethereumBased",
"noSubstrateRuntime"
]
},
{
"chainId": "2f0555cc76fc2840a25a6ea3b9637146806f1f44b090c175ffde2a7e5ab36c03",
"name": "Bittensor",
@@ -6484,38 +6466,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ajuna.svg",
"addressPrefix": 1328
},
{
"chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66",
"name": "3DPass",
"assets": [
{
"assetId": 0,
"symbol": "P3D",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/P3D.svg"
}
],
"nodes": [
{
"url": "wss://rpc2.3dpass.org",
"name": "3DPass node"
}
],
"explorers": [
{
"name": "3DPass explorer",
"extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}",
"account": "https://explorer.3dpass.org/account/{address}",
"event": null
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/3dpass.json",
"overridesCommon": true
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg",
"addressPrefix": 71
},
{
"chainId": "f0b8924b12e8108550d28870bc03f7b45a947e1b2b9abf81bfb0b89ecb60570e",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -6563,6 +6513,61 @@
"ethereumBased"
]
},
{
"chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Crab",
"assets": [
{
"assetId": 0,
"symbol": "CRAB",
"precision": 18,
"priceId": "darwinia-network-native-token",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg"
},
{
"assetId": 1,
"symbol": "CKTON",
"precision": 18,
"type": "statemine",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CKTON.svg",
"typeExtras": {
"assetId": "1026"
}
}
],
"nodes": [
{
"url": "wss://crab-rpc.darwinia.network/",
"name": "Darwinia node"
},
{
"url": "wss://darwiniacrab-rpc.dwellir.com",
"name": "Dwellir node"
},
{
"url": "wss://crab.api.onfinality.io/public-ws",
"name": "OnFinality node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://crab.subscan.io/extrinsic/{hash}",
"account": "https://crab.subscan.io/account/{address}",
"event": null
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia_crab.json",
"overridesCommon": true
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg",
"addressPrefix": 42,
"options": [
"ethereumBased"
]
},
{
"chainId": "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
+126 -129
View File
@@ -2945,69 +2945,6 @@
"governance-v1"
]
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
},
{
"url": "wss://asia-ws-quartz.unique.network",
"name": "Unique Asia node"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json",
"overridesCommon": true
},
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}",
"event": null
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg",
"addressPrefix": 255
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -4700,54 +4637,6 @@
"governance-v1"
]
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://para.f3joule.space",
"name": "Subsocial node"
},
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -5629,6 +5518,54 @@
"governance-v1"
]
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"staking": "aleph-zero",
"priceId": "aleph-zero",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg"
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}",
"event": null
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
],
"staking": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 42
},
{
"chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -7542,44 +7479,49 @@
]
},
{
"chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66",
"name": "3DPass",
"chainId": "eip155:2109",
"name": "Exosama",
"assets": [
{
"assetId": 0,
"symbol": "P3D",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/P3D.svg"
"symbol": "SAMA",
"priceId": "exosama-network",
"type": "evmNative",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://rpc2.3dpass.org",
"name": "3DPass node"
"url": "wss://rpc.exosama.com",
"name": "Exosama node"
}
],
"explorers": [
{
"name": "3DPass explorer",
"extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}",
"account": "https://explorer.3dpass.org/account/{address}",
"name": "Exosama explorer",
"extrinsic": "https://explorer.exosama.com/tx/{hash}",
"account": "https://explorer.exosama.com/address/{address}",
"event": null
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-3dpass"
"type": "etherscan",
"url": "https://explorer.exosama.com/api",
"parameters": {
"assetType": "evm"
}
}
]
},
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/3dpass.json",
"overridesCommon": true
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg",
"addressPrefix": 71
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg",
"addressPrefix": 2109,
"options": [
"ethereumBased",
"noSubstrateRuntime"
]
},
{
"chainId": "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee",
@@ -7665,6 +7607,61 @@
"ethereumBased"
]
},
{
"chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Crab",
"assets": [
{
"assetId": 0,
"symbol": "CRAB",
"precision": 18,
"priceId": "darwinia-network-native-token",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg"
},
{
"assetId": 1,
"symbol": "CKTON",
"precision": 18,
"type": "statemine",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CKTON.svg",
"typeExtras": {
"assetId": "1026"
}
}
],
"nodes": [
{
"url": "wss://crab-rpc.darwinia.network/",
"name": "Darwinia node"
},
{
"url": "wss://darwiniacrab-rpc.dwellir.com",
"name": "Dwellir node"
},
{
"url": "wss://crab.api.onfinality.io/public-ws",
"name": "OnFinality node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://crab.subscan.io/extrinsic/{hash}",
"account": "https://crab.subscan.io/account/{address}",
"event": null
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia_crab.json",
"overridesCommon": true
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg",
"addressPrefix": 42,
"options": [
"ethereumBased"
]
},
{
"chainId": "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
+150 -143
View File
@@ -2808,69 +2808,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Calamari.svg",
"addressPrefix": 78
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
},
{
"url": "wss://asia-ws-quartz.unique.network",
"name": "Unique Asia node"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json",
"overridesCommon": true
},
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}",
"event": null
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg",
"addressPrefix": 255
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -4233,54 +4170,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litmus.svg",
"addressPrefix": 131
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://para.f3joule.space",
"name": "Subsocial node"
},
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -5198,6 +5087,56 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing.svg",
"addressPrefix": 51
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"priceId": "aleph-zero",
"staking": [
"aleph-zero"
],
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg"
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}",
"event": null
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
],
"staking": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 42
},
{
"chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -6509,6 +6448,51 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hashed.svg",
"addressPrefix": 42
},
{
"chainId": "eip155:2109",
"name": "Exosama",
"assets": [
{
"assetId": 0,
"symbol": "SAMA",
"priceId": "exosama-network",
"type": "evmNative",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://rpc.exosama.com",
"name": "Exosama node"
}
],
"explorers": [
{
"name": "Exosama explorer",
"extrinsic": "https://explorer.exosama.com/tx/{hash}",
"account": "https://explorer.exosama.com/address/{address}",
"event": null
}
],
"externalApi": {
"history": [
{
"type": "etherscan",
"url": "https://explorer.exosama.com/api",
"parameters": {
"assetType": "evm"
}
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg",
"addressPrefix": 2109,
"options": [
"ethereumBased",
"noSubstrateRuntime"
]
},
{
"chainId": "2f0555cc76fc2840a25a6ea3b9637146806f1f44b090c175ffde2a7e5ab36c03",
"name": "Bittensor",
@@ -6635,38 +6619,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ajuna.svg",
"addressPrefix": 1328
},
{
"chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66",
"name": "3DPass",
"assets": [
{
"assetId": 0,
"symbol": "P3D",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/P3D.svg"
}
],
"nodes": [
{
"url": "wss://rpc2.3dpass.org",
"name": "3DPass node"
}
],
"explorers": [
{
"name": "3DPass explorer",
"extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}",
"account": "https://explorer.3dpass.org/account/{address}",
"event": null
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/3dpass.json",
"overridesCommon": true
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg",
"addressPrefix": 71
},
{
"chainId": "f0b8924b12e8108550d28870bc03f7b45a947e1b2b9abf81bfb0b89ecb60570e",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -6714,6 +6666,61 @@
"ethereumBased"
]
},
{
"chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Crab",
"assets": [
{
"assetId": 0,
"symbol": "CRAB",
"precision": 18,
"priceId": "darwinia-network-native-token",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg"
},
{
"assetId": 1,
"symbol": "CKTON",
"precision": 18,
"type": "statemine",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CKTON.svg",
"typeExtras": {
"assetId": "1026"
}
}
],
"nodes": [
{
"url": "wss://crab-rpc.darwinia.network/",
"name": "Darwinia node"
},
{
"url": "wss://darwiniacrab-rpc.dwellir.com",
"name": "Dwellir node"
},
{
"url": "wss://crab.api.onfinality.io/public-ws",
"name": "OnFinality node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://crab.subscan.io/extrinsic/{hash}",
"account": "https://crab.subscan.io/account/{address}",
"event": null
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia_crab.json",
"overridesCommon": true
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg",
"addressPrefix": 42,
"options": [
"ethereumBased"
]
},
{
"chainId": "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
+150 -143
View File
@@ -2808,69 +2808,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Calamari.svg",
"addressPrefix": 78
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
},
{
"url": "wss://asia-ws-quartz.unique.network",
"name": "Unique Asia node"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json",
"overridesCommon": true
},
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}",
"event": null
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg",
"addressPrefix": 255
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -4233,54 +4170,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litmus.svg",
"addressPrefix": 131
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://para.f3joule.space",
"name": "Subsocial node"
},
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -5198,6 +5087,56 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing.svg",
"addressPrefix": 51
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"priceId": "aleph-zero",
"staking": [
"aleph-zero"
],
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg"
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}",
"event": null
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
],
"staking": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 42
},
{
"chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -6509,6 +6448,51 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hashed.svg",
"addressPrefix": 42
},
{
"chainId": "eip155:2109",
"name": "Exosama",
"assets": [
{
"assetId": 0,
"symbol": "SAMA",
"priceId": "exosama-network",
"type": "evmNative",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://rpc.exosama.com",
"name": "Exosama node"
}
],
"explorers": [
{
"name": "Exosama explorer",
"extrinsic": "https://explorer.exosama.com/tx/{hash}",
"account": "https://explorer.exosama.com/address/{address}",
"event": null
}
],
"externalApi": {
"history": [
{
"type": "etherscan",
"url": "https://explorer.exosama.com/api",
"parameters": {
"assetType": "evm"
}
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg",
"addressPrefix": 2109,
"options": [
"ethereumBased",
"noSubstrateRuntime"
]
},
{
"chainId": "2f0555cc76fc2840a25a6ea3b9637146806f1f44b090c175ffde2a7e5ab36c03",
"name": "Bittensor",
@@ -6635,38 +6619,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ajuna.svg",
"addressPrefix": 1328
},
{
"chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66",
"name": "3DPass",
"assets": [
{
"assetId": 0,
"symbol": "P3D",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/P3D.svg"
}
],
"nodes": [
{
"url": "wss://rpc2.3dpass.org",
"name": "3DPass node"
}
],
"explorers": [
{
"name": "3DPass explorer",
"extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}",
"account": "https://explorer.3dpass.org/account/{address}",
"event": null
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/3dpass.json",
"overridesCommon": true
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg",
"addressPrefix": 71
},
{
"chainId": "f0b8924b12e8108550d28870bc03f7b45a947e1b2b9abf81bfb0b89ecb60570e",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -6714,6 +6666,61 @@
"ethereumBased"
]
},
{
"chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Crab",
"assets": [
{
"assetId": 0,
"symbol": "CRAB",
"precision": 18,
"priceId": "darwinia-network-native-token",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg"
},
{
"assetId": 1,
"symbol": "CKTON",
"precision": 18,
"type": "statemine",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CKTON.svg",
"typeExtras": {
"assetId": "1026"
}
}
],
"nodes": [
{
"url": "wss://crab-rpc.darwinia.network/",
"name": "Darwinia node"
},
{
"url": "wss://darwiniacrab-rpc.dwellir.com",
"name": "Dwellir node"
},
{
"url": "wss://crab.api.onfinality.io/public-ws",
"name": "OnFinality node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://crab.subscan.io/extrinsic/{hash}",
"account": "https://crab.subscan.io/account/{address}",
"event": null
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia_crab.json",
"overridesCommon": true
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg",
"addressPrefix": 42,
"options": [
"ethereumBased"
]
},
{
"chainId": "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
+129 -129
View File
@@ -2961,69 +2961,6 @@
"governance-v1"
]
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
},
{
"url": "wss://asia-ws-quartz.unique.network",
"name": "Unique Asia node"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json",
"overridesCommon": true
},
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}",
"event": null
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg",
"addressPrefix": 255
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -4720,54 +4657,6 @@
"governance-v1"
]
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://para.f3joule.space",
"name": "Subsocial node"
},
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -5736,6 +5625,57 @@
"governance-v1"
]
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"staking": [
"aleph-zero",
"nomination-pools"
],
"priceId": "aleph-zero",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg"
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}",
"event": null
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
],
"staking": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 42
},
{
"chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -7726,44 +7666,49 @@
]
},
{
"chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66",
"name": "3DPass",
"chainId": "eip155:2109",
"name": "Exosama",
"assets": [
{
"assetId": 0,
"symbol": "P3D",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/P3D.svg"
"symbol": "SAMA",
"priceId": "exosama-network",
"type": "evmNative",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://rpc2.3dpass.org",
"name": "3DPass node"
"url": "wss://rpc.exosama.com",
"name": "Exosama node"
}
],
"explorers": [
{
"name": "3DPass explorer",
"extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}",
"account": "https://explorer.3dpass.org/account/{address}",
"name": "Exosama explorer",
"extrinsic": "https://explorer.exosama.com/tx/{hash}",
"account": "https://explorer.exosama.com/address/{address}",
"event": null
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-3dpass"
"type": "etherscan",
"url": "https://explorer.exosama.com/api",
"parameters": {
"assetType": "evm"
}
}
]
},
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/3dpass.json",
"overridesCommon": true
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg",
"addressPrefix": 71
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg",
"addressPrefix": 2109,
"options": [
"ethereumBased",
"noSubstrateRuntime"
]
},
{
"chainId": "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee",
@@ -7849,6 +7794,61 @@
"ethereumBased"
]
},
{
"chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Crab",
"assets": [
{
"assetId": 0,
"symbol": "CRAB",
"precision": 18,
"priceId": "darwinia-network-native-token",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg"
},
{
"assetId": 1,
"symbol": "CKTON",
"precision": 18,
"type": "statemine",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CKTON.svg",
"typeExtras": {
"assetId": "1026"
}
}
],
"nodes": [
{
"url": "wss://crab-rpc.darwinia.network/",
"name": "Darwinia node"
},
{
"url": "wss://darwiniacrab-rpc.dwellir.com",
"name": "Dwellir node"
},
{
"url": "wss://crab.api.onfinality.io/public-ws",
"name": "OnFinality node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://crab.subscan.io/extrinsic/{hash}",
"account": "https://crab.subscan.io/account/{address}",
"event": null
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia_crab.json",
"overridesCommon": true
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg",
"addressPrefix": 42,
"options": [
"ethereumBased"
]
},
{
"chainId": "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
+147 -149
View File
@@ -2986,68 +2986,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Calamari.svg",
"addressPrefix": 78
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
},
{
"url": "wss://asia-ws-quartz.unique.network",
"name": "Unique Asia node"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json",
"overridesCommon": true
},
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}"
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg",
"addressPrefix": 255
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -4454,54 +4392,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litmus.svg",
"addressPrefix": 131
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://para.f3joule.space",
"name": "Subsocial node"
},
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -5480,6 +5370,55 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing.svg",
"addressPrefix": 51
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"priceId": "aleph-zero",
"staking": [
"aleph-zero"
],
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg"
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
],
"staking": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 42
},
{
"chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -6906,6 +6845,50 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hashed.svg",
"addressPrefix": 42
},
{
"chainId": "eip155:2109",
"name": "Exosama",
"assets": [
{
"assetId": 0,
"symbol": "SAMA",
"priceId": "exosama-network",
"type": "evmNative",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://rpc.exosama.com",
"name": "Exosama node"
}
],
"explorers": [
{
"name": "Exosama explorer",
"extrinsic": "https://explorer.exosama.com/tx/{hash}",
"account": "https://explorer.exosama.com/address/{address}"
}
],
"externalApi": {
"history": [
{
"type": "etherscan",
"url": "https://explorer.exosama.com/api",
"parameters": {
"assetType": "evm"
}
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg",
"addressPrefix": 2109,
"options": [
"ethereumBased",
"noSubstrateRuntime"
]
},
{
"chainId": "2f0555cc76fc2840a25a6ea3b9637146806f1f44b090c175ffde2a7e5ab36c03",
"name": "Bittensor",
@@ -7039,45 +7022,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ajuna.svg",
"addressPrefix": 1328
},
{
"chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66",
"name": "3DPass",
"assets": [
{
"assetId": 0,
"symbol": "P3D",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/P3D.svg"
}
],
"nodes": [
{
"url": "wss://rpc2.3dpass.org",
"name": "3DPass node"
}
],
"explorers": [
{
"name": "3DPass explorer",
"extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}",
"account": "https://explorer.3dpass.org/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-3dpass"
}
]
},
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/3dpass.json",
"overridesCommon": true
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg",
"addressPrefix": 71
},
{
"chainId": "f0b8924b12e8108550d28870bc03f7b45a947e1b2b9abf81bfb0b89ecb60570e",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -7124,6 +7068,60 @@
"ethereumBased"
]
},
{
"chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Crab",
"assets": [
{
"assetId": 0,
"symbol": "CRAB",
"precision": 18,
"priceId": "darwinia-network-native-token",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg"
},
{
"assetId": 1,
"symbol": "CKTON",
"precision": 18,
"type": "statemine",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CKTON.svg",
"typeExtras": {
"assetId": "1026"
}
}
],
"nodes": [
{
"url": "wss://crab-rpc.darwinia.network/",
"name": "Darwinia node"
},
{
"url": "wss://darwiniacrab-rpc.dwellir.com",
"name": "Dwellir node"
},
{
"url": "wss://crab.api.onfinality.io/public-ws",
"name": "OnFinality node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://crab.subscan.io/extrinsic/{hash}",
"account": "https://crab.subscan.io/account/{address}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia_crab.json",
"overridesCommon": true
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg",
"addressPrefix": 42,
"options": [
"ethereumBased"
]
},
{
"chainId": "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
+147 -149
View File
@@ -2986,68 +2986,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Calamari.svg",
"addressPrefix": 78
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
},
{
"url": "wss://asia-ws-quartz.unique.network",
"name": "Unique Asia node"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json",
"overridesCommon": true
},
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}"
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg",
"addressPrefix": 255
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -4454,54 +4392,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litmus.svg",
"addressPrefix": 131
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://para.f3joule.space",
"name": "Subsocial node"
},
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -5480,6 +5370,55 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing.svg",
"addressPrefix": 51
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"priceId": "aleph-zero",
"staking": [
"aleph-zero"
],
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg"
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
],
"staking": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 42
},
{
"chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -6906,6 +6845,50 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hashed.svg",
"addressPrefix": 42
},
{
"chainId": "eip155:2109",
"name": "Exosama",
"assets": [
{
"assetId": 0,
"symbol": "SAMA",
"priceId": "exosama-network",
"type": "evmNative",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://rpc.exosama.com",
"name": "Exosama node"
}
],
"explorers": [
{
"name": "Exosama explorer",
"extrinsic": "https://explorer.exosama.com/tx/{hash}",
"account": "https://explorer.exosama.com/address/{address}"
}
],
"externalApi": {
"history": [
{
"type": "etherscan",
"url": "https://explorer.exosama.com/api",
"parameters": {
"assetType": "evm"
}
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg",
"addressPrefix": 2109,
"options": [
"ethereumBased",
"noSubstrateRuntime"
]
},
{
"chainId": "2f0555cc76fc2840a25a6ea3b9637146806f1f44b090c175ffde2a7e5ab36c03",
"name": "Bittensor",
@@ -7039,45 +7022,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ajuna.svg",
"addressPrefix": 1328
},
{
"chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66",
"name": "3DPass",
"assets": [
{
"assetId": 0,
"symbol": "P3D",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/P3D.svg"
}
],
"nodes": [
{
"url": "wss://rpc2.3dpass.org",
"name": "3DPass node"
}
],
"explorers": [
{
"name": "3DPass explorer",
"extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}",
"account": "https://explorer.3dpass.org/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-3dpass"
}
]
},
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/3dpass.json",
"overridesCommon": true
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg",
"addressPrefix": 71
},
{
"chainId": "f0b8924b12e8108550d28870bc03f7b45a947e1b2b9abf81bfb0b89ecb60570e",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -7124,6 +7068,60 @@
"ethereumBased"
]
},
{
"chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Crab",
"assets": [
{
"assetId": 0,
"symbol": "CRAB",
"precision": 18,
"priceId": "darwinia-network-native-token",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg"
},
{
"assetId": 1,
"symbol": "CKTON",
"precision": 18,
"type": "statemine",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CKTON.svg",
"typeExtras": {
"assetId": "1026"
}
}
],
"nodes": [
{
"url": "wss://crab-rpc.darwinia.network/",
"name": "Darwinia node"
},
{
"url": "wss://darwiniacrab-rpc.dwellir.com",
"name": "Dwellir node"
},
{
"url": "wss://crab.api.onfinality.io/public-ws",
"name": "OnFinality node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://crab.subscan.io/extrinsic/{hash}",
"account": "https://crab.subscan.io/account/{address}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia_crab.json",
"overridesCommon": true
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg",
"addressPrefix": 42,
"options": [
"ethereumBased"
]
},
{
"chainId": "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
+140 -128
View File
@@ -3071,68 +3071,6 @@
"defaultBlockTime": 12000
}
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
},
{
"url": "wss://asia-ws-quartz.unique.network",
"name": "Unique Asia node"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json",
"overridesCommon": true
},
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}"
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg",
"addressPrefix": 255
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -4935,54 +4873,6 @@
"governance-v1"
]
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://para.f3joule.space",
"name": "Subsocial node"
},
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -6031,6 +5921,61 @@
"defaultBlockTime": 12000
}
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"staking": [
"aleph-zero",
"nomination-pools"
],
"priceId": "aleph-zero",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg"
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero__bm92Y"
}
],
"staking": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero__bm92Y"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 42,
"additional": {
"themeColor": "#10B6B1",
"stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains",
"defaultBlockTime": 1000
}
},
{
"chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -8119,43 +8064,48 @@
]
},
{
"chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66",
"name": "3DPass",
"chainId": "eip155:2109",
"name": "Exosama",
"assets": [
{
"assetId": 0,
"symbol": "P3D",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/P3D.svg"
"symbol": "SAMA",
"priceId": "exosama-network",
"type": "evmNative",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://rpc2.3dpass.org",
"name": "3DPass node"
"url": "wss://rpc.exosama.com",
"name": "Exosama node"
}
],
"explorers": [
{
"name": "3DPass explorer",
"extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}",
"account": "https://explorer.3dpass.org/account/{address}"
"name": "Exosama explorer",
"extrinsic": "https://explorer.exosama.com/tx/{hash}",
"account": "https://explorer.exosama.com/address/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-3dpass"
"type": "etherscan",
"url": "https://explorer.exosama.com/api",
"parameters": {
"assetType": "evm"
}
}
]
},
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/3dpass.json",
"overridesCommon": true
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg",
"addressPrefix": 71
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg",
"addressPrefix": 2109,
"options": [
"ethereumBased",
"noSubstrateRuntime"
]
},
{
"chainId": "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee",
@@ -8240,6 +8190,68 @@
"ethereumBased"
]
},
{
"chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Crab",
"assets": [
{
"assetId": 0,
"symbol": "CRAB",
"precision": 18,
"priceId": "darwinia-network-native-token",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg"
},
{
"assetId": 1,
"symbol": "CKTON",
"precision": 18,
"type": "statemine",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CKTON.svg",
"typeExtras": {
"assetId": "1026"
}
}
],
"nodes": [
{
"url": "wss://crab-rpc.darwinia.network/",
"name": "Darwinia node"
},
{
"url": "wss://darwiniacrab-rpc.dwellir.com",
"name": "Dwellir node"
},
{
"url": "wss://crab.api.onfinality.io/public-ws",
"name": "OnFinality node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://crab.subscan.io/extrinsic/{hash}",
"account": "https://crab.subscan.io/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-darwinia"
}
]
},
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia_crab.json",
"overridesCommon": true
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg",
"addressPrefix": 42,
"options": [
"ethereumBased"
]
},
{
"chainId": "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
+170 -150
View File
@@ -3242,68 +3242,6 @@
"defaultBlockTime": 12000
}
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
},
{
"url": "wss://asia-ws-quartz.unique.network",
"name": "Unique Asia node"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json",
"overridesCommon": true
},
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}"
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg",
"addressPrefix": 255
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -4765,54 +4703,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litmus.svg",
"addressPrefix": 131
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://para.f3joule.space",
"name": "Subsocial node"
},
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -5782,6 +5672,70 @@
"defaultBlockTime": 12000
}
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"priceId": "aleph-zero",
"staking": [
"aleph-zero",
"nomination-pools"
],
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg",
"buyProviders": {
"transak": {
"network": "ALEPHZERO"
},
"banxa": {
"coinType": "AZERO",
"blockchain": "AZERO"
}
}
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
],
"staking": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 42,
"additional": {
"themeColor": "#10B6B1",
"stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/aleph-zero-azero-staking",
"defaultBlockTime": 1000
}
},
{
"chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -7258,6 +7212,50 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hashed.svg",
"addressPrefix": 42
},
{
"chainId": "eip155:2109",
"name": "Exosama",
"assets": [
{
"assetId": 0,
"symbol": "SAMA",
"priceId": "exosama-network",
"type": "evmNative",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://rpc.exosama.com",
"name": "Exosama node"
}
],
"explorers": [
{
"name": "Exosama explorer",
"extrinsic": "https://explorer.exosama.com/tx/{hash}",
"account": "https://explorer.exosama.com/address/{address}"
}
],
"externalApi": {
"history": [
{
"type": "etherscan",
"url": "https://explorer.exosama.com/api",
"parameters": {
"assetType": "evm"
}
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg",
"addressPrefix": 2109,
"options": [
"ethereumBased",
"noSubstrateRuntime"
]
},
{
"chainId": "2f0555cc76fc2840a25a6ea3b9637146806f1f44b090c175ffde2a7e5ab36c03",
"name": "Bittensor",
@@ -7391,46 +7389,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ajuna.svg",
"addressPrefix": 1328
},
{
"chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66",
"name": "3DPass",
"assets": [
{
"assetId": 0,
"symbol": "P3D",
"precision": 12,
"priceId": "3dpass",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/P3D.svg"
}
],
"nodes": [
{
"url": "wss://rpc2.3dpass.org",
"name": "3DPass node"
}
],
"explorers": [
{
"name": "3DPass explorer",
"extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}",
"account": "https://explorer.3dpass.org/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-3dpass"
}
]
},
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/3dpass.json",
"overridesCommon": true
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg",
"addressPrefix": 71
},
{
"chainId": "f0b8924b12e8108550d28870bc03f7b45a947e1b2b9abf81bfb0b89ecb60570e",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -7485,6 +7443,68 @@
"ethereumBased"
]
},
{
"chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Crab",
"assets": [
{
"assetId": 0,
"symbol": "CRAB",
"precision": 18,
"priceId": "darwinia-network-native-token",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg"
},
{
"assetId": 1,
"symbol": "CKTON",
"precision": 18,
"type": "statemine",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CKTON.svg",
"typeExtras": {
"assetId": "1026"
}
}
],
"nodes": [
{
"url": "wss://crab-rpc.darwinia.network/",
"name": "Darwinia node"
},
{
"url": "wss://darwiniacrab-rpc.dwellir.com",
"name": "Dwellir node"
},
{
"url": "wss://crab-rpc.darwiniacommunitydao.xyz",
"name": "Community node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://crab.subscan.io/extrinsic/{hash}",
"account": "https://crab.subscan.io/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-darwinia"
}
]
},
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia_crab.json",
"overridesCommon": true
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg",
"addressPrefix": 42,
"options": [
"ethereumBased"
]
},
{
"chainId": "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
+170 -150
View File
@@ -3242,68 +3242,6 @@
"defaultBlockTime": 12000
}
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
},
{
"url": "wss://asia-ws-quartz.unique.network",
"name": "Unique Asia node"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json",
"overridesCommon": true
},
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}"
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg",
"addressPrefix": 255
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -4765,54 +4703,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litmus.svg",
"addressPrefix": 131
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://para.f3joule.space",
"name": "Subsocial node"
},
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -5782,6 +5672,70 @@
"defaultBlockTime": 12000
}
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"priceId": "aleph-zero",
"staking": [
"aleph-zero",
"nomination-pools"
],
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg",
"buyProviders": {
"transak": {
"network": "ALEPHZERO"
},
"banxa": {
"coinType": "AZERO",
"blockchain": "AZERO"
}
}
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
],
"staking": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 42,
"additional": {
"themeColor": "#10B6B1",
"stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/aleph-zero-azero-staking",
"defaultBlockTime": 1000
}
},
{
"chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -7258,6 +7212,50 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hashed.svg",
"addressPrefix": 42
},
{
"chainId": "eip155:2109",
"name": "Exosama",
"assets": [
{
"assetId": 0,
"symbol": "SAMA",
"priceId": "exosama-network",
"type": "evmNative",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://rpc.exosama.com",
"name": "Exosama node"
}
],
"explorers": [
{
"name": "Exosama explorer",
"extrinsic": "https://explorer.exosama.com/tx/{hash}",
"account": "https://explorer.exosama.com/address/{address}"
}
],
"externalApi": {
"history": [
{
"type": "etherscan",
"url": "https://explorer.exosama.com/api",
"parameters": {
"assetType": "evm"
}
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg",
"addressPrefix": 2109,
"options": [
"ethereumBased",
"noSubstrateRuntime"
]
},
{
"chainId": "2f0555cc76fc2840a25a6ea3b9637146806f1f44b090c175ffde2a7e5ab36c03",
"name": "Bittensor",
@@ -7391,46 +7389,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ajuna.svg",
"addressPrefix": 1328
},
{
"chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66",
"name": "3DPass",
"assets": [
{
"assetId": 0,
"symbol": "P3D",
"precision": 12,
"priceId": "3dpass",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/P3D.svg"
}
],
"nodes": [
{
"url": "wss://rpc2.3dpass.org",
"name": "3DPass node"
}
],
"explorers": [
{
"name": "3DPass explorer",
"extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}",
"account": "https://explorer.3dpass.org/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-3dpass"
}
]
},
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/3dpass.json",
"overridesCommon": true
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg",
"addressPrefix": 71
},
{
"chainId": "f0b8924b12e8108550d28870bc03f7b45a947e1b2b9abf81bfb0b89ecb60570e",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -7485,6 +7443,68 @@
"ethereumBased"
]
},
{
"chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Crab",
"assets": [
{
"assetId": 0,
"symbol": "CRAB",
"precision": 18,
"priceId": "darwinia-network-native-token",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg"
},
{
"assetId": 1,
"symbol": "CKTON",
"precision": 18,
"type": "statemine",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CKTON.svg",
"typeExtras": {
"assetId": "1026"
}
}
],
"nodes": [
{
"url": "wss://crab-rpc.darwinia.network/",
"name": "Darwinia node"
},
{
"url": "wss://darwiniacrab-rpc.dwellir.com",
"name": "Dwellir node"
},
{
"url": "wss://crab-rpc.darwiniacommunitydao.xyz",
"name": "Community node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://crab.subscan.io/extrinsic/{hash}",
"account": "https://crab.subscan.io/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-darwinia"
}
]
},
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia_crab.json",
"overridesCommon": true
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg",
"addressPrefix": 42,
"options": [
"ethereumBased"
]
},
{
"chainId": "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
+149 -129
View File
@@ -3258,68 +3258,6 @@
"defaultBlockTime": 12000
}
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
},
{
"url": "wss://asia-ws-quartz.unique.network",
"name": "Unique Asia node"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json",
"overridesCommon": true
},
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}"
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg",
"addressPrefix": 255
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -5228,54 +5166,6 @@
"governance-v1"
]
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://para.f3joule.space",
"name": "Subsocial node"
},
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -6307,6 +6197,70 @@
"defaultBlockTime": 12000
}
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"staking": [
"aleph-zero",
"nomination-pools"
],
"priceId": "aleph-zero",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg",
"buyProviders": {
"transak": {
"network": "ALEPHZERO"
},
"banxa": {
"coinType": "AZERO",
"blockchain": "AZERO"
}
}
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
],
"staking": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 42,
"additional": {
"themeColor": "#10B6B1",
"stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/aleph-zero-azero-staking",
"defaultBlockTime": 1000
}
},
{
"chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -8465,44 +8419,48 @@
]
},
{
"chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66",
"name": "3DPass",
"chainId": "eip155:2109",
"name": "Exosama",
"assets": [
{
"assetId": 0,
"symbol": "P3D",
"precision": 12,
"priceId": "3dpass",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/P3D.svg"
"symbol": "SAMA",
"priceId": "exosama-network",
"type": "evmNative",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://rpc2.3dpass.org",
"name": "3DPass node"
"url": "wss://rpc.exosama.com",
"name": "Exosama node"
}
],
"explorers": [
{
"name": "3DPass explorer",
"extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}",
"account": "https://explorer.3dpass.org/account/{address}"
"name": "Exosama explorer",
"extrinsic": "https://explorer.exosama.com/tx/{hash}",
"account": "https://explorer.exosama.com/address/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-3dpass"
"type": "etherscan",
"url": "https://explorer.exosama.com/api",
"parameters": {
"assetType": "evm"
}
}
]
},
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/3dpass.json",
"overridesCommon": true
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg",
"addressPrefix": 71
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg",
"addressPrefix": 2109,
"options": [
"ethereumBased",
"noSubstrateRuntime"
]
},
{
"chainId": "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee",
@@ -8607,6 +8565,68 @@
"ethereumBased"
]
},
{
"chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Crab",
"assets": [
{
"assetId": 0,
"symbol": "CRAB",
"precision": 18,
"priceId": "darwinia-network-native-token",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg"
},
{
"assetId": 1,
"symbol": "CKTON",
"precision": 18,
"type": "statemine",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CKTON.svg",
"typeExtras": {
"assetId": "1026"
}
}
],
"nodes": [
{
"url": "wss://crab-rpc.darwinia.network/",
"name": "Darwinia node"
},
{
"url": "wss://darwiniacrab-rpc.dwellir.com",
"name": "Dwellir node"
},
{
"url": "wss://crab-rpc.darwiniacommunitydao.xyz",
"name": "Community node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://crab.subscan.io/extrinsic/{hash}",
"account": "https://crab.subscan.io/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-darwinia"
}
]
},
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia_crab.json",
"overridesCommon": true
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg",
"addressPrefix": 42,
"options": [
"ethereumBased"
]
},
{
"chainId": "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
+170 -158
View File
@@ -3233,68 +3233,6 @@
"defaultBlockTime": 12000
}
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
},
{
"url": "wss://asia-ws-quartz.unique.network",
"name": "Unique Asia node"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json",
"overridesCommon": true
},
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}"
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg",
"addressPrefix": 255
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -4757,54 +4695,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litmus.svg",
"addressPrefix": 131
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://para.f3joule.space",
"name": "Subsocial node"
},
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -5774,6 +5664,70 @@
"defaultBlockTime": 12000
}
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"priceId": "aleph-zero",
"staking": [
"aleph-zero",
"nomination-pools"
],
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg",
"buyProviders": {
"transak": {
"network": "ALEPHZERO"
},
"banxa": {
"coinType": "AZERO",
"blockchain": "AZERO"
}
}
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
],
"staking": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 42,
"additional": {
"themeColor": "#10B6B1",
"stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/aleph-zero-azero-staking",
"defaultBlockTime": 1000
}
},
{
"chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -7250,6 +7204,50 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hashed.svg",
"addressPrefix": 42
},
{
"chainId": "eip155:2109",
"name": "Exosama",
"assets": [
{
"assetId": 0,
"symbol": "SAMA",
"priceId": "exosama-network",
"type": "evmNative",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://rpc.exosama.com",
"name": "Exosama node"
}
],
"explorers": [
{
"name": "Exosama explorer",
"extrinsic": "https://explorer.exosama.com/tx/{hash}",
"account": "https://explorer.exosama.com/address/{address}"
}
],
"externalApi": {
"history": [
{
"type": "etherscan",
"url": "https://explorer.exosama.com/api",
"parameters": {
"assetType": "evm"
}
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg",
"addressPrefix": 2109,
"options": [
"ethereumBased",
"noSubstrateRuntime"
]
},
{
"chainId": "2f0555cc76fc2840a25a6ea3b9637146806f1f44b090c175ffde2a7e5ab36c03",
"name": "Bittensor",
@@ -7389,54 +7387,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ajuna.svg",
"addressPrefix": 1328
},
{
"chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66",
"name": "3DPass",
"assets": [
{
"assetId": 0,
"symbol": "P3D",
"precision": 12,
"priceId": "3dpass",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/P3D.svg"
}
],
"nodes": [
{
"url": "wss://rpc.3dpscan.io",
"name": "3DPass node"
},
{
"url": "wss://rpc.3dpass.org",
"name": "3DPass node"
},
{
"url": "wss://rpc2.3dpass.org",
"name": "3DPass node"
}
],
"explorers": [
{
"name": "3DPass explorer",
"extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}",
"account": "https://explorer.3dpass.org/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-3dpass"
}
]
},
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/3dpass.json",
"overridesCommon": true
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg",
"addressPrefix": 71
},
{
"chainId": "f0b8924b12e8108550d28870bc03f7b45a947e1b2b9abf81bfb0b89ecb60570e",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -7491,6 +7441,68 @@
"ethereumBased"
]
},
{
"chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Crab",
"assets": [
{
"assetId": 0,
"symbol": "CRAB",
"precision": 18,
"priceId": "darwinia-network-native-token",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg"
},
{
"assetId": 1,
"symbol": "CKTON",
"precision": 18,
"type": "statemine",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CKTON.svg",
"typeExtras": {
"assetId": "1026"
}
}
],
"nodes": [
{
"url": "wss://crab-rpc.darwinia.network/",
"name": "Darwinia node"
},
{
"url": "wss://darwiniacrab-rpc.dwellir.com",
"name": "Dwellir node"
},
{
"url": "wss://crab-rpc.darwiniacommunitydao.xyz",
"name": "Community node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://crab.subscan.io/extrinsic/{hash}",
"account": "https://crab.subscan.io/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-darwinia"
}
]
},
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia_crab.json",
"overridesCommon": true
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg",
"addressPrefix": 42,
"options": [
"ethereumBased"
]
},
{
"chainId": "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
+170 -158
View File
@@ -3233,68 +3233,6 @@
"defaultBlockTime": 12000
}
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
},
{
"url": "wss://asia-ws-quartz.unique.network",
"name": "Unique Asia node"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json",
"overridesCommon": true
},
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}"
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg",
"addressPrefix": 255
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -4757,54 +4695,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litmus.svg",
"addressPrefix": 131
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://para.f3joule.space",
"name": "Subsocial node"
},
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -5774,6 +5664,70 @@
"defaultBlockTime": 12000
}
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"priceId": "aleph-zero",
"staking": [
"aleph-zero",
"nomination-pools"
],
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg",
"buyProviders": {
"transak": {
"network": "ALEPHZERO"
},
"banxa": {
"coinType": "AZERO",
"blockchain": "AZERO"
}
}
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
],
"staking": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 42,
"additional": {
"themeColor": "#10B6B1",
"stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/aleph-zero-azero-staking",
"defaultBlockTime": 1000
}
},
{
"chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -7250,6 +7204,50 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hashed.svg",
"addressPrefix": 42
},
{
"chainId": "eip155:2109",
"name": "Exosama",
"assets": [
{
"assetId": 0,
"symbol": "SAMA",
"priceId": "exosama-network",
"type": "evmNative",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://rpc.exosama.com",
"name": "Exosama node"
}
],
"explorers": [
{
"name": "Exosama explorer",
"extrinsic": "https://explorer.exosama.com/tx/{hash}",
"account": "https://explorer.exosama.com/address/{address}"
}
],
"externalApi": {
"history": [
{
"type": "etherscan",
"url": "https://explorer.exosama.com/api",
"parameters": {
"assetType": "evm"
}
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg",
"addressPrefix": 2109,
"options": [
"ethereumBased",
"noSubstrateRuntime"
]
},
{
"chainId": "2f0555cc76fc2840a25a6ea3b9637146806f1f44b090c175ffde2a7e5ab36c03",
"name": "Bittensor",
@@ -7389,54 +7387,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ajuna.svg",
"addressPrefix": 1328
},
{
"chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66",
"name": "3DPass",
"assets": [
{
"assetId": 0,
"symbol": "P3D",
"precision": 12,
"priceId": "3dpass",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/P3D.svg"
}
],
"nodes": [
{
"url": "wss://rpc.3dpscan.io",
"name": "3DPass node"
},
{
"url": "wss://rpc.3dpass.org",
"name": "3DPass node"
},
{
"url": "wss://rpc2.3dpass.org",
"name": "3DPass node"
}
],
"explorers": [
{
"name": "3DPass explorer",
"extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}",
"account": "https://explorer.3dpass.org/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-3dpass"
}
]
},
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/3dpass.json",
"overridesCommon": true
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg",
"addressPrefix": 71
},
{
"chainId": "f0b8924b12e8108550d28870bc03f7b45a947e1b2b9abf81bfb0b89ecb60570e",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -7491,6 +7441,68 @@
"ethereumBased"
]
},
{
"chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Crab",
"assets": [
{
"assetId": 0,
"symbol": "CRAB",
"precision": 18,
"priceId": "darwinia-network-native-token",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg"
},
{
"assetId": 1,
"symbol": "CKTON",
"precision": 18,
"type": "statemine",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CKTON.svg",
"typeExtras": {
"assetId": "1026"
}
}
],
"nodes": [
{
"url": "wss://crab-rpc.darwinia.network/",
"name": "Darwinia node"
},
{
"url": "wss://darwiniacrab-rpc.dwellir.com",
"name": "Dwellir node"
},
{
"url": "wss://crab-rpc.darwiniacommunitydao.xyz",
"name": "Community node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://crab.subscan.io/extrinsic/{hash}",
"account": "https://crab.subscan.io/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-darwinia"
}
]
},
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia_crab.json",
"overridesCommon": true
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg",
"addressPrefix": 42,
"options": [
"ethereumBased"
]
},
{
"chainId": "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
+149 -137
View File
@@ -3260,68 +3260,6 @@
"defaultBlockTime": 12000
}
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
},
{
"url": "wss://asia-ws-quartz.unique.network",
"name": "Unique Asia node"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json",
"overridesCommon": true
},
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}"
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg",
"addressPrefix": 255
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -5231,54 +5169,6 @@
"governance-v1"
]
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://para.f3joule.space",
"name": "Subsocial node"
},
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -6310,6 +6200,70 @@
"defaultBlockTime": 12000
}
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"staking": [
"aleph-zero",
"nomination-pools"
],
"priceId": "aleph-zero",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg",
"buyProviders": {
"transak": {
"network": "ALEPHZERO"
},
"banxa": {
"coinType": "AZERO",
"blockchain": "AZERO"
}
}
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
],
"staking": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 42,
"additional": {
"themeColor": "#10B6B1",
"stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/aleph-zero-azero-staking",
"defaultBlockTime": 1000
}
},
{
"chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -8431,52 +8385,48 @@
]
},
{
"chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66",
"name": "3DPass",
"chainId": "eip155:2109",
"name": "Exosama",
"assets": [
{
"assetId": 0,
"symbol": "P3D",
"precision": 12,
"priceId": "3dpass",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/P3D.svg"
"symbol": "SAMA",
"priceId": "exosama-network",
"type": "evmNative",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://rpc.3dpscan.io",
"name": "3DPass node"
},
{
"url": "wss://rpc.3dpass.org",
"name": "3DPass node"
},
{
"url": "wss://rpc2.3dpass.org",
"name": "3DPass node"
"url": "wss://rpc.exosama.com",
"name": "Exosama node"
}
],
"explorers": [
{
"name": "3DPass explorer",
"extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}",
"account": "https://explorer.3dpass.org/account/{address}"
"name": "Exosama explorer",
"extrinsic": "https://explorer.exosama.com/tx/{hash}",
"account": "https://explorer.exosama.com/address/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-3dpass"
"type": "etherscan",
"url": "https://explorer.exosama.com/api",
"parameters": {
"assetType": "evm"
}
}
]
},
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/3dpass.json",
"overridesCommon": true
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg",
"addressPrefix": 71
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg",
"addressPrefix": 2109,
"options": [
"ethereumBased",
"noSubstrateRuntime"
]
},
{
"chainId": "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee",
@@ -8581,6 +8531,68 @@
"ethereumBased"
]
},
{
"chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Crab",
"assets": [
{
"assetId": 0,
"symbol": "CRAB",
"precision": 18,
"priceId": "darwinia-network-native-token",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg"
},
{
"assetId": 1,
"symbol": "CKTON",
"precision": 18,
"type": "statemine",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CKTON.svg",
"typeExtras": {
"assetId": "1026"
}
}
],
"nodes": [
{
"url": "wss://crab-rpc.darwinia.network/",
"name": "Darwinia node"
},
{
"url": "wss://darwiniacrab-rpc.dwellir.com",
"name": "Dwellir node"
},
{
"url": "wss://crab-rpc.darwiniacommunitydao.xyz",
"name": "Community node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://crab.subscan.io/extrinsic/{hash}",
"account": "https://crab.subscan.io/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-darwinia"
}
]
},
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia_crab.json",
"overridesCommon": true
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg",
"addressPrefix": 42,
"options": [
"ethereumBased"
]
},
{
"chainId": "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
+170 -155
View File
@@ -3239,68 +3239,6 @@
"defaultBlockTime": 12000
}
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
},
{
"url": "wss://asia-ws-quartz.unique.network",
"name": "Unique Asia node"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json",
"overridesCommon": true
},
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}"
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg",
"addressPrefix": 255
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -4775,55 +4713,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litmus.svg",
"addressPrefix": 131
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"priceId": "subsocial",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://para.f3joule.space",
"name": "Subsocial node"
},
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -5835,6 +5724,70 @@
"defaultBlockTime": 12000
}
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"priceId": "aleph-zero",
"staking": [
"aleph-zero",
"nomination-pools"
],
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg",
"buyProviders": {
"transak": {
"network": "ALEPHZERO"
},
"banxa": {
"coinType": "AZERO",
"blockchain": "AZERO"
}
}
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
],
"staking": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 42,
"additional": {
"themeColor": "#10B6B1",
"stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/aleph-zero-azero-staking",
"defaultBlockTime": 1000
}
},
{
"chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -7307,6 +7260,50 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hashed.svg",
"addressPrefix": 42
},
{
"chainId": "eip155:2109",
"name": "Exosama",
"assets": [
{
"assetId": 0,
"symbol": "SAMA",
"priceId": "exosama-network",
"type": "evmNative",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://rpc.exosama.com",
"name": "Exosama node"
}
],
"explorers": [
{
"name": "Exosama explorer",
"extrinsic": "https://explorer.exosama.com/tx/{hash}",
"account": "https://explorer.exosama.com/address/{address}"
}
],
"externalApi": {
"history": [
{
"type": "etherscan",
"url": "https://explorer.exosama.com/api",
"parameters": {
"assetType": "evm"
}
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg",
"addressPrefix": 2109,
"options": [
"ethereumBased",
"noSubstrateRuntime"
]
},
{
"chainId": "2f0555cc76fc2840a25a6ea3b9637146806f1f44b090c175ffde2a7e5ab36c03",
"name": "Bittensor",
@@ -7446,50 +7443,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ajuna.svg",
"addressPrefix": 1328
},
{
"chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66",
"name": "3DPass",
"assets": [
{
"assetId": 0,
"symbol": "P3D",
"precision": 12,
"priceId": "3dpass",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/P3D.svg"
}
],
"nodes": [
{
"url": "wss://rpc.3dpscan.io",
"name": "3DPass node"
},
{
"url": "wss://rpc2.3dpass.org",
"name": "3DPass node"
}
],
"explorers": [
{
"name": "3DPass explorer",
"extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}",
"account": "https://explorer.3dpass.org/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-3dpass"
}
]
},
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/3dpass.json",
"overridesCommon": true
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg",
"addressPrefix": 71
},
{
"chainId": "f0b8924b12e8108550d28870bc03f7b45a947e1b2b9abf81bfb0b89ecb60570e",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -7544,6 +7497,68 @@
"ethereumBased"
]
},
{
"chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Crab",
"assets": [
{
"assetId": 0,
"symbol": "CRAB",
"precision": 18,
"priceId": "darwinia-network-native-token",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg"
},
{
"assetId": 1,
"symbol": "CKTON",
"precision": 18,
"type": "statemine",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CKTON.svg",
"typeExtras": {
"assetId": "1026"
}
}
],
"nodes": [
{
"url": "wss://crab-rpc.darwinia.network/",
"name": "Darwinia node"
},
{
"url": "wss://darwiniacrab-rpc.dwellir.com",
"name": "Dwellir node"
},
{
"url": "wss://crab-rpc.darwiniacommunitydao.xyz",
"name": "Community node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://crab.subscan.io/extrinsic/{hash}",
"account": "https://crab.subscan.io/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-darwinia"
}
]
},
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia_crab.json",
"overridesCommon": true
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg",
"addressPrefix": 42,
"options": [
"ethereumBased"
]
},
{
"chainId": "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
+170 -155
View File
@@ -3239,68 +3239,6 @@
"defaultBlockTime": 12000
}
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
},
{
"url": "wss://asia-ws-quartz.unique.network",
"name": "Unique Asia node"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json",
"overridesCommon": true
},
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}"
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg",
"addressPrefix": 255
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -4775,55 +4713,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litmus.svg",
"addressPrefix": 131
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"priceId": "subsocial",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://para.f3joule.space",
"name": "Subsocial node"
},
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -5835,6 +5724,70 @@
"defaultBlockTime": 12000
}
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"priceId": "aleph-zero",
"staking": [
"aleph-zero",
"nomination-pools"
],
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg",
"buyProviders": {
"transak": {
"network": "ALEPHZERO"
},
"banxa": {
"coinType": "AZERO",
"blockchain": "AZERO"
}
}
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
],
"staking": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 42,
"additional": {
"themeColor": "#10B6B1",
"stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/aleph-zero-azero-staking",
"defaultBlockTime": 1000
}
},
{
"chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -7307,6 +7260,50 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hashed.svg",
"addressPrefix": 42
},
{
"chainId": "eip155:2109",
"name": "Exosama",
"assets": [
{
"assetId": 0,
"symbol": "SAMA",
"priceId": "exosama-network",
"type": "evmNative",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://rpc.exosama.com",
"name": "Exosama node"
}
],
"explorers": [
{
"name": "Exosama explorer",
"extrinsic": "https://explorer.exosama.com/tx/{hash}",
"account": "https://explorer.exosama.com/address/{address}"
}
],
"externalApi": {
"history": [
{
"type": "etherscan",
"url": "https://explorer.exosama.com/api",
"parameters": {
"assetType": "evm"
}
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg",
"addressPrefix": 2109,
"options": [
"ethereumBased",
"noSubstrateRuntime"
]
},
{
"chainId": "2f0555cc76fc2840a25a6ea3b9637146806f1f44b090c175ffde2a7e5ab36c03",
"name": "Bittensor",
@@ -7446,50 +7443,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ajuna.svg",
"addressPrefix": 1328
},
{
"chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66",
"name": "3DPass",
"assets": [
{
"assetId": 0,
"symbol": "P3D",
"precision": 12,
"priceId": "3dpass",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/P3D.svg"
}
],
"nodes": [
{
"url": "wss://rpc.3dpscan.io",
"name": "3DPass node"
},
{
"url": "wss://rpc2.3dpass.org",
"name": "3DPass node"
}
],
"explorers": [
{
"name": "3DPass explorer",
"extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}",
"account": "https://explorer.3dpass.org/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-3dpass"
}
]
},
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/3dpass.json",
"overridesCommon": true
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg",
"addressPrefix": 71
},
{
"chainId": "f0b8924b12e8108550d28870bc03f7b45a947e1b2b9abf81bfb0b89ecb60570e",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -7544,6 +7497,68 @@
"ethereumBased"
]
},
{
"chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Crab",
"assets": [
{
"assetId": 0,
"symbol": "CRAB",
"precision": 18,
"priceId": "darwinia-network-native-token",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg"
},
{
"assetId": 1,
"symbol": "CKTON",
"precision": 18,
"type": "statemine",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CKTON.svg",
"typeExtras": {
"assetId": "1026"
}
}
],
"nodes": [
{
"url": "wss://crab-rpc.darwinia.network/",
"name": "Darwinia node"
},
{
"url": "wss://darwiniacrab-rpc.dwellir.com",
"name": "Dwellir node"
},
{
"url": "wss://crab-rpc.darwiniacommunitydao.xyz",
"name": "Community node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://crab.subscan.io/extrinsic/{hash}",
"account": "https://crab.subscan.io/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-darwinia"
}
]
},
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia_crab.json",
"overridesCommon": true
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg",
"addressPrefix": 42,
"options": [
"ethereumBased"
]
},
{
"chainId": "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
+149 -134
View File
@@ -3301,68 +3301,6 @@
"defaultBlockTime": 12000
}
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
},
{
"url": "wss://asia-ws-quartz.unique.network",
"name": "Unique Asia node"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json",
"overridesCommon": true
},
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}"
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg",
"addressPrefix": 255
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -5275,55 +5213,6 @@
"governance-v1"
]
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"priceId": "subsocial",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://para.f3joule.space",
"name": "Subsocial node"
},
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -6383,6 +6272,70 @@
"defaultBlockTime": 12000
}
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"staking": [
"aleph-zero",
"nomination-pools"
],
"priceId": "aleph-zero",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg",
"buyProviders": {
"transak": {
"network": "ALEPHZERO"
},
"banxa": {
"coinType": "AZERO",
"blockchain": "AZERO"
}
}
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
],
"staking": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 42,
"additional": {
"themeColor": "#10B6B1",
"stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/aleph-zero-azero-staking",
"defaultBlockTime": 1000
}
},
{
"chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -8506,48 +8459,48 @@
]
},
{
"chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66",
"name": "3DPass",
"chainId": "eip155:2109",
"name": "Exosama",
"assets": [
{
"assetId": 0,
"symbol": "P3D",
"precision": 12,
"priceId": "3dpass",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/P3D.svg"
"symbol": "SAMA",
"priceId": "exosama-network",
"type": "evmNative",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://rpc.3dpscan.io",
"name": "3DPass node"
},
{
"url": "wss://rpc2.3dpass.org",
"name": "3DPass node"
"url": "wss://rpc.exosama.com",
"name": "Exosama node"
}
],
"explorers": [
{
"name": "3DPass explorer",
"extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}",
"account": "https://explorer.3dpass.org/account/{address}"
"name": "Exosama explorer",
"extrinsic": "https://explorer.exosama.com/tx/{hash}",
"account": "https://explorer.exosama.com/address/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-3dpass"
"type": "etherscan",
"url": "https://explorer.exosama.com/api",
"parameters": {
"assetType": "evm"
}
}
]
},
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/3dpass.json",
"overridesCommon": true
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg",
"addressPrefix": 71
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg",
"addressPrefix": 2109,
"options": [
"ethereumBased",
"noSubstrateRuntime"
]
},
{
"chainId": "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee",
@@ -8652,6 +8605,68 @@
"ethereumBased"
]
},
{
"chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Crab",
"assets": [
{
"assetId": 0,
"symbol": "CRAB",
"precision": 18,
"priceId": "darwinia-network-native-token",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg"
},
{
"assetId": 1,
"symbol": "CKTON",
"precision": 18,
"type": "statemine",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CKTON.svg",
"typeExtras": {
"assetId": "1026"
}
}
],
"nodes": [
{
"url": "wss://crab-rpc.darwinia.network/",
"name": "Darwinia node"
},
{
"url": "wss://darwiniacrab-rpc.dwellir.com",
"name": "Dwellir node"
},
{
"url": "wss://crab-rpc.darwiniacommunitydao.xyz",
"name": "Community node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://crab.subscan.io/extrinsic/{hash}",
"account": "https://crab.subscan.io/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-darwinia"
}
]
},
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia_crab.json",
"overridesCommon": true
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg",
"addressPrefix": 42,
"options": [
"ethereumBased"
]
},
{
"chainId": "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
+165 -167
View File
@@ -3199,67 +3199,6 @@
"defaultBlockTime": 12000
}
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
},
{
"url": "wss://asia-ws-quartz.unique.network",
"name": "Unique Asia node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}"
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg",
"addressPrefix": 255,
"additional": {
"feeViaRuntimeCall": true
}
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -4703,51 +4642,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litmus.svg",
"addressPrefix": 131
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"priceId": "subsocial",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://para.f3joule.space",
"name": "Subsocial node"
},
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -5764,6 +5658,69 @@
"defaultBlockTime": 12000
}
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"priceId": "aleph-zero",
"staking": [
"aleph-zero",
"nomination-pools"
],
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg",
"buyProviders": {
"transak": {
"network": "ALEPHZERO"
},
"banxa": {
"coinType": "AZERO",
"blockchain": "AZERO"
}
}
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
],
"staking": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 42,
"additional": {
"themeColor": "#10B6B1",
"stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/aleph-zero-azero-staking",
"defaultBlockTime": 1000
},
"options": [
"fullSyncByDefault"
]
},
{
"chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -7166,6 +7123,50 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hashed.svg",
"addressPrefix": 42
},
{
"chainId": "eip155:2109",
"name": "Exosama",
"assets": [
{
"assetId": 0,
"symbol": "SAMA",
"priceId": "exosama-network",
"type": "evmNative",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://rpc.exosama.com",
"name": "Exosama node"
}
],
"explorers": [
{
"name": "Exosama explorer",
"extrinsic": "https://explorer.exosama.com/tx/{hash}",
"account": "https://explorer.exosama.com/address/{address}"
}
],
"externalApi": {
"history": [
{
"type": "etherscan",
"url": "https://explorer.exosama.com/api",
"parameters": {
"assetType": "evm"
}
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg",
"addressPrefix": 2109,
"options": [
"ethereumBased",
"noSubstrateRuntime"
]
},
{
"chainId": "2f0555cc76fc2840a25a6ea3b9637146806f1f44b090c175ffde2a7e5ab36c03",
"name": "Bittensor",
@@ -7293,46 +7294,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ajuna.svg",
"addressPrefix": 1328
},
{
"chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66",
"name": "3DPass",
"assets": [
{
"assetId": 0,
"symbol": "P3D",
"precision": 12,
"priceId": "3dpass",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/P3D.svg"
}
],
"nodes": [
{
"url": "wss://rpc.3dpscan.io",
"name": "3DPass node"
},
{
"url": "wss://rpc2.3dpass.org",
"name": "3DPass node"
}
],
"explorers": [
{
"name": "3DPass explorer",
"extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}",
"account": "https://explorer.3dpass.org/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-3dpass"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg",
"addressPrefix": 71
},
{
"chainId": "f0b8924b12e8108550d28870bc03f7b45a947e1b2b9abf81bfb0b89ecb60570e",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -7383,6 +7344,64 @@
"ethereumBased"
]
},
{
"chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Crab",
"assets": [
{
"assetId": 0,
"symbol": "CRAB",
"precision": 18,
"priceId": "darwinia-network-native-token",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg"
},
{
"assetId": 1,
"symbol": "CKTON",
"precision": 18,
"type": "statemine",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CKTON.svg",
"typeExtras": {
"assetId": "1026"
}
}
],
"nodes": [
{
"url": "wss://crab-rpc.darwinia.network/",
"name": "Darwinia node"
},
{
"url": "wss://darwiniacrab-rpc.dwellir.com",
"name": "Dwellir node"
},
{
"url": "wss://crab-rpc.darwiniacommunitydao.xyz",
"name": "Community node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://crab.subscan.io/extrinsic/{hash}",
"account": "https://crab.subscan.io/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-darwinia"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg",
"addressPrefix": 42,
"options": [
"ethereumBased"
]
},
{
"chainId": "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -7829,27 +7848,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Energy_Web_X.svg",
"addressPrefix": 42
},
{
"chainId": "31a7d8914fb31c249b972f18c115f1e22b4b039abbcb03c73b6774c5642f9efe",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
"name": "InvArch",
"assets": [
{
"assetId": 0,
"symbol": "VARCH",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/VARCH.svg"
}
],
"nodes": [
{
"url": "wss://invarch-rpc.dwellir.com",
"name": "Dwellir node"
}
],
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/InvArch.svg",
"addressPrefix": 117
},
{
"chainId": "7eb9354488318e7549c722669dcbdcdc526f1fef1420e7944667212f3601fdbd",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
+165 -167
View File
@@ -3199,67 +3199,6 @@
"defaultBlockTime": 12000
}
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
},
{
"url": "wss://asia-ws-quartz.unique.network",
"name": "Unique Asia node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}"
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg",
"addressPrefix": 255,
"additional": {
"feeViaRuntimeCall": true
}
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -4703,51 +4642,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litmus.svg",
"addressPrefix": 131
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"priceId": "subsocial",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://para.f3joule.space",
"name": "Subsocial node"
},
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -5764,6 +5658,69 @@
"defaultBlockTime": 12000
}
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"priceId": "aleph-zero",
"staking": [
"aleph-zero",
"nomination-pools"
],
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg",
"buyProviders": {
"transak": {
"network": "ALEPHZERO"
},
"banxa": {
"coinType": "AZERO",
"blockchain": "AZERO"
}
}
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
],
"staking": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 42,
"additional": {
"themeColor": "#10B6B1",
"stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/aleph-zero-azero-staking",
"defaultBlockTime": 1000
},
"options": [
"fullSyncByDefault"
]
},
{
"chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -7166,6 +7123,50 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hashed.svg",
"addressPrefix": 42
},
{
"chainId": "eip155:2109",
"name": "Exosama",
"assets": [
{
"assetId": 0,
"symbol": "SAMA",
"priceId": "exosama-network",
"type": "evmNative",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://rpc.exosama.com",
"name": "Exosama node"
}
],
"explorers": [
{
"name": "Exosama explorer",
"extrinsic": "https://explorer.exosama.com/tx/{hash}",
"account": "https://explorer.exosama.com/address/{address}"
}
],
"externalApi": {
"history": [
{
"type": "etherscan",
"url": "https://explorer.exosama.com/api",
"parameters": {
"assetType": "evm"
}
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg",
"addressPrefix": 2109,
"options": [
"ethereumBased",
"noSubstrateRuntime"
]
},
{
"chainId": "2f0555cc76fc2840a25a6ea3b9637146806f1f44b090c175ffde2a7e5ab36c03",
"name": "Bittensor",
@@ -7293,46 +7294,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ajuna.svg",
"addressPrefix": 1328
},
{
"chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66",
"name": "3DPass",
"assets": [
{
"assetId": 0,
"symbol": "P3D",
"precision": 12,
"priceId": "3dpass",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/P3D.svg"
}
],
"nodes": [
{
"url": "wss://rpc.3dpscan.io",
"name": "3DPass node"
},
{
"url": "wss://rpc2.3dpass.org",
"name": "3DPass node"
}
],
"explorers": [
{
"name": "3DPass explorer",
"extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}",
"account": "https://explorer.3dpass.org/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-3dpass"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg",
"addressPrefix": 71
},
{
"chainId": "f0b8924b12e8108550d28870bc03f7b45a947e1b2b9abf81bfb0b89ecb60570e",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -7383,6 +7344,64 @@
"ethereumBased"
]
},
{
"chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Crab",
"assets": [
{
"assetId": 0,
"symbol": "CRAB",
"precision": 18,
"priceId": "darwinia-network-native-token",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg"
},
{
"assetId": 1,
"symbol": "CKTON",
"precision": 18,
"type": "statemine",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CKTON.svg",
"typeExtras": {
"assetId": "1026"
}
}
],
"nodes": [
{
"url": "wss://crab-rpc.darwinia.network/",
"name": "Darwinia node"
},
{
"url": "wss://darwiniacrab-rpc.dwellir.com",
"name": "Dwellir node"
},
{
"url": "wss://crab-rpc.darwiniacommunitydao.xyz",
"name": "Community node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://crab.subscan.io/extrinsic/{hash}",
"account": "https://crab.subscan.io/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-darwinia"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg",
"addressPrefix": 42,
"options": [
"ethereumBased"
]
},
{
"chainId": "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -7829,27 +7848,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Energy_Web_X.svg",
"addressPrefix": 42
},
{
"chainId": "31a7d8914fb31c249b972f18c115f1e22b4b039abbcb03c73b6774c5642f9efe",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
"name": "InvArch",
"assets": [
{
"assetId": 0,
"symbol": "VARCH",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/VARCH.svg"
}
],
"nodes": [
{
"url": "wss://invarch-rpc.dwellir.com",
"name": "Dwellir node"
}
],
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/InvArch.svg",
"addressPrefix": 117
},
{
"chainId": "7eb9354488318e7549c722669dcbdcdc526f1fef1420e7944667212f3601fdbd",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
+144 -146
View File
@@ -3248,67 +3248,6 @@
"defaultBlockTime": 12000
}
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
},
{
"url": "wss://asia-ws-quartz.unique.network",
"name": "Unique Asia node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}"
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg",
"addressPrefix": 255,
"additional": {
"feeViaRuntimeCall": true
}
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -5176,51 +5115,6 @@
"governance-v1"
]
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"priceId": "subsocial",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://para.f3joule.space",
"name": "Subsocial node"
},
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -6281,6 +6175,69 @@
"defaultBlockTime": 12000
}
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"staking": [
"aleph-zero",
"nomination-pools"
],
"priceId": "aleph-zero",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg",
"buyProviders": {
"transak": {
"network": "ALEPHZERO"
},
"banxa": {
"coinType": "AZERO",
"blockchain": "AZERO"
}
}
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
],
"staking": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 42,
"additional": {
"themeColor": "#10B6B1",
"stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/aleph-zero-azero-staking",
"defaultBlockTime": 1000
},
"options": [
"fullSyncByDefault"
]
},
{
"chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -8292,44 +8249,48 @@
]
},
{
"chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66",
"name": "3DPass",
"chainId": "eip155:2109",
"name": "Exosama",
"assets": [
{
"assetId": 0,
"symbol": "P3D",
"precision": 12,
"priceId": "3dpass",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/P3D.svg"
"symbol": "SAMA",
"priceId": "exosama-network",
"type": "evmNative",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://rpc.3dpscan.io",
"name": "3DPass node"
},
{
"url": "wss://rpc2.3dpass.org",
"name": "3DPass node"
"url": "wss://rpc.exosama.com",
"name": "Exosama node"
}
],
"explorers": [
{
"name": "3DPass explorer",
"extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}",
"account": "https://explorer.3dpass.org/account/{address}"
"name": "Exosama explorer",
"extrinsic": "https://explorer.exosama.com/tx/{hash}",
"account": "https://explorer.exosama.com/address/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-3dpass"
"type": "etherscan",
"url": "https://explorer.exosama.com/api",
"parameters": {
"assetType": "evm"
}
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg",
"addressPrefix": 71
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg",
"addressPrefix": 2109,
"options": [
"ethereumBased",
"noSubstrateRuntime"
]
},
{
"chainId": "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee",
@@ -8426,6 +8387,64 @@
"ethereumBased"
]
},
{
"chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Crab",
"assets": [
{
"assetId": 0,
"symbol": "CRAB",
"precision": 18,
"priceId": "darwinia-network-native-token",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg"
},
{
"assetId": 1,
"symbol": "CKTON",
"precision": 18,
"type": "statemine",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CKTON.svg",
"typeExtras": {
"assetId": "1026"
}
}
],
"nodes": [
{
"url": "wss://crab-rpc.darwinia.network/",
"name": "Darwinia node"
},
{
"url": "wss://darwiniacrab-rpc.dwellir.com",
"name": "Dwellir node"
},
{
"url": "wss://crab-rpc.darwiniacommunitydao.xyz",
"name": "Community node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://crab.subscan.io/extrinsic/{hash}",
"account": "https://crab.subscan.io/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-darwinia"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg",
"addressPrefix": 42,
"options": [
"ethereumBased"
]
},
{
"chainId": "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -9628,27 +9647,6 @@
"feeViaRuntimeCall": true
}
},
{
"chainId": "31a7d8914fb31c249b972f18c115f1e22b4b039abbcb03c73b6774c5642f9efe",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
"name": "InvArch",
"assets": [
{
"assetId": 0,
"symbol": "VARCH",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/VARCH.svg"
}
],
"nodes": [
{
"url": "wss://invarch-rpc.dwellir.com",
"name": "Dwellir node"
}
],
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/InvArch.svg",
"addressPrefix": 117
},
{
"chainId": "8b404e7ed8789d813982b9cb4c8b664c05b3fbf433309f603af014ec9ce56a8c",
"name": "Crust",
+167 -183
View File
@@ -3200,62 +3200,6 @@
"defaultBlockTime": 12000
}
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
},
{
"url": "wss://asia-ws-quartz.unique.network",
"name": "Unique Asia node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}"
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg",
"addressPrefix": 255,
"additional": {
"feeViaRuntimeCall": true
}
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -4715,46 +4659,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litmus.svg",
"addressPrefix": 131
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"priceId": "subsocial",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://para.f3joule.space",
"name": "Subsocial node"
},
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -5929,6 +5833,71 @@
"defaultBlockTime": 12000
}
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"priceId": "aleph-zero",
"staking": [
"aleph-zero",
"nomination-pools"
],
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg",
"buyProviders": {
"transak": {
"network": "ALEPHZERO"
},
"banxa": {
"coinType": "AZERO",
"blockchain": "AZERO"
}
}
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
],
"staking": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 42,
"additional": {
"themeColor": "#10B6B1",
"stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/aleph-zero-azero-staking",
"defaultBlockTime": 1000,
"feeViaRuntimeCall": true
},
"options": [
"fullSyncByDefault",
"pushSupport"
]
},
{
"chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -7358,6 +7327,50 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hashed.svg",
"addressPrefix": 42
},
{
"chainId": "eip155:2109",
"name": "Exosama",
"assets": [
{
"assetId": 0,
"symbol": "SAMA",
"priceId": "exosama-network",
"type": "evmNative",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://rpc.exosama.com",
"name": "Exosama node"
}
],
"explorers": [
{
"name": "Exosama explorer",
"extrinsic": "https://explorer.exosama.com/tx/{hash}",
"account": "https://explorer.exosama.com/address/{address}"
}
],
"externalApi": {
"history": [
{
"type": "etherscan",
"url": "https://explorer.exosama.com/api",
"parameters": {
"assetType": "evm"
}
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg",
"addressPrefix": 2109,
"options": [
"ethereumBased",
"noSubstrateRuntime"
]
},
{
"chainId": "2f0555cc76fc2840a25a6ea3b9637146806f1f44b090c175ffde2a7e5ab36c03",
"name": "Bittensor",
@@ -7493,46 +7506,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ajuna.svg",
"addressPrefix": 1328
},
{
"chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66",
"name": "3DPass",
"assets": [
{
"assetId": 0,
"symbol": "P3D",
"precision": 12,
"priceId": "3dpass",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/P3D.svg"
}
],
"nodes": [
{
"url": "wss://rpc.3dpscan.io",
"name": "3DPass node"
},
{
"url": "wss://rpc2.3dpass.org",
"name": "3DPass node"
}
],
"explorers": [
{
"name": "3DPass explorer",
"extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}",
"account": "https://explorer.3dpass.org/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-3dpass"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg",
"addressPrefix": 71
},
{
"chainId": "f0b8924b12e8108550d28870bc03f7b45a947e1b2b9abf81bfb0b89ecb60570e",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -7583,6 +7556,64 @@
"ethereumBased"
]
},
{
"chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Crab",
"assets": [
{
"assetId": 0,
"symbol": "CRAB",
"precision": 18,
"priceId": "darwinia-network-native-token",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg"
},
{
"assetId": 1,
"symbol": "CKTON",
"precision": 18,
"type": "statemine",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CKTON.svg",
"typeExtras": {
"assetId": "1026"
}
}
],
"nodes": [
{
"url": "wss://crab-rpc.darwinia.network/",
"name": "Darwinia node"
},
{
"url": "wss://darwiniacrab-rpc.dwellir.com",
"name": "Dwellir node"
},
{
"url": "wss://crab-rpc.darwiniacommunitydao.xyz",
"name": "Community node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://crab.subscan.io/extrinsic/{hash}",
"account": "https://crab.subscan.io/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-darwinia"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg",
"addressPrefix": 42,
"options": [
"ethereumBased"
]
},
{
"chainId": "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -8028,27 +8059,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Energy_Web_X.svg",
"addressPrefix": 42
},
{
"chainId": "31a7d8914fb31c249b972f18c115f1e22b4b039abbcb03c73b6774c5642f9efe",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
"name": "InvArch",
"assets": [
{
"assetId": 0,
"symbol": "VARCH",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/VARCH.svg"
}
],
"nodes": [
{
"url": "wss://invarch-rpc.dwellir.com",
"name": "Dwellir node"
}
],
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/InvArch.svg",
"addressPrefix": 117
},
{
"chainId": "7eb9354488318e7549c722669dcbdcdc526f1fef1420e7944667212f3601fdbd",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -8281,32 +8291,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Enjin.svg",
"addressPrefix": 2135
},
{
"chainId": "1d73b9f5dc392744e0dee00a6d6254fcfa2305386cceba60315894fa4807053a",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Curio",
"assets": [
{
"assetId": 0,
"symbol": "CGT",
"precision": 18,
"priceId": "curio-governance",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CGT.svg"
}
],
"nodes": [
{
"url": "wss://archive.parachain.curioinvest.com",
"name": "Curio node"
},
{
"url": "wss://parachain.curioinvest.com/",
"name": "Curio node 2"
}
],
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Curio.svg",
"addressPrefix": 777
},
{
"chainId": "f6ee56e9c5277df5b4ce6ae9983ee88f3cbed27d31beeb98f9f84f997a1ab0b9",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
+167 -183
View File
@@ -3200,62 +3200,6 @@
"defaultBlockTime": 12000
}
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
},
{
"url": "wss://asia-ws-quartz.unique.network",
"name": "Unique Asia node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}"
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg",
"addressPrefix": 255,
"additional": {
"feeViaRuntimeCall": true
}
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -4715,46 +4659,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litmus.svg",
"addressPrefix": 131
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"priceId": "subsocial",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://para.f3joule.space",
"name": "Subsocial node"
},
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -5929,6 +5833,71 @@
"defaultBlockTime": 12000
}
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"priceId": "aleph-zero",
"staking": [
"aleph-zero",
"nomination-pools"
],
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg",
"buyProviders": {
"transak": {
"network": "ALEPHZERO"
},
"banxa": {
"coinType": "AZERO",
"blockchain": "AZERO"
}
}
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
],
"staking": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 42,
"additional": {
"themeColor": "#10B6B1",
"stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/aleph-zero-azero-staking",
"defaultBlockTime": 1000,
"feeViaRuntimeCall": true
},
"options": [
"fullSyncByDefault",
"pushSupport"
]
},
{
"chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -7358,6 +7327,50 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hashed.svg",
"addressPrefix": 42
},
{
"chainId": "eip155:2109",
"name": "Exosama",
"assets": [
{
"assetId": 0,
"symbol": "SAMA",
"priceId": "exosama-network",
"type": "evmNative",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://rpc.exosama.com",
"name": "Exosama node"
}
],
"explorers": [
{
"name": "Exosama explorer",
"extrinsic": "https://explorer.exosama.com/tx/{hash}",
"account": "https://explorer.exosama.com/address/{address}"
}
],
"externalApi": {
"history": [
{
"type": "etherscan",
"url": "https://explorer.exosama.com/api",
"parameters": {
"assetType": "evm"
}
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg",
"addressPrefix": 2109,
"options": [
"ethereumBased",
"noSubstrateRuntime"
]
},
{
"chainId": "2f0555cc76fc2840a25a6ea3b9637146806f1f44b090c175ffde2a7e5ab36c03",
"name": "Bittensor",
@@ -7493,46 +7506,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ajuna.svg",
"addressPrefix": 1328
},
{
"chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66",
"name": "3DPass",
"assets": [
{
"assetId": 0,
"symbol": "P3D",
"precision": 12,
"priceId": "3dpass",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/P3D.svg"
}
],
"nodes": [
{
"url": "wss://rpc.3dpscan.io",
"name": "3DPass node"
},
{
"url": "wss://rpc2.3dpass.org",
"name": "3DPass node"
}
],
"explorers": [
{
"name": "3DPass explorer",
"extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}",
"account": "https://explorer.3dpass.org/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-3dpass"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg",
"addressPrefix": 71
},
{
"chainId": "f0b8924b12e8108550d28870bc03f7b45a947e1b2b9abf81bfb0b89ecb60570e",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -7583,6 +7556,64 @@
"ethereumBased"
]
},
{
"chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Crab",
"assets": [
{
"assetId": 0,
"symbol": "CRAB",
"precision": 18,
"priceId": "darwinia-network-native-token",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg"
},
{
"assetId": 1,
"symbol": "CKTON",
"precision": 18,
"type": "statemine",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CKTON.svg",
"typeExtras": {
"assetId": "1026"
}
}
],
"nodes": [
{
"url": "wss://crab-rpc.darwinia.network/",
"name": "Darwinia node"
},
{
"url": "wss://darwiniacrab-rpc.dwellir.com",
"name": "Dwellir node"
},
{
"url": "wss://crab-rpc.darwiniacommunitydao.xyz",
"name": "Community node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://crab.subscan.io/extrinsic/{hash}",
"account": "https://crab.subscan.io/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-darwinia"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg",
"addressPrefix": 42,
"options": [
"ethereumBased"
]
},
{
"chainId": "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -8028,27 +8059,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Energy_Web_X.svg",
"addressPrefix": 42
},
{
"chainId": "31a7d8914fb31c249b972f18c115f1e22b4b039abbcb03c73b6774c5642f9efe",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
"name": "InvArch",
"assets": [
{
"assetId": 0,
"symbol": "VARCH",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/VARCH.svg"
}
],
"nodes": [
{
"url": "wss://invarch-rpc.dwellir.com",
"name": "Dwellir node"
}
],
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/InvArch.svg",
"addressPrefix": 117
},
{
"chainId": "7eb9354488318e7549c722669dcbdcdc526f1fef1420e7944667212f3601fdbd",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -8281,32 +8291,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Enjin.svg",
"addressPrefix": 2135
},
{
"chainId": "1d73b9f5dc392744e0dee00a6d6254fcfa2305386cceba60315894fa4807053a",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Curio",
"assets": [
{
"assetId": 0,
"symbol": "CGT",
"precision": 18,
"priceId": "curio-governance",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CGT.svg"
}
],
"nodes": [
{
"url": "wss://archive.parachain.curioinvest.com",
"name": "Curio node"
},
{
"url": "wss://parachain.curioinvest.com/",
"name": "Curio node 2"
}
],
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Curio.svg",
"addressPrefix": 777
},
{
"chainId": "f6ee56e9c5277df5b4ce6ae9983ee88f3cbed27d31beeb98f9f84f997a1ab0b9",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
+145 -170
View File
@@ -3218,62 +3218,6 @@
"defaultBlockTime": 12000
}
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
},
{
"url": "wss://asia-ws-quartz.unique.network",
"name": "Unique Asia node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}"
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg",
"addressPrefix": 255,
"additional": {
"feeViaRuntimeCall": true
}
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -5190,46 +5134,6 @@
"governance-v1"
]
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"priceId": "subsocial",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://para.f3joule.space",
"name": "Subsocial node"
},
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -6462,6 +6366,70 @@
"defaultBlockTime": 12000
}
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"staking": [
"aleph-zero",
"nomination-pools"
],
"priceId": "aleph-zero",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg",
"buyProviders": {
"transak": {
"network": "ALEPHZERO"
},
"banxa": {
"coinType": "AZERO",
"blockchain": "AZERO"
}
}
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
],
"staking": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 42,
"additional": {
"themeColor": "#10B6B1",
"stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/aleph-zero-azero-staking",
"defaultBlockTime": 1000
},
"options": [
"fullSyncByDefault",
"pushSupport"
]
},
{
"chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -8755,44 +8723,48 @@
]
},
{
"chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66",
"name": "3DPass",
"chainId": "eip155:2109",
"name": "Exosama",
"assets": [
{
"assetId": 0,
"symbol": "P3D",
"precision": 12,
"priceId": "3dpass",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/P3D.svg"
"symbol": "SAMA",
"priceId": "exosama-network",
"type": "evmNative",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://rpc.3dpscan.io",
"name": "3DPass node"
},
{
"url": "wss://rpc2.3dpass.org",
"name": "3DPass node"
"url": "wss://rpc.exosama.com",
"name": "Exosama node"
}
],
"explorers": [
{
"name": "3DPass explorer",
"extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}",
"account": "https://explorer.3dpass.org/account/{address}"
"name": "Exosama explorer",
"extrinsic": "https://explorer.exosama.com/tx/{hash}",
"account": "https://explorer.exosama.com/address/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-3dpass"
"type": "etherscan",
"url": "https://explorer.exosama.com/api",
"parameters": {
"assetType": "evm"
}
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg",
"addressPrefix": 71
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg",
"addressPrefix": 2109,
"options": [
"ethereumBased",
"noSubstrateRuntime"
]
},
{
"chainId": "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee",
@@ -8889,6 +8861,64 @@
"ethereumBased"
]
},
{
"chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Crab",
"assets": [
{
"assetId": 0,
"symbol": "CRAB",
"precision": 18,
"priceId": "darwinia-network-native-token",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg"
},
{
"assetId": 1,
"symbol": "CKTON",
"precision": 18,
"type": "statemine",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CKTON.svg",
"typeExtras": {
"assetId": "1026"
}
}
],
"nodes": [
{
"url": "wss://crab-rpc.darwinia.network/",
"name": "Darwinia node"
},
{
"url": "wss://darwiniacrab-rpc.dwellir.com",
"name": "Dwellir node"
},
{
"url": "wss://crab-rpc.darwiniacommunitydao.xyz",
"name": "Community node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://crab.subscan.io/extrinsic/{hash}",
"account": "https://crab.subscan.io/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-darwinia"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg",
"addressPrefix": 42,
"options": [
"ethereumBased"
]
},
{
"chainId": "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -10159,35 +10189,6 @@
"feeViaRuntimeCall": true
}
},
{
"chainId": "31a7d8914fb31c249b972f18c115f1e22b4b039abbcb03c73b6774c5642f9efe",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
"name": "InvArch",
"assets": [
{
"assetId": 0,
"symbol": "VARCH",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/VARCH.svg"
}
],
"nodes": [
{
"url": "wss://invarch-rpc.dwellir.com",
"name": "Dwellir node"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---invarch"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/InvArch.svg",
"addressPrefix": 117
},
{
"chainId": "8b404e7ed8789d813982b9cb4c8b664c05b3fbf433309f603af014ec9ce56a8c",
"name": "Crust",
@@ -10417,32 +10418,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Enjin.svg",
"addressPrefix": 2135
},
{
"chainId": "1d73b9f5dc392744e0dee00a6d6254fcfa2305386cceba60315894fa4807053a",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Curio",
"assets": [
{
"assetId": 0,
"symbol": "CGT",
"precision": 18,
"priceId": "curio-governance",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CGT.svg"
}
],
"nodes": [
{
"url": "wss://archive.parachain.curioinvest.com",
"name": "Curio node"
},
{
"url": "wss://parachain.curioinvest.com/",
"name": "Curio node 2"
}
],
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Curio.svg",
"addressPrefix": 777
},
{
"chainId": "d3d2f3a3495dc597434a99d7d449ebad6616db45e4e4f178f31cc6fa14378b70",
"name": "Avail Turing Testnet",
+167 -183
View File
@@ -3200,62 +3200,6 @@
"defaultBlockTime": 12000
}
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
},
{
"url": "wss://asia-ws-quartz.unique.network",
"name": "Unique Asia node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}"
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg",
"addressPrefix": 255,
"additional": {
"feeViaRuntimeCall": true
}
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -4716,46 +4660,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litmus.svg",
"addressPrefix": 131
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"priceId": "subsocial",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://para.f3joule.space",
"name": "Subsocial node"
},
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -5931,6 +5835,71 @@
"defaultBlockTime": 12000
}
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"priceId": "aleph-zero",
"staking": [
"aleph-zero",
"nomination-pools"
],
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg",
"buyProviders": {
"transak": {
"network": "ALEPHZERO"
},
"banxa": {
"coinType": "AZERO",
"blockchain": "AZERO"
}
}
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
],
"staking": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 42,
"additional": {
"themeColor": "#10B6B1",
"stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/aleph-zero-azero-staking",
"defaultBlockTime": 1000,
"feeViaRuntimeCall": true
},
"options": [
"fullSyncByDefault",
"pushSupport"
]
},
{
"chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -7361,6 +7330,50 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hashed.svg",
"addressPrefix": 42
},
{
"chainId": "eip155:2109",
"name": "Exosama",
"assets": [
{
"assetId": 0,
"symbol": "SAMA",
"priceId": "exosama-network",
"type": "evmNative",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://rpc.exosama.com",
"name": "Exosama node"
}
],
"explorers": [
{
"name": "Exosama explorer",
"extrinsic": "https://explorer.exosama.com/tx/{hash}",
"account": "https://explorer.exosama.com/address/{address}"
}
],
"externalApi": {
"history": [
{
"type": "etherscan",
"url": "https://explorer.exosama.com/api",
"parameters": {
"assetType": "evm"
}
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg",
"addressPrefix": 2109,
"options": [
"ethereumBased",
"noSubstrateRuntime"
]
},
{
"chainId": "2f0555cc76fc2840a25a6ea3b9637146806f1f44b090c175ffde2a7e5ab36c03",
"name": "Bittensor",
@@ -7496,46 +7509,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ajuna.svg",
"addressPrefix": 1328
},
{
"chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66",
"name": "3DPass",
"assets": [
{
"assetId": 0,
"symbol": "P3D",
"precision": 12,
"priceId": "3dpass",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/P3D.svg"
}
],
"nodes": [
{
"url": "wss://rpc.3dpscan.io",
"name": "3DPass node"
},
{
"url": "wss://rpc2.3dpass.org",
"name": "3DPass node"
}
],
"explorers": [
{
"name": "3DPass explorer",
"extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}",
"account": "https://explorer.3dpass.org/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-3dpass"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg",
"addressPrefix": 71
},
{
"chainId": "f0b8924b12e8108550d28870bc03f7b45a947e1b2b9abf81bfb0b89ecb60570e",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -7586,6 +7559,64 @@
"ethereumBased"
]
},
{
"chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Crab",
"assets": [
{
"assetId": 0,
"symbol": "CRAB",
"precision": 18,
"priceId": "darwinia-network-native-token",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg"
},
{
"assetId": 1,
"symbol": "CKTON",
"precision": 18,
"type": "statemine",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CKTON.svg",
"typeExtras": {
"assetId": "1026"
}
}
],
"nodes": [
{
"url": "wss://crab-rpc.darwinia.network/",
"name": "Darwinia node"
},
{
"url": "wss://darwiniacrab-rpc.dwellir.com",
"name": "Dwellir node"
},
{
"url": "wss://crab-rpc.darwiniacommunitydao.xyz",
"name": "Community node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://crab.subscan.io/extrinsic/{hash}",
"account": "https://crab.subscan.io/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-darwinia"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg",
"addressPrefix": 42,
"options": [
"ethereumBased"
]
},
{
"chainId": "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -8039,27 +8070,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Energy_Web_X.svg",
"addressPrefix": 42
},
{
"chainId": "31a7d8914fb31c249b972f18c115f1e22b4b039abbcb03c73b6774c5642f9efe",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
"name": "InvArch",
"assets": [
{
"assetId": 0,
"symbol": "VARCH",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/VARCH.svg"
}
],
"nodes": [
{
"url": "wss://invarch-rpc.dwellir.com",
"name": "Dwellir node"
}
],
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/InvArch.svg",
"addressPrefix": 117
},
{
"chainId": "7eb9354488318e7549c722669dcbdcdc526f1fef1420e7944667212f3601fdbd",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -8292,32 +8302,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Enjin.svg",
"addressPrefix": 2135
},
{
"chainId": "1d73b9f5dc392744e0dee00a6d6254fcfa2305386cceba60315894fa4807053a",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Curio",
"assets": [
{
"assetId": 0,
"symbol": "CGT",
"precision": 18,
"priceId": "curio-governance",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CGT.svg"
}
],
"nodes": [
{
"url": "wss://archive.parachain.curioinvest.com",
"name": "Curio node"
},
{
"url": "wss://parachain.curioinvest.com/",
"name": "Curio node 2"
}
],
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Curio.svg",
"addressPrefix": 777
},
{
"chainId": "f6ee56e9c5277df5b4ce6ae9983ee88f3cbed27d31beeb98f9f84f997a1ab0b9",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
+167 -183
View File
@@ -3200,62 +3200,6 @@
"defaultBlockTime": 12000
}
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
},
{
"url": "wss://asia-ws-quartz.unique.network",
"name": "Unique Asia node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}"
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg",
"addressPrefix": 255,
"additional": {
"feeViaRuntimeCall": true
}
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -4716,46 +4660,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litmus.svg",
"addressPrefix": 131
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"priceId": "subsocial",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://para.f3joule.space",
"name": "Subsocial node"
},
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -5931,6 +5835,71 @@
"defaultBlockTime": 12000
}
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"priceId": "aleph-zero",
"staking": [
"aleph-zero",
"nomination-pools"
],
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg",
"buyProviders": {
"transak": {
"network": "ALEPHZERO"
},
"banxa": {
"coinType": "AZERO",
"blockchain": "AZERO"
}
}
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
],
"staking": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 42,
"additional": {
"themeColor": "#10B6B1",
"stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/aleph-zero-azero-staking",
"defaultBlockTime": 1000,
"feeViaRuntimeCall": true
},
"options": [
"fullSyncByDefault",
"pushSupport"
]
},
{
"chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -7361,6 +7330,50 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hashed.svg",
"addressPrefix": 42
},
{
"chainId": "eip155:2109",
"name": "Exosama",
"assets": [
{
"assetId": 0,
"symbol": "SAMA",
"priceId": "exosama-network",
"type": "evmNative",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://rpc.exosama.com",
"name": "Exosama node"
}
],
"explorers": [
{
"name": "Exosama explorer",
"extrinsic": "https://explorer.exosama.com/tx/{hash}",
"account": "https://explorer.exosama.com/address/{address}"
}
],
"externalApi": {
"history": [
{
"type": "etherscan",
"url": "https://explorer.exosama.com/api",
"parameters": {
"assetType": "evm"
}
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg",
"addressPrefix": 2109,
"options": [
"ethereumBased",
"noSubstrateRuntime"
]
},
{
"chainId": "2f0555cc76fc2840a25a6ea3b9637146806f1f44b090c175ffde2a7e5ab36c03",
"name": "Bittensor",
@@ -7496,46 +7509,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ajuna.svg",
"addressPrefix": 1328
},
{
"chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66",
"name": "3DPass",
"assets": [
{
"assetId": 0,
"symbol": "P3D",
"precision": 12,
"priceId": "3dpass",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/P3D.svg"
}
],
"nodes": [
{
"url": "wss://rpc.3dpscan.io",
"name": "3DPass node"
},
{
"url": "wss://rpc2.3dpass.org",
"name": "3DPass node"
}
],
"explorers": [
{
"name": "3DPass explorer",
"extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}",
"account": "https://explorer.3dpass.org/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-3dpass"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg",
"addressPrefix": 71
},
{
"chainId": "f0b8924b12e8108550d28870bc03f7b45a947e1b2b9abf81bfb0b89ecb60570e",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -7586,6 +7559,64 @@
"ethereumBased"
]
},
{
"chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Crab",
"assets": [
{
"assetId": 0,
"symbol": "CRAB",
"precision": 18,
"priceId": "darwinia-network-native-token",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg"
},
{
"assetId": 1,
"symbol": "CKTON",
"precision": 18,
"type": "statemine",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CKTON.svg",
"typeExtras": {
"assetId": "1026"
}
}
],
"nodes": [
{
"url": "wss://crab-rpc.darwinia.network/",
"name": "Darwinia node"
},
{
"url": "wss://darwiniacrab-rpc.dwellir.com",
"name": "Dwellir node"
},
{
"url": "wss://crab-rpc.darwiniacommunitydao.xyz",
"name": "Community node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://crab.subscan.io/extrinsic/{hash}",
"account": "https://crab.subscan.io/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-darwinia"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg",
"addressPrefix": 42,
"options": [
"ethereumBased"
]
},
{
"chainId": "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -8039,27 +8070,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Energy_Web_X.svg",
"addressPrefix": 42
},
{
"chainId": "31a7d8914fb31c249b972f18c115f1e22b4b039abbcb03c73b6774c5642f9efe",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
"name": "InvArch",
"assets": [
{
"assetId": 0,
"symbol": "VARCH",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/VARCH.svg"
}
],
"nodes": [
{
"url": "wss://invarch-rpc.dwellir.com",
"name": "Dwellir node"
}
],
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/InvArch.svg",
"addressPrefix": 117
},
{
"chainId": "7eb9354488318e7549c722669dcbdcdc526f1fef1420e7944667212f3601fdbd",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -8292,32 +8302,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Enjin.svg",
"addressPrefix": 2135
},
{
"chainId": "1d73b9f5dc392744e0dee00a6d6254fcfa2305386cceba60315894fa4807053a",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Curio",
"assets": [
{
"assetId": 0,
"symbol": "CGT",
"precision": 18,
"priceId": "curio-governance",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CGT.svg"
}
],
"nodes": [
{
"url": "wss://archive.parachain.curioinvest.com",
"name": "Curio node"
},
{
"url": "wss://parachain.curioinvest.com/",
"name": "Curio node 2"
}
],
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Curio.svg",
"addressPrefix": 777
},
{
"chainId": "f6ee56e9c5277df5b4ce6ae9983ee88f3cbed27d31beeb98f9f84f997a1ab0b9",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
+145 -170
View File
@@ -3218,62 +3218,6 @@
"defaultBlockTime": 12000
}
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
},
{
"url": "wss://asia-ws-quartz.unique.network",
"name": "Unique Asia node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}"
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg",
"addressPrefix": 255,
"additional": {
"feeViaRuntimeCall": true
}
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -5191,46 +5135,6 @@
"governance-v1"
]
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"priceId": "subsocial",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://para.f3joule.space",
"name": "Subsocial node"
},
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -6464,6 +6368,70 @@
"defaultBlockTime": 12000
}
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"staking": [
"aleph-zero",
"nomination-pools"
],
"priceId": "aleph-zero",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg",
"buyProviders": {
"transak": {
"network": "ALEPHZERO"
},
"banxa": {
"coinType": "AZERO",
"blockchain": "AZERO"
}
}
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
],
"staking": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 42,
"additional": {
"themeColor": "#10B6B1",
"stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/aleph-zero-azero-staking",
"defaultBlockTime": 1000
},
"options": [
"fullSyncByDefault",
"pushSupport"
]
},
{
"chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -8758,44 +8726,48 @@
]
},
{
"chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66",
"name": "3DPass",
"chainId": "eip155:2109",
"name": "Exosama",
"assets": [
{
"assetId": 0,
"symbol": "P3D",
"precision": 12,
"priceId": "3dpass",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/P3D.svg"
"symbol": "SAMA",
"priceId": "exosama-network",
"type": "evmNative",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://rpc.3dpscan.io",
"name": "3DPass node"
},
{
"url": "wss://rpc2.3dpass.org",
"name": "3DPass node"
"url": "wss://rpc.exosama.com",
"name": "Exosama node"
}
],
"explorers": [
{
"name": "3DPass explorer",
"extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}",
"account": "https://explorer.3dpass.org/account/{address}"
"name": "Exosama explorer",
"extrinsic": "https://explorer.exosama.com/tx/{hash}",
"account": "https://explorer.exosama.com/address/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-3dpass"
"type": "etherscan",
"url": "https://explorer.exosama.com/api",
"parameters": {
"assetType": "evm"
}
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg",
"addressPrefix": 71
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg",
"addressPrefix": 2109,
"options": [
"ethereumBased",
"noSubstrateRuntime"
]
},
{
"chainId": "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee",
@@ -8888,6 +8860,64 @@
"ethereumBased"
]
},
{
"chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Crab",
"assets": [
{
"assetId": 0,
"symbol": "CRAB",
"precision": 18,
"priceId": "darwinia-network-native-token",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg"
},
{
"assetId": 1,
"symbol": "CKTON",
"precision": 18,
"type": "statemine",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CKTON.svg",
"typeExtras": {
"assetId": "1026"
}
}
],
"nodes": [
{
"url": "wss://crab-rpc.darwinia.network/",
"name": "Darwinia node"
},
{
"url": "wss://darwiniacrab-rpc.dwellir.com",
"name": "Dwellir node"
},
{
"url": "wss://crab-rpc.darwiniacommunitydao.xyz",
"name": "Community node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://crab.subscan.io/extrinsic/{hash}",
"account": "https://crab.subscan.io/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-darwinia"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg",
"addressPrefix": 42,
"options": [
"ethereumBased"
]
},
{
"chainId": "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -10158,35 +10188,6 @@
"feeViaRuntimeCall": true
}
},
{
"chainId": "31a7d8914fb31c249b972f18c115f1e22b4b039abbcb03c73b6774c5642f9efe",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
"name": "InvArch",
"assets": [
{
"assetId": 0,
"symbol": "VARCH",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/VARCH.svg"
}
],
"nodes": [
{
"url": "wss://invarch-rpc.dwellir.com",
"name": "Dwellir node"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---invarch"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/InvArch.svg",
"addressPrefix": 117
},
{
"chainId": "8b404e7ed8789d813982b9cb4c8b664c05b3fbf433309f603af014ec9ce56a8c",
"name": "Crust",
@@ -10416,32 +10417,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Enjin.svg",
"addressPrefix": 2135
},
{
"chainId": "1d73b9f5dc392744e0dee00a6d6254fcfa2305386cceba60315894fa4807053a",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Curio",
"assets": [
{
"assetId": 0,
"symbol": "CGT",
"precision": 18,
"priceId": "curio-governance",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CGT.svg"
}
],
"nodes": [
{
"url": "wss://archive.parachain.curioinvest.com",
"name": "Curio node"
},
{
"url": "wss://parachain.curioinvest.com/",
"name": "Curio node 2"
}
],
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Curio.svg",
"addressPrefix": 777
},
{
"chainId": "d3d2f3a3495dc597434a99d7d449ebad6616db45e4e4f178f31cc6fa14378b70",
"name": "Avail Turing Testnet",
-90
View File
@@ -1723,58 +1723,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg",
"addressPrefix": 78
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json",
"overridesCommon": true
},
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}",
"event": null
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
}
],
"externalApi": {
"history": {
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz"
}
},
"color": "linear-gradient(315deg, #CB2E41 0%, #ED5B6D 100%)",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"addressPrefix": 255
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -2478,44 +2426,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg",
"addressPrefix": 42
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial Parachain",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 11,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json",
"overridesCommon": true
},
"externalApi": {
"history": {
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial"
}
},
"color": "linear-gradient(315deg, #0C0011 0%, #681391 75%, #3F3F3F 75.01%)",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
-90
View File
@@ -1723,58 +1723,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg",
"addressPrefix": 78
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json",
"overridesCommon": true
},
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}",
"event": null
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
}
],
"externalApi": {
"history": {
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz"
}
},
"color": "linear-gradient(315deg, #CB2E41 0%, #ED5B6D 100%)",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"addressPrefix": 255
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -2478,44 +2426,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg",
"addressPrefix": 42
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial Parachain",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 11,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json",
"overridesCommon": true
},
"externalApi": {
"history": {
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial"
}
},
"color": "linear-gradient(315deg, #0C0011 0%, #681391 75%, #3F3F3F 75.01%)",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
-90
View File
@@ -1996,58 +1996,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg",
"addressPrefix": 78
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json",
"overridesCommon": true
},
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}",
"event": null
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
}
],
"externalApi": {
"history": {
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz__bm92Y"
}
},
"color": "linear-gradient(315deg, #CB2E41 0%, #ED5B6D 100%)",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"addressPrefix": 255
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -2746,44 +2694,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg",
"addressPrefix": 42
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial Parachain",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 11,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json",
"overridesCommon": true
},
"externalApi": {
"history": {
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial__bm92Y"
}
},
"color": "linear-gradient(315deg, #0C0011 0%, #681391 75%, #3F3F3F 75.01%)",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
+163 -207
View File
@@ -3230,62 +3230,6 @@
"defaultBlockTime": 12000
}
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
},
{
"url": "wss://asia-ws-quartz.unique.network",
"name": "Unique Asia node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}"
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://gateway.subquery.network/query/0x3e"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg",
"addressPrefix": 255,
"additional": {
"feeViaRuntimeCall": true
}
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -4785,50 +4729,6 @@
"stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/zeitgeist-ztg-staking"
}
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"priceId": "subsocial",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://subsocial-rpc.dwellir.com",
"name": "Dwellir node"
},
{
"url": "wss://para.f3joule.space",
"name": "Subsocial node"
},
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://gateway.subquery.network/query/0x34"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -6120,6 +6020,71 @@
"defaultBlockTime": 12000
}
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"priceId": "aleph-zero",
"staking": [
"aleph-zero",
"nomination-pools"
],
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg",
"buyProviders": {
"transak": {
"network": "ALEPHZERO"
},
"banxa": {
"coinType": "AZERO",
"blockchain": "AZERO"
}
}
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://gateway.subquery.network/query/0x1c"
}
],
"staking": [
{
"type": "subquery",
"url": "https://gateway.subquery.network/query/0x1c"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 42,
"additional": {
"themeColor": "#10B6B1",
"stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/aleph-zero-azero-staking",
"defaultBlockTime": 1000,
"feeViaRuntimeCall": true
},
"options": [
"fullSyncByDefault",
"pushSupport"
]
},
{
"chainId": "3920bcb4960a1eef5580cd5367ff3f430eef052774f78468852f7b9cb39f8a3c",
"name": "Polkadex",
@@ -7677,6 +7642,50 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hashed.svg",
"addressPrefix": 42
},
{
"chainId": "eip155:2109",
"name": "Exosama",
"assets": [
{
"assetId": 0,
"symbol": "SAMA",
"priceId": "exosama-network",
"type": "evmNative",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://rpc.exosama.com",
"name": "Exosama node"
}
],
"explorers": [
{
"name": "Exosama explorer",
"extrinsic": "https://explorer.exosama.com/tx/{hash}",
"account": "https://explorer.exosama.com/address/{address}"
}
],
"externalApi": {
"history": [
{
"type": "etherscan",
"url": "https://explorer.exosama.com/api",
"parameters": {
"assetType": "evm"
}
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg",
"addressPrefix": 2109,
"options": [
"ethereumBased",
"noSubstrateRuntime"
]
},
{
"chainId": "2f0555cc76fc2840a25a6ea3b9637146806f1f44b090c175ffde2a7e5ab36c03",
"name": "Bittensor",
@@ -7830,42 +7839,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ajuna.svg",
"addressPrefix": 1328
},
{
"chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66",
"name": "3DPass",
"assets": [
{
"assetId": 0,
"symbol": "P3D",
"precision": 12,
"priceId": "3dpass",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/P3D.svg"
}
],
"nodes": [
{
"url": "wss://rpc.3dpscan.io",
"name": "3DPass node"
}
],
"explorers": [
{
"name": "3DPass explorer",
"extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}",
"account": "https://explorer.3dpass.org/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-3dpass"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg",
"addressPrefix": 71
},
{
"chainId": "f0b8924b12e8108550d28870bc03f7b45a947e1b2b9abf81bfb0b89ecb60570e",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -7916,6 +7889,60 @@
"ethereumBased"
]
},
{
"chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Crab",
"assets": [
{
"assetId": 0,
"symbol": "CRAB",
"precision": 18,
"priceId": "darwinia-network-native-token",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg"
},
{
"assetId": 1,
"symbol": "CKTON",
"precision": 18,
"type": "statemine",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CKTON.svg",
"typeExtras": {
"assetId": "1026"
}
}
],
"nodes": [
{
"url": "wss://crab-rpc.darwinia.network/",
"name": "Darwinia node"
},
{
"url": "wss://darwiniacrab-rpc.dwellir.com",
"name": "Dwellir node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://crab.subscan.io/extrinsic/{hash}",
"account": "https://crab.subscan.io/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-darwinia"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg",
"addressPrefix": 42,
"options": [
"ethereumBased"
]
},
{
"chainId": "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -8439,43 +8466,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Energy_Web_X.svg",
"addressPrefix": 42
},
{
"chainId": "31a7d8914fb31c249b972f18c115f1e22b4b039abbcb03c73b6774c5642f9efe",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
"name": "InvArch",
"assets": [
{
"assetId": 0,
"symbol": "VARCH",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/VARCH.svg"
}
],
"nodes": [
{
"url": "wss://invarch-rpc.dwellir.com",
"name": "Dwellir node"
}
],
"explorers": [
{
"name": "Statescan",
"account": "https://invarch.statescan.io/#/accounts/{address}",
"event": "https://invarch.statescan.io/#/events/{event}",
"extrinsic": "https://invarch.statescan.io/#/extrinsics/{hash}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---invarch"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/InvArch.svg",
"addressPrefix": 117
},
{
"chainId": "7eb9354488318e7549c722669dcbdcdc526f1fef1420e7944667212f3601fdbd",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -8773,40 +8763,6 @@
"disabledCheckMetadataHash": true
}
},
{
"chainId": "1d73b9f5dc392744e0dee00a6d6254fcfa2305386cceba60315894fa4807053a",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Curio",
"assets": [
{
"assetId": 0,
"symbol": "CGT",
"precision": 18,
"priceId": "curio-governance",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CGT.svg"
}
],
"nodes": [
{
"url": "wss://archive.parachain.curioinvest.com",
"name": "Curio 1 node"
},
{
"url": "wss://parachain.curioinvest.com/",
"name": "Curio 2 node"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-curio"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Curio.svg",
"addressPrefix": 777
},
{
"chainId": "f6ee56e9c5277df5b4ce6ae9983ee88f3cbed27d31beeb98f9f84f997a1ab0b9",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
+163 -207
View File
@@ -3230,62 +3230,6 @@
"defaultBlockTime": 12000
}
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
},
{
"url": "wss://asia-ws-quartz.unique.network",
"name": "Unique Asia node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}"
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://gateway.subquery.network/query/0x3e"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg",
"addressPrefix": 255,
"additional": {
"feeViaRuntimeCall": true
}
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -4785,50 +4729,6 @@
"stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/zeitgeist-ztg-staking"
}
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"priceId": "subsocial",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://subsocial-rpc.dwellir.com",
"name": "Dwellir node"
},
{
"url": "wss://para.f3joule.space",
"name": "Subsocial node"
},
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://gateway.subquery.network/query/0x34"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -6120,6 +6020,71 @@
"defaultBlockTime": 12000
}
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"priceId": "aleph-zero",
"staking": [
"aleph-zero",
"nomination-pools"
],
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg",
"buyProviders": {
"transak": {
"network": "ALEPHZERO"
},
"banxa": {
"coinType": "AZERO",
"blockchain": "AZERO"
}
}
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://gateway.subquery.network/query/0x1c"
}
],
"staking": [
{
"type": "subquery",
"url": "https://gateway.subquery.network/query/0x1c"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 42,
"additional": {
"themeColor": "#10B6B1",
"stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/aleph-zero-azero-staking",
"defaultBlockTime": 1000,
"feeViaRuntimeCall": true
},
"options": [
"fullSyncByDefault",
"pushSupport"
]
},
{
"chainId": "3920bcb4960a1eef5580cd5367ff3f430eef052774f78468852f7b9cb39f8a3c",
"name": "Polkadex",
@@ -7677,6 +7642,50 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hashed.svg",
"addressPrefix": 42
},
{
"chainId": "eip155:2109",
"name": "Exosama",
"assets": [
{
"assetId": 0,
"symbol": "SAMA",
"priceId": "exosama-network",
"type": "evmNative",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://rpc.exosama.com",
"name": "Exosama node"
}
],
"explorers": [
{
"name": "Exosama explorer",
"extrinsic": "https://explorer.exosama.com/tx/{hash}",
"account": "https://explorer.exosama.com/address/{address}"
}
],
"externalApi": {
"history": [
{
"type": "etherscan",
"url": "https://explorer.exosama.com/api",
"parameters": {
"assetType": "evm"
}
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg",
"addressPrefix": 2109,
"options": [
"ethereumBased",
"noSubstrateRuntime"
]
},
{
"chainId": "2f0555cc76fc2840a25a6ea3b9637146806f1f44b090c175ffde2a7e5ab36c03",
"name": "Bittensor",
@@ -7830,42 +7839,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ajuna.svg",
"addressPrefix": 1328
},
{
"chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66",
"name": "3DPass",
"assets": [
{
"assetId": 0,
"symbol": "P3D",
"precision": 12,
"priceId": "3dpass",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/P3D.svg"
}
],
"nodes": [
{
"url": "wss://rpc.3dpscan.io",
"name": "3DPass node"
}
],
"explorers": [
{
"name": "3DPass explorer",
"extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}",
"account": "https://explorer.3dpass.org/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-3dpass"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg",
"addressPrefix": 71
},
{
"chainId": "f0b8924b12e8108550d28870bc03f7b45a947e1b2b9abf81bfb0b89ecb60570e",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -7916,6 +7889,60 @@
"ethereumBased"
]
},
{
"chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Crab",
"assets": [
{
"assetId": 0,
"symbol": "CRAB",
"precision": 18,
"priceId": "darwinia-network-native-token",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg"
},
{
"assetId": 1,
"symbol": "CKTON",
"precision": 18,
"type": "statemine",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CKTON.svg",
"typeExtras": {
"assetId": "1026"
}
}
],
"nodes": [
{
"url": "wss://crab-rpc.darwinia.network/",
"name": "Darwinia node"
},
{
"url": "wss://darwiniacrab-rpc.dwellir.com",
"name": "Dwellir node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://crab.subscan.io/extrinsic/{hash}",
"account": "https://crab.subscan.io/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-darwinia"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg",
"addressPrefix": 42,
"options": [
"ethereumBased"
]
},
{
"chainId": "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -8439,43 +8466,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Energy_Web_X.svg",
"addressPrefix": 42
},
{
"chainId": "31a7d8914fb31c249b972f18c115f1e22b4b039abbcb03c73b6774c5642f9efe",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
"name": "InvArch",
"assets": [
{
"assetId": 0,
"symbol": "VARCH",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/VARCH.svg"
}
],
"nodes": [
{
"url": "wss://invarch-rpc.dwellir.com",
"name": "Dwellir node"
}
],
"explorers": [
{
"name": "Statescan",
"account": "https://invarch.statescan.io/#/accounts/{address}",
"event": "https://invarch.statescan.io/#/events/{event}",
"extrinsic": "https://invarch.statescan.io/#/extrinsics/{hash}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---invarch"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/InvArch.svg",
"addressPrefix": 117
},
{
"chainId": "7eb9354488318e7549c722669dcbdcdc526f1fef1420e7944667212f3601fdbd",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -8773,40 +8763,6 @@
"disabledCheckMetadataHash": true
}
},
{
"chainId": "1d73b9f5dc392744e0dee00a6d6254fcfa2305386cceba60315894fa4807053a",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Curio",
"assets": [
{
"assetId": 0,
"symbol": "CGT",
"precision": 18,
"priceId": "curio-governance",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CGT.svg"
}
],
"nodes": [
{
"url": "wss://archive.parachain.curioinvest.com",
"name": "Curio 1 node"
},
{
"url": "wss://parachain.curioinvest.com/",
"name": "Curio 2 node"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-curio"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Curio.svg",
"addressPrefix": 777
},
{
"chainId": "f6ee56e9c5277df5b4ce6ae9983ee88f3cbed27d31beeb98f9f84f997a1ab0b9",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
+143 -235
View File
@@ -3326,62 +3326,6 @@
"supportsGenericLedgerApp": true
}
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
},
{
"url": "wss://asia-ws-quartz.unique.network",
"name": "Unique Asia node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}"
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://gateway.subquery.network/query/0x3e"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg",
"addressPrefix": 255,
"additional": {
"feeViaRuntimeCall": true
}
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -5407,50 +5351,6 @@
"stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/zeitgeist-ztg-staking"
}
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"priceId": "subsocial",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://subsocial-rpc.dwellir.com",
"name": "Dwellir node"
},
{
"url": "wss://para.f3joule.space",
"name": "Subsocial node"
},
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://gateway.subquery.network/query/0x34"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -6806,6 +6706,71 @@
"defaultBlockTime": 12000
}
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"staking": [
"aleph-zero",
"nomination-pools"
],
"priceId": "aleph-zero",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg",
"buyProviders": {
"transak": {
"network": "ALEPHZERO"
},
"banxa": {
"coinType": "AZERO",
"blockchain": "AZERO"
}
}
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://gateway.subquery.network/query/0x1c"
}
],
"staking": [
{
"type": "subquery",
"url": "https://gateway.subquery.network/query/0x1c"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 42,
"additional": {
"themeColor": "#10B6B1",
"stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/aleph-zero-azero-staking",
"defaultBlockTime": 1000,
"feeViaRuntimeCall": true
},
"options": [
"fullSyncByDefault",
"pushSupport"
]
},
{
"chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -9115,40 +9080,48 @@
]
},
{
"chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66",
"name": "3DPass",
"chainId": "eip155:2109",
"name": "Exosama",
"assets": [
{
"assetId": 0,
"symbol": "P3D",
"precision": 12,
"priceId": "3dpass",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/P3D.svg"
"symbol": "SAMA",
"priceId": "exosama-network",
"type": "evmNative",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://rpc.3dpscan.io",
"name": "3DPass node"
"url": "wss://rpc.exosama.com",
"name": "Exosama node"
}
],
"explorers": [
{
"name": "3DPass explorer",
"extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}",
"account": "https://explorer.3dpass.org/account/{address}"
"name": "Exosama explorer",
"extrinsic": "https://explorer.exosama.com/tx/{hash}",
"account": "https://explorer.exosama.com/address/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-3dpass"
"type": "etherscan",
"url": "https://explorer.exosama.com/api",
"parameters": {
"assetType": "evm"
}
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg",
"addressPrefix": 71
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg",
"addressPrefix": 2109,
"options": [
"ethereumBased",
"noSubstrateRuntime"
]
},
{
"chainId": "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee",
@@ -9260,6 +9233,61 @@
"ethereumBased"
]
},
{
"chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Crab",
"assets": [
{
"assetId": 0,
"symbol": "CRAB",
"precision": 18,
"priceId": "darwinia-network-native-token",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg"
},
{
"assetId": 1,
"symbol": "CKTON",
"precision": 18,
"type": "statemine",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CKTON.svg",
"typeExtras": {
"assetId": "1026",
"isSufficient": true
}
}
],
"nodes": [
{
"url": "wss://crab-rpc.darwinia.network/",
"name": "Darwinia node"
},
{
"url": "wss://darwiniacrab-rpc.dwellir.com",
"name": "Dwellir node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://crab.subscan.io/extrinsic/{hash}",
"account": "https://crab.subscan.io/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-darwinia"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg",
"addressPrefix": 42,
"options": [
"ethereumBased"
]
},
{
"chainId": "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -10670,43 +10698,6 @@
"feeViaRuntimeCall": true
}
},
{
"chainId": "31a7d8914fb31c249b972f18c115f1e22b4b039abbcb03c73b6774c5642f9efe",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
"name": "InvArch",
"assets": [
{
"assetId": 0,
"symbol": "VARCH",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/VARCH.svg"
}
],
"nodes": [
{
"url": "wss://invarch-rpc.dwellir.com",
"name": "Dwellir node"
}
],
"explorers": [
{
"name": "Statescan",
"account": "https://invarch.statescan.io/#/accounts/{address}",
"event": "https://invarch.statescan.io/#/events/{event}",
"extrinsic": "https://invarch.statescan.io/#/extrinsics/{hash}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---invarch"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/InvArch.svg",
"addressPrefix": 117
},
{
"chainId": "8b404e7ed8789d813982b9cb4c8b664c05b3fbf433309f603af014ec9ce56a8c",
"name": "Crust",
@@ -10939,40 +10930,6 @@
"disabledCheckMetadataHash": true
}
},
{
"chainId": "1d73b9f5dc392744e0dee00a6d6254fcfa2305386cceba60315894fa4807053a",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Curio",
"assets": [
{
"assetId": 0,
"symbol": "CGT",
"precision": 18,
"priceId": "curio-governance",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CGT.svg"
}
],
"nodes": [
{
"url": "wss://archive.parachain.curioinvest.com",
"name": "Curio 1 node"
},
{
"url": "wss://parachain.curioinvest.com/",
"name": "Curio 2 node"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-curio"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Curio.svg",
"addressPrefix": 777
},
{
"chainId": "d3d2f3a3495dc597434a99d7d449ebad6616db45e4e4f178f31cc6fa14378b70",
"name": "Avail Turing Testnet",
@@ -11400,55 +11357,6 @@
"testnet"
]
},
{
"chainId": "eip155:41455",
"name": "Aleph Zero EVM",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"priceId": "aleph-zero",
"type": "evmNative",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg",
"precision": 18
}
],
"nodeSelectionStrategy": "uniform",
"nodes": [
{
"url": "https://rpc.alephzero.raas.gelato.cloud",
"name": "Aleph Zero EVM rpc node"
},
{
"url": "wss://ws.alephzero.raas.gelato.cloud",
"name": "Aleph Zero EVM wss node"
}
],
"externalApi": {
"history": [
{
"type": "etherscan",
"url": "https://evm-explorer.alephzero.org/api",
"parameters": {
"assetType": "evm"
}
}
]
},
"explorers": [
{
"name": "Aleph Zero EVM Explorer",
"extrinsic": "https://evm-explorer.alephzero.org/tx/{hash}",
"account": "https://evm-explorer.alephzero.org/address/{address}"
}
],
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 41455,
"options": [
"ethereumBased",
"noSubstrateRuntime"
]
},
{
"chainId": "eip155:8453",
"name": "Base",
+189 -259
View File
@@ -3272,62 +3272,6 @@
"defaultBlockTime": 12000
}
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"icon": "QTZ.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
},
{
"url": "wss://asia-ws-quartz.unique.network",
"name": "Unique Asia node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}"
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://gateway.subquery.network/query/0x3e"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg",
"addressPrefix": 255,
"additional": {
"feeViaRuntimeCall": true
}
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -4953,46 +4897,6 @@
"stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/zeitgeist-ztg-staking"
}
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial (PAUSED)",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"priceId": "subsocial",
"icon": "SUB.svg"
}
],
"nodes": [
{
"url": "wss://para.f3joule.space",
"name": "Subsocial node"
},
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://gateway.subquery.network/query/0x34"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -6478,6 +6382,68 @@
"defaultBlockTime": 12000
}
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"priceId": "aleph-zero",
"staking": [
"aleph-zero",
"nomination-pools"
],
"precision": 12,
"icon": "AZERO.svg",
"buyProviders": {
"banxa": {
"coinType": "AZERO",
"blockchain": "AZERO"
}
}
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://gateway.subquery.network/query/0x1c"
}
],
"staking": [
{
"type": "subquery",
"url": "https://gateway.subquery.network/query/0x1c"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 42,
"additional": {
"themeColor": "#10B6B1",
"stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/aleph-zero-azero-staking",
"defaultBlockTime": 1000,
"feeViaRuntimeCall": true
},
"options": [
"fullSyncByDefault",
"pushSupport"
]
},
{
"chainId": "3920bcb4960a1eef5580cd5367ff3f430eef052774f78468852f7b9cb39f8a3c",
"name": "Polkadex",
@@ -7964,6 +7930,50 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hashed.svg",
"addressPrefix": 42
},
{
"chainId": "eip155:2109",
"name": "Exosama",
"assets": [
{
"assetId": 0,
"symbol": "SAMA",
"priceId": "exosama-network",
"type": "evmNative",
"icon": "SAMA.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://rpc.exosama.com",
"name": "Exosama node"
}
],
"explorers": [
{
"name": "Exosama explorer",
"extrinsic": "https://explorer.exosama.com/tx/{hash}",
"account": "https://explorer.exosama.com/address/{address}"
}
],
"externalApi": {
"history": [
{
"type": "etherscan",
"url": "https://explorer.exosama.com/api",
"parameters": {
"assetType": "evm"
}
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg",
"addressPrefix": 2109,
"options": [
"ethereumBased",
"noSubstrateRuntime"
]
},
{
"chainId": "2f0555cc76fc2840a25a6ea3b9637146806f1f44b090c175ffde2a7e5ab36c03",
"name": "Bittensor",
@@ -8047,42 +8057,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ajuna.svg",
"addressPrefix": 1328
},
{
"chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66",
"name": "3DPass",
"assets": [
{
"assetId": 0,
"symbol": "P3D",
"precision": 12,
"priceId": "3dpass",
"icon": "P3D.svg"
}
],
"nodes": [
{
"url": "wss://rpc.3dpass.org",
"name": "3DPass node"
}
],
"explorers": [
{
"name": "3DPass explorer",
"extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}",
"account": "https://explorer.3dpass.org/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-3dpass"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg",
"addressPrefix": 71
},
{
"chainId": "f0b8924b12e8108550d28870bc03f7b45a947e1b2b9abf81bfb0b89ecb60570e",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -8134,6 +8108,61 @@
"ethereumBased"
]
},
{
"chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Crab",
"assets": [
{
"assetId": 0,
"symbol": "CRAB",
"precision": 18,
"priceId": "darwinia-network-native-token",
"icon": "CRAB.svg"
},
{
"assetId": 1,
"symbol": "CKTON",
"precision": 18,
"type": "statemine",
"icon": "CKTON.svg",
"typeExtras": {
"assetId": "1026",
"isSufficient": true
}
}
],
"nodes": [
{
"url": "wss://crab-rpc.darwinia.network/",
"name": "Darwinia node"
},
{
"url": "wss://darwiniacrab-rpc.dwellir.com",
"name": "Dwellir node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://crab.subscan.io/extrinsic/{hash}",
"account": "https://crab.subscan.io/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-darwinia"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg",
"addressPrefix": 42,
"options": [
"ethereumBased"
]
},
{
"chainId": "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -8657,50 +8686,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Energy_Web_X.svg",
"addressPrefix": 42
},
{
"chainId": "31a7d8914fb31c249b972f18c115f1e22b4b039abbcb03c73b6774c5642f9efe",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
"name": "InvArch (PAUSED)",
"assets": [
{
"assetId": 0,
"symbol": "VARCH",
"precision": 12,
"icon": "VARCH.svg"
}
],
"nodes": [
{
"url": "wss://invarch.ibp.network",
"name": "IBP1 node"
},
{
"url": "wss://invarch.dotters.network",
"name": "IBP2 node"
}
],
"explorers": [
{
"name": "Statescan",
"account": "https://invarch.statescan.io/#/accounts/{address}",
"event": "https://invarch.statescan.io/#/events/{event}",
"extrinsic": "https://invarch.statescan.io/#/extrinsics/{hash}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---invarch"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/InvArch.svg",
"addressPrefix": 117,
"additional": {
"supportsGenericLedgerApp": true
}
},
{
"chainId": "7eb9354488318e7549c722669dcbdcdc526f1fef1420e7944667212f3601fdbd",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -9009,40 +8994,6 @@
"disabledCheckMetadataHash": true
}
},
{
"chainId": "1d73b9f5dc392744e0dee00a6d6254fcfa2305386cceba60315894fa4807053a",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Curio",
"assets": [
{
"assetId": 0,
"symbol": "CGT",
"precision": 18,
"priceId": "curio-governance",
"icon": "CGT.svg"
}
],
"nodes": [
{
"url": "wss://archive.parachain.curioinvest.com",
"name": "Curio 1 node"
},
{
"url": "wss://parachain.curioinvest.com/",
"name": "Curio 2 node"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-curio"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Curio.svg",
"addressPrefix": 777
},
{
"chainId": "f6ee56e9c5277df5b4ce6ae9983ee88f3cbed27d31beeb98f9f84f997a1ab0b9",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -9492,6 +9443,34 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Humanode.svg",
"addressPrefix": 5234
},
{
"chainId": "03aa6b475a03f8baf7f83e448513b00eaab03aefa4ed64bd1d31160dce028add",
"name": "DeepBrain",
"assets": [
{
"assetId": 0,
"symbol": "DBC",
"precision": 15,
"priceId": "deepbrain-chain",
"icon": "DBC.svg"
}
],
"nodes": [
{
"url": "wss://info.dbcwallet.io",
"name": "DBC node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://dbc.subscan.io/extrinsic/{hash}",
"account": "https://dbc.subscan.io/account/{address}"
}
],
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DeepBrain.svg",
"addressPrefix": 42
},
{
"chainId": "d2a5d385932d1f650dae03ef8e2748983779ee342c614f80854d32b8cd8fa48c",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -9702,55 +9681,6 @@
"overridesCommon": true
}
},
{
"chainId": "eip155:41455",
"name": "Aleph Zero EVM",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"priceId": "aleph-zero",
"type": "evmNative",
"icon": "AZERO.svg",
"precision": 18
}
],
"nodeSelectionStrategy": "uniform",
"nodes": [
{
"url": "https://rpc.alephzero.raas.gelato.cloud",
"name": "Aleph Zero EVM rpc node"
},
{
"url": "wss://ws.alephzero.raas.gelato.cloud",
"name": "Aleph Zero EVM wss node"
}
],
"externalApi": {
"history": [
{
"type": "etherscan",
"url": "https://evm-explorer.alephzero.org/api",
"parameters": {
"assetType": "evm"
}
}
]
},
"explorers": [
{
"name": "Aleph Zero EVM Explorer",
"extrinsic": "https://evm-explorer.alephzero.org/tx/{hash}",
"account": "https://evm-explorer.alephzero.org/address/{address}"
}
],
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 41455,
"options": [
"ethereumBased",
"noSubstrateRuntime"
]
},
{
"chainId": "44f68476df71ebf765b630bf08dc1e0fedb2bf614a1aa0563b3f74f20e47b3e0",
"name": "Tangle",
+189 -259
View File
@@ -3272,62 +3272,6 @@
"defaultBlockTime": 12000
}
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"icon": "QTZ.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
},
{
"url": "wss://asia-ws-quartz.unique.network",
"name": "Unique Asia node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}"
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://gateway.subquery.network/query/0x3e"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg",
"addressPrefix": 255,
"additional": {
"feeViaRuntimeCall": true
}
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -4953,46 +4897,6 @@
"stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/zeitgeist-ztg-staking"
}
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial (PAUSED)",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"priceId": "subsocial",
"icon": "SUB.svg"
}
],
"nodes": [
{
"url": "wss://para.f3joule.space",
"name": "Subsocial node"
},
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://gateway.subquery.network/query/0x34"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -6478,6 +6382,68 @@
"defaultBlockTime": 12000
}
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"priceId": "aleph-zero",
"staking": [
"aleph-zero",
"nomination-pools"
],
"precision": 12,
"icon": "AZERO.svg",
"buyProviders": {
"banxa": {
"coinType": "AZERO",
"blockchain": "AZERO"
}
}
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://gateway.subquery.network/query/0x1c"
}
],
"staking": [
{
"type": "subquery",
"url": "https://gateway.subquery.network/query/0x1c"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 42,
"additional": {
"themeColor": "#10B6B1",
"stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/aleph-zero-azero-staking",
"defaultBlockTime": 1000,
"feeViaRuntimeCall": true
},
"options": [
"fullSyncByDefault",
"pushSupport"
]
},
{
"chainId": "3920bcb4960a1eef5580cd5367ff3f430eef052774f78468852f7b9cb39f8a3c",
"name": "Polkadex",
@@ -7964,6 +7930,50 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hashed.svg",
"addressPrefix": 42
},
{
"chainId": "eip155:2109",
"name": "Exosama",
"assets": [
{
"assetId": 0,
"symbol": "SAMA",
"priceId": "exosama-network",
"type": "evmNative",
"icon": "SAMA.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://rpc.exosama.com",
"name": "Exosama node"
}
],
"explorers": [
{
"name": "Exosama explorer",
"extrinsic": "https://explorer.exosama.com/tx/{hash}",
"account": "https://explorer.exosama.com/address/{address}"
}
],
"externalApi": {
"history": [
{
"type": "etherscan",
"url": "https://explorer.exosama.com/api",
"parameters": {
"assetType": "evm"
}
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg",
"addressPrefix": 2109,
"options": [
"ethereumBased",
"noSubstrateRuntime"
]
},
{
"chainId": "2f0555cc76fc2840a25a6ea3b9637146806f1f44b090c175ffde2a7e5ab36c03",
"name": "Bittensor",
@@ -8047,42 +8057,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ajuna.svg",
"addressPrefix": 1328
},
{
"chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66",
"name": "3DPass",
"assets": [
{
"assetId": 0,
"symbol": "P3D",
"precision": 12,
"priceId": "3dpass",
"icon": "P3D.svg"
}
],
"nodes": [
{
"url": "wss://rpc.3dpass.org",
"name": "3DPass node"
}
],
"explorers": [
{
"name": "3DPass explorer",
"extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}",
"account": "https://explorer.3dpass.org/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-3dpass"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg",
"addressPrefix": 71
},
{
"chainId": "f0b8924b12e8108550d28870bc03f7b45a947e1b2b9abf81bfb0b89ecb60570e",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -8134,6 +8108,61 @@
"ethereumBased"
]
},
{
"chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Crab",
"assets": [
{
"assetId": 0,
"symbol": "CRAB",
"precision": 18,
"priceId": "darwinia-network-native-token",
"icon": "CRAB.svg"
},
{
"assetId": 1,
"symbol": "CKTON",
"precision": 18,
"type": "statemine",
"icon": "CKTON.svg",
"typeExtras": {
"assetId": "1026",
"isSufficient": true
}
}
],
"nodes": [
{
"url": "wss://crab-rpc.darwinia.network/",
"name": "Darwinia node"
},
{
"url": "wss://darwiniacrab-rpc.dwellir.com",
"name": "Dwellir node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://crab.subscan.io/extrinsic/{hash}",
"account": "https://crab.subscan.io/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-darwinia"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg",
"addressPrefix": 42,
"options": [
"ethereumBased"
]
},
{
"chainId": "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -8657,50 +8686,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Energy_Web_X.svg",
"addressPrefix": 42
},
{
"chainId": "31a7d8914fb31c249b972f18c115f1e22b4b039abbcb03c73b6774c5642f9efe",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
"name": "InvArch (PAUSED)",
"assets": [
{
"assetId": 0,
"symbol": "VARCH",
"precision": 12,
"icon": "VARCH.svg"
}
],
"nodes": [
{
"url": "wss://invarch.ibp.network",
"name": "IBP1 node"
},
{
"url": "wss://invarch.dotters.network",
"name": "IBP2 node"
}
],
"explorers": [
{
"name": "Statescan",
"account": "https://invarch.statescan.io/#/accounts/{address}",
"event": "https://invarch.statescan.io/#/events/{event}",
"extrinsic": "https://invarch.statescan.io/#/extrinsics/{hash}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---invarch"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/InvArch.svg",
"addressPrefix": 117,
"additional": {
"supportsGenericLedgerApp": true
}
},
{
"chainId": "7eb9354488318e7549c722669dcbdcdc526f1fef1420e7944667212f3601fdbd",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -9009,40 +8994,6 @@
"disabledCheckMetadataHash": true
}
},
{
"chainId": "1d73b9f5dc392744e0dee00a6d6254fcfa2305386cceba60315894fa4807053a",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Curio",
"assets": [
{
"assetId": 0,
"symbol": "CGT",
"precision": 18,
"priceId": "curio-governance",
"icon": "CGT.svg"
}
],
"nodes": [
{
"url": "wss://archive.parachain.curioinvest.com",
"name": "Curio 1 node"
},
{
"url": "wss://parachain.curioinvest.com/",
"name": "Curio 2 node"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-curio"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Curio.svg",
"addressPrefix": 777
},
{
"chainId": "f6ee56e9c5277df5b4ce6ae9983ee88f3cbed27d31beeb98f9f84f997a1ab0b9",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -9492,6 +9443,34 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Humanode.svg",
"addressPrefix": 5234
},
{
"chainId": "03aa6b475a03f8baf7f83e448513b00eaab03aefa4ed64bd1d31160dce028add",
"name": "DeepBrain",
"assets": [
{
"assetId": 0,
"symbol": "DBC",
"precision": 15,
"priceId": "deepbrain-chain",
"icon": "DBC.svg"
}
],
"nodes": [
{
"url": "wss://info.dbcwallet.io",
"name": "DBC node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://dbc.subscan.io/extrinsic/{hash}",
"account": "https://dbc.subscan.io/account/{address}"
}
],
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DeepBrain.svg",
"addressPrefix": 42
},
{
"chainId": "d2a5d385932d1f650dae03ef8e2748983779ee342c614f80854d32b8cd8fa48c",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -9702,55 +9681,6 @@
"overridesCommon": true
}
},
{
"chainId": "eip155:41455",
"name": "Aleph Zero EVM",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"priceId": "aleph-zero",
"type": "evmNative",
"icon": "AZERO.svg",
"precision": 18
}
],
"nodeSelectionStrategy": "uniform",
"nodes": [
{
"url": "https://rpc.alephzero.raas.gelato.cloud",
"name": "Aleph Zero EVM rpc node"
},
{
"url": "wss://ws.alephzero.raas.gelato.cloud",
"name": "Aleph Zero EVM wss node"
}
],
"externalApi": {
"history": [
{
"type": "etherscan",
"url": "https://evm-explorer.alephzero.org/api",
"parameters": {
"assetType": "evm"
}
}
]
},
"explorers": [
{
"name": "Aleph Zero EVM Explorer",
"extrinsic": "https://evm-explorer.alephzero.org/tx/{hash}",
"account": "https://evm-explorer.alephzero.org/address/{address}"
}
],
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 41455,
"options": [
"ethereumBased",
"noSubstrateRuntime"
]
},
{
"chainId": "44f68476df71ebf765b630bf08dc1e0fedb2bf614a1aa0563b3f74f20e47b3e0",
"name": "Tangle",
+172 -239
View File
@@ -3155,63 +3155,6 @@
"supportsGenericLedgerApp": true
}
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"icon": "QTZ.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
},
{
"url": "wss://asia-ws-quartz.unique.network",
"name": "Unique Asia node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}"
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://gateway.subquery.network/query/0x3e"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg",
"addressPrefix": 255,
"additional": {
"feeViaRuntimeCall": true,
"supportsGenericLedgerApp": true
}
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -5308,46 +5251,6 @@
"stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/zeitgeist-ztg-staking"
}
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial (PAUSED)",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"priceId": "subsocial",
"icon": "SUB.svg"
}
],
"nodes": [
{
"url": "wss://para.f3joule.space",
"name": "Subsocial node"
},
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://gateway.subquery.network/query/0x34"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -6937,6 +6840,68 @@
"defaultBlockTime": 12000
}
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"staking": [
"aleph-zero",
"nomination-pools"
],
"priceId": "aleph-zero",
"precision": 12,
"icon": "AZERO.svg",
"buyProviders": {
"banxa": {
"coinType": "AZERO",
"blockchain": "AZERO"
}
}
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://gateway.subquery.network/query/0x1c"
}
],
"staking": [
{
"type": "subquery",
"url": "https://gateway.subquery.network/query/0x1c"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 42,
"additional": {
"themeColor": "#10B6B1",
"stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/aleph-zero-azero-staking",
"defaultBlockTime": 1000,
"feeViaRuntimeCall": true
},
"options": [
"fullSyncByDefault",
"pushSupport"
]
},
{
"chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -9162,40 +9127,48 @@
]
},
{
"chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66",
"name": "3DPass",
"chainId": "eip155:2109",
"name": "Exosama",
"assets": [
{
"assetId": 0,
"symbol": "P3D",
"precision": 12,
"priceId": "3dpass",
"icon": "P3D.svg"
"symbol": "SAMA",
"priceId": "exosama-network",
"type": "evmNative",
"icon": "SAMA.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://rpc.3dpass.org",
"name": "3DPass node"
"url": "wss://rpc.exosama.com",
"name": "Exosama node"
}
],
"explorers": [
{
"name": "3DPass explorer",
"extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}",
"account": "https://explorer.3dpass.org/account/{address}"
"name": "Exosama explorer",
"extrinsic": "https://explorer.exosama.com/tx/{hash}",
"account": "https://explorer.exosama.com/address/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-3dpass"
"type": "etherscan",
"url": "https://explorer.exosama.com/api",
"parameters": {
"assetType": "evm"
}
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg",
"addressPrefix": 71
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg",
"addressPrefix": 2109,
"options": [
"ethereumBased",
"noSubstrateRuntime"
]
},
{
"chainId": "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee",
@@ -9304,6 +9277,61 @@
"ethereumBased"
]
},
{
"chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Crab",
"assets": [
{
"assetId": 0,
"symbol": "CRAB",
"precision": 18,
"priceId": "darwinia-network-native-token",
"icon": "CRAB.svg"
},
{
"assetId": 1,
"symbol": "CKTON",
"precision": 18,
"type": "statemine",
"icon": "CKTON.svg",
"typeExtras": {
"assetId": "1026",
"isSufficient": true
}
}
],
"nodes": [
{
"url": "wss://crab-rpc.darwinia.network/",
"name": "Darwinia node"
},
{
"url": "wss://darwiniacrab-rpc.dwellir.com",
"name": "Dwellir node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://crab.subscan.io/extrinsic/{hash}",
"account": "https://crab.subscan.io/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-darwinia"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg",
"addressPrefix": 42,
"options": [
"ethereumBased"
]
},
{
"chainId": "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -10732,50 +10760,6 @@
"supportsGenericLedgerApp": true
}
},
{
"chainId": "31a7d8914fb31c249b972f18c115f1e22b4b039abbcb03c73b6774c5642f9efe",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
"name": "InvArch (PAUSED)",
"assets": [
{
"assetId": 0,
"symbol": "VARCH",
"precision": 12,
"icon": "VARCH.svg"
}
],
"nodes": [
{
"url": "wss://invarch.ibp.network",
"name": "IBP1 node"
},
{
"url": "wss://invarch.dotters.network",
"name": "IBP2 node"
}
],
"explorers": [
{
"name": "Statescan",
"account": "https://invarch.statescan.io/#/accounts/{address}",
"event": "https://invarch.statescan.io/#/events/{event}",
"extrinsic": "https://invarch.statescan.io/#/extrinsics/{hash}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---invarch"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/InvArch.svg",
"addressPrefix": 117,
"additional": {
"supportsGenericLedgerApp": true
}
},
{
"chainId": "8b404e7ed8789d813982b9cb4c8b664c05b3fbf433309f603af014ec9ce56a8c",
"name": "Crust",
@@ -11004,40 +10988,6 @@
"disabledCheckMetadataHash": true
}
},
{
"chainId": "1d73b9f5dc392744e0dee00a6d6254fcfa2305386cceba60315894fa4807053a",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Curio",
"assets": [
{
"assetId": 0,
"symbol": "CGT",
"precision": 18,
"priceId": "curio-governance",
"icon": "CGT.svg"
}
],
"nodes": [
{
"url": "wss://archive.parachain.curioinvest.com",
"name": "Curio 1 node"
},
{
"url": "wss://parachain.curioinvest.com/",
"name": "Curio 2 node"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-curio"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Curio.svg",
"addressPrefix": 777
},
{
"chainId": "d3d2f3a3495dc597434a99d7d449ebad6616db45e4e4f178f31cc6fa14378b70",
"name": "Avail Turing Testnet",
@@ -11497,55 +11447,6 @@
"testnet"
]
},
{
"chainId": "eip155:41455",
"name": "Aleph Zero EVM",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"priceId": "aleph-zero",
"type": "evmNative",
"icon": "AZERO.svg",
"precision": 18
}
],
"nodeSelectionStrategy": "uniform",
"nodes": [
{
"url": "https://alephzero.drpc.org",
"name": "Aleph Zero EVM rpc node"
},
{
"url": "wss://alephzero.drpc.org",
"name": "Aleph Zero EVM wss node"
}
],
"externalApi": {
"history": [
{
"type": "etherscan",
"url": "https://evm-explorer.alephzero.org/api",
"parameters": {
"assetType": "evm"
}
}
]
},
"explorers": [
{
"name": "Aleph Zero EVM Explorer",
"extrinsic": "https://evm-explorer.alephzero.org/tx/{hash}",
"account": "https://evm-explorer.alephzero.org/address/{address}"
}
],
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 41455,
"options": [
"ethereumBased",
"noSubstrateRuntime"
]
},
{
"chainId": "eip155:8453",
"name": "Base",
@@ -11749,6 +11650,38 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Humanode.svg",
"addressPrefix": 5234
},
{
"chainId": "03aa6b475a03f8baf7f83e448513b00eaab03aefa4ed64bd1d31160dce028add",
"name": "DeepBrain",
"assets": [
{
"assetId": 0,
"symbol": "DBC",
"precision": 15,
"priceId": "deepbrain-chain",
"icon": "DBC.svg",
"staking": [
"relaychain",
"nomination-pools"
]
}
],
"nodes": [
{
"url": "wss://info.dbcwallet.io",
"name": "DBC node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://dbc.subscan.io/extrinsic/{hash}",
"account": "https://dbc.subscan.io/account/{address}"
}
],
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DeepBrain.svg",
"addressPrefix": 42
},
{
"chainId": "d2a5d385932d1f650dae03ef8e2748983779ee342c614f80854d32b8cd8fa48c",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
+192 -226
View File
@@ -2829,39 +2829,6 @@
"supportsGenericLedgerApp": true
}
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"icon": "QTZ.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
}
],
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg",
"addressPrefix": 255,
"additional": {
"feeViaRuntimeCall": true
}
},
{
"chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -4194,40 +4161,6 @@
"disabledCheckMetadataHash": true
}
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial (PAUSED)",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"priceId": "subsocial",
"icon": "SUB.svg"
}
],
"nodes": [
{
"url": "wss://para.f3joule.space",
"name": "Subsocial node"
},
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://subquery-history-subsocial-prod.novasama-tech.org"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -5743,6 +5676,75 @@
"supportsGenericLedgerApp": true
}
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"priceId": "aleph-zero",
"staking": [
"aleph-zero",
"nomination-pools"
],
"precision": 12,
"icon": "AZERO.svg",
"buyProviders": {
"banxa": {
"coinType": "AZERO",
"blockchain": "AZERO"
}
}
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://subquery-history-aleph-zero-prod.novasama-tech.org"
}
],
"staking": [
{
"type": "subquery",
"url": "https://subquery-history-aleph-zero-prod.novasama-tech.org"
}
],
"staking-rewards": [
{
"type": "subquery",
"url": "https://subquery-history-aleph-zero-prod.novasama-tech.org"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 42,
"additional": {
"themeColor": "#10B6B1",
"stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/aleph-zero-azero-staking",
"defaultBlockTime": 1000,
"feeViaRuntimeCall": true
},
"options": [
"fullSyncByDefault",
"pushSupport",
"multisig"
]
},
{
"chainId": "3920bcb4960a1eef5580cd5367ff3f430eef052774f78468852f7b9cb39f8a3c",
"name": "Polkadex",
@@ -7194,6 +7196,50 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hashed.svg",
"addressPrefix": 42
},
{
"chainId": "eip155:2109",
"name": "Exosama",
"assets": [
{
"assetId": 0,
"symbol": "SAMA",
"priceId": "exosama-network",
"type": "evmNative",
"icon": "SAMA.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://rpc.exosama.com",
"name": "Exosama node"
}
],
"explorers": [
{
"name": "Exosama explorer",
"extrinsic": "https://explorer.exosama.com/tx/{hash}",
"account": "https://explorer.exosama.com/address/{address}"
}
],
"externalApi": {
"history": [
{
"type": "etherscan",
"url": "https://explorer.exosama.com/api",
"parameters": {
"assetType": "evm"
}
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg",
"addressPrefix": 2109,
"options": [
"ethereumBased",
"noSubstrateRuntime"
]
},
{
"chainId": "2f0555cc76fc2840a25a6ea3b9637146806f1f44b090c175ffde2a7e5ab36c03",
"name": "Bittensor",
@@ -7286,46 +7332,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ajuna.svg",
"addressPrefix": 1328
},
{
"chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66",
"name": "3DPass",
"assets": [
{
"assetId": 0,
"symbol": "P3D",
"precision": 12,
"priceId": "3dpass",
"icon": "P3D.svg"
}
],
"nodes": [
{
"url": "wss://rpc.3dpass.org",
"name": "3DPass node"
},
{
"url": "wss://rpc.p3d.top",
"name": "Lzmz node"
}
],
"explorers": [
{
"name": "3DPass explorer",
"extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}",
"account": "https://explorer.3dpass.org/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://subquery-history-3dpass-prod.novasama-tech.org"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg",
"addressPrefix": 71
},
{
"chainId": "f0b8924b12e8108550d28870bc03f7b45a947e1b2b9abf81bfb0b89ecb60570e",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -7369,6 +7375,57 @@
"ethereumBased"
]
},
{
"chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Crab",
"assets": [
{
"assetId": 0,
"symbol": "CRAB",
"precision": 18,
"priceId": "darwinia-network-native-token",
"icon": "CRAB.svg"
},
{
"assetId": 1,
"symbol": "CKTON",
"precision": 18,
"type": "statemine",
"icon": "CKTON.svg",
"typeExtras": {
"assetId": "1026",
"isSufficient": true
}
}
],
"nodes": [
{
"url": "wss://crab-rpc.darwinia.network/",
"name": "Darwinia node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://crab.subscan.io/extrinsic/{hash}",
"account": "https://crab.subscan.io/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://subquery-history-crab-prod.novasama-tech.org"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg",
"addressPrefix": 42,
"options": [
"ethereumBased"
]
},
{
"chainId": "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -7901,42 +7958,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Energy_Web_X.svg",
"addressPrefix": 42
},
{
"chainId": "31a7d8914fb31c249b972f18c115f1e22b4b039abbcb03c73b6774c5642f9efe",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
"name": "InvArch (PAUSED)",
"assets": [
{
"assetId": 0,
"symbol": "VARCH",
"precision": 12,
"icon": "VARCH.svg"
}
],
"nodes": [
{
"url": "wss://invarch.ibp.network",
"name": "IBP1 node"
},
{
"url": "wss://invarch.dotters.network",
"name": "IBP2 node"
}
],
"explorers": [
{
"name": "Statescan",
"account": "https://invarch.statescan.io/#/accounts/{address}",
"event": "https://invarch.statescan.io/#/events/{event}",
"extrinsic": "https://invarch.statescan.io/#/extrinsics/{hash}"
}
],
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/InvArch.svg",
"addressPrefix": 117,
"additional": {
"supportsGenericLedgerApp": true
}
},
{
"chainId": "f3c7ad88f6a80f366c4be216691411ef0622e8b809b1046ea297ef106058d4eb",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -8104,40 +8125,6 @@
"disabledCheckMetadataHash": true
}
},
{
"chainId": "1d73b9f5dc392744e0dee00a6d6254fcfa2305386cceba60315894fa4807053a",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Curio",
"assets": [
{
"assetId": 0,
"symbol": "CGT",
"precision": 18,
"priceId": "curio-governance",
"icon": "CGT.svg"
}
],
"nodes": [
{
"url": "wss://archive.parachain.curioinvest.com",
"name": "Curio 1 node"
},
{
"url": "wss://parachain.curioinvest.com/",
"name": "Curio 2 node"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://subquery-history-curio-prod.novasama-tech.org"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Curio.svg",
"addressPrefix": 777
},
{
"chainId": "f6ee56e9c5277df5b4ce6ae9983ee88f3cbed27d31beeb98f9f84f997a1ab0b9",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -8644,6 +8631,34 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Humanode.svg",
"addressPrefix": 5234
},
{
"chainId": "03aa6b475a03f8baf7f83e448513b00eaab03aefa4ed64bd1d31160dce028add",
"name": "DeepBrain",
"assets": [
{
"assetId": 0,
"symbol": "DBC",
"precision": 15,
"priceId": "deepbrain-chain",
"icon": "DBC.svg"
}
],
"nodes": [
{
"url": "wss://info.dbcwallet.io",
"name": "DBC node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://dbc.subscan.io/extrinsic/{hash}",
"account": "https://dbc.subscan.io/account/{address}"
}
],
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DeepBrain.svg",
"addressPrefix": 42
},
{
"chainId": "d2a5d385932d1f650dae03ef8e2748983779ee342c614f80854d32b8cd8fa48c",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -8846,55 +8861,6 @@
"overridesCommon": true
}
},
{
"chainId": "eip155:41455",
"name": "Aleph Zero EVM (PAUSED)",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"priceId": "aleph-zero",
"type": "evmNative",
"icon": "AZERO.svg",
"precision": 18
}
],
"nodeSelectionStrategy": "uniform",
"nodes": [
{
"url": "https://rpc.alephzero.raas.gelato.cloud",
"name": "Aleph Zero EVM rpc node"
},
{
"url": "wss://ws.alephzero.raas.gelato.cloud",
"name": "Aleph Zero EVM wss node"
}
],
"externalApi": {
"history": [
{
"type": "etherscan",
"url": "https://evm-explorer.alephzero.org/api",
"parameters": {
"assetType": "evm"
}
}
]
},
"explorers": [
{
"name": "Aleph Zero EVM Explorer",
"extrinsic": "https://evm-explorer.alephzero.org/tx/{hash}",
"account": "https://evm-explorer.alephzero.org/address/{address}"
}
],
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 41455,
"options": [
"ethereumBased",
"noSubstrateRuntime"
]
},
{
"chainId": "44f68476df71ebf765b630bf08dc1e0fedb2bf614a1aa0563b3f74f20e47b3e0",
"name": "Tangle",
+192 -226
View File
@@ -2829,39 +2829,6 @@
"supportsGenericLedgerApp": true
}
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"icon": "QTZ.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
}
],
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg",
"addressPrefix": 255,
"additional": {
"feeViaRuntimeCall": true
}
},
{
"chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -4194,40 +4161,6 @@
"disabledCheckMetadataHash": true
}
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial (PAUSED)",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"priceId": "subsocial",
"icon": "SUB.svg"
}
],
"nodes": [
{
"url": "wss://para.f3joule.space",
"name": "Subsocial node"
},
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://subquery-history-subsocial-prod.novasama-tech.org"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -5743,6 +5676,75 @@
"supportsGenericLedgerApp": true
}
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"priceId": "aleph-zero",
"staking": [
"aleph-zero",
"nomination-pools"
],
"precision": 12,
"icon": "AZERO.svg",
"buyProviders": {
"banxa": {
"coinType": "AZERO",
"blockchain": "AZERO"
}
}
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://subquery-history-aleph-zero-prod.novasama-tech.org"
}
],
"staking": [
{
"type": "subquery",
"url": "https://subquery-history-aleph-zero-prod.novasama-tech.org"
}
],
"staking-rewards": [
{
"type": "subquery",
"url": "https://subquery-history-aleph-zero-prod.novasama-tech.org"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 42,
"additional": {
"themeColor": "#10B6B1",
"stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/aleph-zero-azero-staking",
"defaultBlockTime": 1000,
"feeViaRuntimeCall": true
},
"options": [
"fullSyncByDefault",
"pushSupport",
"multisig"
]
},
{
"chainId": "3920bcb4960a1eef5580cd5367ff3f430eef052774f78468852f7b9cb39f8a3c",
"name": "Polkadex",
@@ -7194,6 +7196,50 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hashed.svg",
"addressPrefix": 42
},
{
"chainId": "eip155:2109",
"name": "Exosama",
"assets": [
{
"assetId": 0,
"symbol": "SAMA",
"priceId": "exosama-network",
"type": "evmNative",
"icon": "SAMA.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://rpc.exosama.com",
"name": "Exosama node"
}
],
"explorers": [
{
"name": "Exosama explorer",
"extrinsic": "https://explorer.exosama.com/tx/{hash}",
"account": "https://explorer.exosama.com/address/{address}"
}
],
"externalApi": {
"history": [
{
"type": "etherscan",
"url": "https://explorer.exosama.com/api",
"parameters": {
"assetType": "evm"
}
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg",
"addressPrefix": 2109,
"options": [
"ethereumBased",
"noSubstrateRuntime"
]
},
{
"chainId": "2f0555cc76fc2840a25a6ea3b9637146806f1f44b090c175ffde2a7e5ab36c03",
"name": "Bittensor",
@@ -7286,46 +7332,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ajuna.svg",
"addressPrefix": 1328
},
{
"chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66",
"name": "3DPass",
"assets": [
{
"assetId": 0,
"symbol": "P3D",
"precision": 12,
"priceId": "3dpass",
"icon": "P3D.svg"
}
],
"nodes": [
{
"url": "wss://rpc.3dpass.org",
"name": "3DPass node"
},
{
"url": "wss://rpc.p3d.top",
"name": "Lzmz node"
}
],
"explorers": [
{
"name": "3DPass explorer",
"extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}",
"account": "https://explorer.3dpass.org/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://subquery-history-3dpass-prod.novasama-tech.org"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg",
"addressPrefix": 71
},
{
"chainId": "f0b8924b12e8108550d28870bc03f7b45a947e1b2b9abf81bfb0b89ecb60570e",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -7369,6 +7375,57 @@
"ethereumBased"
]
},
{
"chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Crab",
"assets": [
{
"assetId": 0,
"symbol": "CRAB",
"precision": 18,
"priceId": "darwinia-network-native-token",
"icon": "CRAB.svg"
},
{
"assetId": 1,
"symbol": "CKTON",
"precision": 18,
"type": "statemine",
"icon": "CKTON.svg",
"typeExtras": {
"assetId": "1026",
"isSufficient": true
}
}
],
"nodes": [
{
"url": "wss://crab-rpc.darwinia.network/",
"name": "Darwinia node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://crab.subscan.io/extrinsic/{hash}",
"account": "https://crab.subscan.io/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://subquery-history-crab-prod.novasama-tech.org"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg",
"addressPrefix": 42,
"options": [
"ethereumBased"
]
},
{
"chainId": "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -7901,42 +7958,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Energy_Web_X.svg",
"addressPrefix": 42
},
{
"chainId": "31a7d8914fb31c249b972f18c115f1e22b4b039abbcb03c73b6774c5642f9efe",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
"name": "InvArch (PAUSED)",
"assets": [
{
"assetId": 0,
"symbol": "VARCH",
"precision": 12,
"icon": "VARCH.svg"
}
],
"nodes": [
{
"url": "wss://invarch.ibp.network",
"name": "IBP1 node"
},
{
"url": "wss://invarch.dotters.network",
"name": "IBP2 node"
}
],
"explorers": [
{
"name": "Statescan",
"account": "https://invarch.statescan.io/#/accounts/{address}",
"event": "https://invarch.statescan.io/#/events/{event}",
"extrinsic": "https://invarch.statescan.io/#/extrinsics/{hash}"
}
],
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/InvArch.svg",
"addressPrefix": 117,
"additional": {
"supportsGenericLedgerApp": true
}
},
{
"chainId": "f3c7ad88f6a80f366c4be216691411ef0622e8b809b1046ea297ef106058d4eb",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -8104,40 +8125,6 @@
"disabledCheckMetadataHash": true
}
},
{
"chainId": "1d73b9f5dc392744e0dee00a6d6254fcfa2305386cceba60315894fa4807053a",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Curio",
"assets": [
{
"assetId": 0,
"symbol": "CGT",
"precision": 18,
"priceId": "curio-governance",
"icon": "CGT.svg"
}
],
"nodes": [
{
"url": "wss://archive.parachain.curioinvest.com",
"name": "Curio 1 node"
},
{
"url": "wss://parachain.curioinvest.com/",
"name": "Curio 2 node"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://subquery-history-curio-prod.novasama-tech.org"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Curio.svg",
"addressPrefix": 777
},
{
"chainId": "f6ee56e9c5277df5b4ce6ae9983ee88f3cbed27d31beeb98f9f84f997a1ab0b9",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -8644,6 +8631,34 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Humanode.svg",
"addressPrefix": 5234
},
{
"chainId": "03aa6b475a03f8baf7f83e448513b00eaab03aefa4ed64bd1d31160dce028add",
"name": "DeepBrain",
"assets": [
{
"assetId": 0,
"symbol": "DBC",
"precision": 15,
"priceId": "deepbrain-chain",
"icon": "DBC.svg"
}
],
"nodes": [
{
"url": "wss://info.dbcwallet.io",
"name": "DBC node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://dbc.subscan.io/extrinsic/{hash}",
"account": "https://dbc.subscan.io/account/{address}"
}
],
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DeepBrain.svg",
"addressPrefix": 42
},
{
"chainId": "d2a5d385932d1f650dae03ef8e2748983779ee342c614f80854d32b8cd8fa48c",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -8846,55 +8861,6 @@
"overridesCommon": true
}
},
{
"chainId": "eip155:41455",
"name": "Aleph Zero EVM (PAUSED)",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"priceId": "aleph-zero",
"type": "evmNative",
"icon": "AZERO.svg",
"precision": 18
}
],
"nodeSelectionStrategy": "uniform",
"nodes": [
{
"url": "https://rpc.alephzero.raas.gelato.cloud",
"name": "Aleph Zero EVM rpc node"
},
{
"url": "wss://ws.alephzero.raas.gelato.cloud",
"name": "Aleph Zero EVM wss node"
}
],
"externalApi": {
"history": [
{
"type": "etherscan",
"url": "https://evm-explorer.alephzero.org/api",
"parameters": {
"assetType": "evm"
}
}
]
},
"explorers": [
{
"name": "Aleph Zero EVM Explorer",
"extrinsic": "https://evm-explorer.alephzero.org/tx/{hash}",
"account": "https://evm-explorer.alephzero.org/address/{address}"
}
],
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 41455,
"options": [
"ethereumBased",
"noSubstrateRuntime"
]
},
{
"chainId": "44f68476df71ebf765b630bf08dc1e0fedb2bf614a1aa0563b3f74f20e47b3e0",
"name": "Tangle",
+175 -206
View File
@@ -2713,40 +2713,6 @@
"supportsGenericLedgerApp": true
}
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"icon": "QTZ.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
}
],
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg",
"addressPrefix": 255,
"additional": {
"feeViaRuntimeCall": true,
"supportsGenericLedgerApp": true
}
},
{
"chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -4495,40 +4461,6 @@
"disabledCheckMetadataHash": true
}
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial (PAUSED)",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"priceId": "subsocial",
"icon": "SUB.svg"
}
],
"nodes": [
{
"url": "wss://para.f3joule.space",
"name": "Subsocial node"
},
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://subquery-history-subsocial-prod.novasama-tech.org"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -6099,6 +6031,75 @@
"supportsGenericLedgerApp": true
}
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"staking": [
"aleph-zero",
"nomination-pools"
],
"priceId": "aleph-zero",
"precision": 12,
"icon": "AZERO.svg",
"buyProviders": {
"banxa": {
"coinType": "AZERO",
"blockchain": "AZERO"
}
}
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://subquery-history-aleph-zero-prod.novasama-tech.org"
}
],
"staking": [
{
"type": "subquery",
"url": "https://subquery-history-aleph-zero-prod.novasama-tech.org"
}
],
"staking-rewards": [
{
"type": "subquery",
"url": "https://subquery-history-aleph-zero-prod.novasama-tech.org"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 42,
"additional": {
"themeColor": "#10B6B1",
"stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/aleph-zero-azero-staking",
"defaultBlockTime": 1000,
"feeViaRuntimeCall": true
},
"options": [
"fullSyncByDefault",
"pushSupport",
"multisig"
]
},
{
"chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -8339,44 +8340,48 @@
]
},
{
"chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66",
"name": "3DPass",
"chainId": "eip155:2109",
"name": "Exosama",
"assets": [
{
"assetId": 0,
"symbol": "P3D",
"precision": 12,
"priceId": "3dpass",
"icon": "P3D.svg"
"symbol": "SAMA",
"priceId": "exosama-network",
"type": "evmNative",
"icon": "SAMA.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://rpc.3dpass.org",
"name": "3DPass node"
},
{
"url": "wss://rpc.p3d.top",
"name": "Lzmz node"
"url": "wss://rpc.exosama.com",
"name": "Exosama node"
}
],
"explorers": [
{
"name": "3DPass explorer",
"extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}",
"account": "https://explorer.3dpass.org/account/{address}"
"name": "Exosama explorer",
"extrinsic": "https://explorer.exosama.com/tx/{hash}",
"account": "https://explorer.exosama.com/address/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://subquery-history-3dpass-prod.novasama-tech.org"
"type": "etherscan",
"url": "https://explorer.exosama.com/api",
"parameters": {
"assetType": "evm"
}
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg",
"addressPrefix": 71
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg",
"addressPrefix": 2109,
"options": [
"ethereumBased",
"noSubstrateRuntime"
]
},
{
"chainId": "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee",
@@ -8474,6 +8479,57 @@
"ethereumBased"
]
},
{
"chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Crab",
"assets": [
{
"assetId": 0,
"symbol": "CRAB",
"precision": 18,
"priceId": "darwinia-network-native-token",
"icon": "CRAB.svg"
},
{
"assetId": 1,
"symbol": "CKTON",
"precision": 18,
"type": "statemine",
"icon": "CKTON.svg",
"typeExtras": {
"assetId": "1026",
"isSufficient": true
}
}
],
"nodes": [
{
"url": "wss://crab-rpc.darwinia.network/",
"name": "Darwinia node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://crab.subscan.io/extrinsic/{hash}",
"account": "https://crab.subscan.io/account/{address}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://subquery-history-crab-prod.novasama-tech.org"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg",
"addressPrefix": 42,
"options": [
"ethereumBased"
]
},
{
"chainId": "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -9841,42 +9897,6 @@
"supportsGenericLedgerApp": true
}
},
{
"chainId": "31a7d8914fb31c249b972f18c115f1e22b4b039abbcb03c73b6774c5642f9efe",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
"name": "InvArch (PAUSED)",
"assets": [
{
"assetId": 0,
"symbol": "VARCH",
"precision": 12,
"icon": "VARCH.svg"
}
],
"nodes": [
{
"url": "wss://invarch.ibp.network",
"name": "IBP1 node"
},
{
"url": "wss://invarch.dotters.network",
"name": "IBP2 node"
}
],
"explorers": [
{
"name": "Statescan",
"account": "https://invarch.statescan.io/#/accounts/{address}",
"event": "https://invarch.statescan.io/#/events/{event}",
"extrinsic": "https://invarch.statescan.io/#/extrinsics/{hash}"
}
],
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/InvArch.svg",
"addressPrefix": 117,
"additional": {
"supportsGenericLedgerApp": true
}
},
{
"chainId": "8b404e7ed8789d813982b9cb4c8b664c05b3fbf433309f603af014ec9ce56a8c",
"name": "Crust",
@@ -10064,40 +10084,6 @@
"disabledCheckMetadataHash": true
}
},
{
"chainId": "1d73b9f5dc392744e0dee00a6d6254fcfa2305386cceba60315894fa4807053a",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Curio",
"assets": [
{
"assetId": 0,
"symbol": "CGT",
"precision": 18,
"priceId": "curio-governance",
"icon": "CGT.svg"
}
],
"nodes": [
{
"url": "wss://archive.parachain.curioinvest.com",
"name": "Curio 1 node"
},
{
"url": "wss://parachain.curioinvest.com/",
"name": "Curio 2 node"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://subquery-history-curio-prod.novasama-tech.org"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Curio.svg",
"addressPrefix": 777
},
{
"chainId": "d3d2f3a3495dc597434a99d7d449ebad6616db45e4e4f178f31cc6fa14378b70",
"name": "Avail Turing Testnet",
@@ -10569,55 +10555,6 @@
"testnet"
]
},
{
"chainId": "eip155:41455",
"name": "Aleph Zero EVM (PAUSED)",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"priceId": "aleph-zero",
"type": "evmNative",
"icon": "AZERO.svg",
"precision": 18
}
],
"nodeSelectionStrategy": "uniform",
"nodes": [
{
"url": "https://alephzero.drpc.org",
"name": "Aleph Zero EVM rpc node"
},
{
"url": "wss://alephzero.drpc.org",
"name": "Aleph Zero EVM wss node"
}
],
"externalApi": {
"history": [
{
"type": "etherscan",
"url": "https://evm-explorer.alephzero.org/api",
"parameters": {
"assetType": "evm"
}
}
]
},
"explorers": [
{
"name": "Aleph Zero EVM Explorer",
"extrinsic": "https://evm-explorer.alephzero.org/tx/{hash}",
"account": "https://evm-explorer.alephzero.org/address/{address}"
}
],
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 41455,
"options": [
"ethereumBased",
"noSubstrateRuntime"
]
},
{
"chainId": "eip155:8453",
"name": "Base",
@@ -10828,6 +10765,38 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Humanode.svg",
"addressPrefix": 5234
},
{
"chainId": "03aa6b475a03f8baf7f83e448513b00eaab03aefa4ed64bd1d31160dce028add",
"name": "DeepBrain",
"assets": [
{
"assetId": 0,
"symbol": "DBC",
"precision": 15,
"priceId": "deepbrain-chain",
"icon": "DBC.svg",
"staking": [
"relaychain",
"nomination-pools"
]
}
],
"nodes": [
{
"url": "wss://info.dbcwallet.io",
"name": "DBC node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://dbc.subscan.io/extrinsic/{hash}",
"account": "https://dbc.subscan.io/account/{address}"
}
],
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DeepBrain.svg",
"addressPrefix": 42
},
{
"chainId": "d2a5d385932d1f650dae03ef8e2748983779ee342c614f80854d32b8cd8fa48c",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
+40 -90
View File
@@ -2031,58 +2031,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg",
"addressPrefix": 78
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json",
"overridesCommon": true
},
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}",
"event": null
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
}
],
"externalApi": {
"history": {
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz"
}
},
"color": "linear-gradient(315deg, #CB2E41 0%, #ED5B6D 100%)",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"addressPrefix": 255
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -2909,44 +2857,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg",
"addressPrefix": 42
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial Parachain",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json",
"overridesCommon": true
},
"externalApi": {
"history": {
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial"
}
},
"color": "linear-gradient(315deg, #0C0011 0%, #681391 75%, #3F3F3F 75.01%)",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -3363,6 +3273,46 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg",
"addressPrefix": 51
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"priceId": "aleph-zero",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg"
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}",
"event": null
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json",
"overridesCommon": true
},
"externalApi": {
"history": {
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
},
"color": "linear-gradient(315deg, #008464 20%, #69E6C8 100%)",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg",
"addressPrefix": 42
},
{
"chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
+40 -90
View File
@@ -2031,58 +2031,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg",
"addressPrefix": 78
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json",
"overridesCommon": true
},
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}",
"event": null
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
}
],
"externalApi": {
"history": {
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz"
}
},
"color": "linear-gradient(315deg, #CB2E41 0%, #ED5B6D 100%)",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"addressPrefix": 255
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -2909,44 +2857,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg",
"addressPrefix": 42
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial Parachain",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json",
"overridesCommon": true
},
"externalApi": {
"history": {
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial"
}
},
"color": "linear-gradient(315deg, #0C0011 0%, #681391 75%, #3F3F3F 75.01%)",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -3363,6 +3273,46 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg",
"addressPrefix": 51
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"priceId": "aleph-zero",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg"
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}",
"event": null
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json",
"overridesCommon": true
},
"externalApi": {
"history": {
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
},
"color": "linear-gradient(315deg, #008464 20%, #69E6C8 100%)",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg",
"addressPrefix": 42
},
{
"chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
+41 -90
View File
@@ -2222,58 +2222,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg",
"addressPrefix": 78
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json",
"overridesCommon": true
},
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}",
"event": null
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
}
],
"externalApi": {
"history": {
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz"
}
},
"color": "linear-gradient(315deg, #CB2E41 0%, #ED5B6D 100%)",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"addressPrefix": 255
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -3152,44 +3100,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg",
"addressPrefix": 42
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial Parachain",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json",
"overridesCommon": true
},
"externalApi": {
"history": {
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial"
}
},
"color": "linear-gradient(315deg, #0C0011 0%, #681391 75%, #3F3F3F 75.01%)",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -3642,6 +3552,47 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg",
"addressPrefix": 51
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"staking": "relaychain",
"priceId": "aleph-zero",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg"
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}",
"event": null
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json",
"overridesCommon": true
},
"externalApi": {
"history": {
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
},
"color": "linear-gradient(315deg, #008464 20%, #69E6C8 100%)",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg",
"addressPrefix": 42
},
{
"chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
+45 -94
View File
@@ -2131,62 +2131,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg",
"addressPrefix": 78
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.api.onfinality.io/public-ws",
"name": "OnFinality node"
},
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json",
"overridesCommon": true
},
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}",
"event": null
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
}
],
"externalApi": {
"history": {
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz"
}
},
"color": "linear-gradient(315deg, #CB2E41 0%, #ED5B6D 100%)",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"addressPrefix": 255
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -3079,44 +3023,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg",
"addressPrefix": 42
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial Parachain",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json",
"overridesCommon": true
},
"externalApi": {
"history": {
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial"
}
},
"color": "linear-gradient(315deg, #0C0011 0%, #681391 75%, #3F3F3F 75.01%)",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -3676,6 +3582,51 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg",
"addressPrefix": 51
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"priceId": "aleph-zero",
"staking": "aleph-zero",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg"
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}",
"event": null
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json",
"overridesCommon": true
},
"externalApi": {
"history": {
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
},
"staking": {
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
},
"color": "linear-gradient(315deg, #008464 20%, #69E6C8 100%)",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg",
"addressPrefix": 42
},
{
"chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
+45 -94
View File
@@ -2131,62 +2131,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg",
"addressPrefix": 78
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.api.onfinality.io/public-ws",
"name": "OnFinality node"
},
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json",
"overridesCommon": true
},
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}",
"event": null
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
}
],
"externalApi": {
"history": {
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz"
}
},
"color": "linear-gradient(315deg, #CB2E41 0%, #ED5B6D 100%)",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"addressPrefix": 255
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -3079,44 +3023,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg",
"addressPrefix": 42
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial Parachain",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json",
"overridesCommon": true
},
"externalApi": {
"history": {
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial"
}
},
"color": "linear-gradient(315deg, #0C0011 0%, #681391 75%, #3F3F3F 75.01%)",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -3676,6 +3582,51 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg",
"addressPrefix": 51
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"priceId": "aleph-zero",
"staking": "aleph-zero",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg"
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}",
"event": null
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json",
"overridesCommon": true
},
"externalApi": {
"history": {
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
},
"staking": {
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
},
"color": "linear-gradient(315deg, #008464 20%, #69E6C8 100%)",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg",
"addressPrefix": 42
},
{
"chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
+45 -94
View File
@@ -2355,62 +2355,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg",
"addressPrefix": 78
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.api.onfinality.io/public-ws",
"name": "OnFinality node"
},
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json",
"overridesCommon": true
},
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}",
"event": null
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
}
],
"externalApi": {
"history": {
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz"
}
},
"color": "linear-gradient(315deg, #CB2E41 0%, #ED5B6D 100%)",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"addressPrefix": 255
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -3378,44 +3322,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg",
"addressPrefix": 42
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial Parachain",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json",
"overridesCommon": true
},
"externalApi": {
"history": {
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial"
}
},
"color": "linear-gradient(315deg, #0C0011 0%, #681391 75%, #3F3F3F 75.01%)",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -4012,6 +3918,51 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg",
"addressPrefix": 51
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"staking": "aleph-zero",
"priceId": "aleph-zero",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg"
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}",
"event": null
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json",
"overridesCommon": true
},
"externalApi": {
"history": {
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
},
"staking": {
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
},
"color": "linear-gradient(315deg, #008464 20%, #69E6C8 100%)",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg",
"addressPrefix": 42
},
{
"chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
+44 -97
View File
@@ -2318,62 +2318,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Calamari.svg",
"addressPrefix": 78
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
},
{
"url": "wss://asia-ws-quartz.unique.network",
"name": "Unique Asia node"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json",
"overridesCommon": true
},
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}",
"event": null
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
}
],
"externalApi": {
"history": {
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz"
}
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg",
"addressPrefix": 255
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -3437,47 +3381,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg",
"addressPrefix": 42
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://para.f3joule.space",
"name": "Subsocial node"
},
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json",
"overridesCommon": true
},
"externalApi": {
"history": {
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial"
}
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -4061,6 +3964,50 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing.svg",
"addressPrefix": 51
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"priceId": "aleph-zero",
"staking": "aleph-zero",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg"
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}",
"event": null
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json",
"overridesCommon": true
},
"externalApi": {
"history": {
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
},
"staking": {
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 42
},
{
"chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
+44 -97
View File
@@ -2318,62 +2318,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Calamari.svg",
"addressPrefix": 78
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
},
{
"url": "wss://asia-ws-quartz.unique.network",
"name": "Unique Asia node"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json",
"overridesCommon": true
},
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}",
"event": null
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
}
],
"externalApi": {
"history": {
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz"
}
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg",
"addressPrefix": 255
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -3437,47 +3381,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg",
"addressPrefix": 42
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://para.f3joule.space",
"name": "Subsocial node"
},
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json",
"overridesCommon": true
},
"externalApi": {
"history": {
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial"
}
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -4061,6 +3964,50 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing.svg",
"addressPrefix": 51
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"priceId": "aleph-zero",
"staking": "aleph-zero",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg"
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}",
"event": null
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json",
"overridesCommon": true
},
"externalApi": {
"history": {
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
},
"staking": {
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 42
},
{
"chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
+44 -97
View File
@@ -2479,62 +2479,6 @@
"governance-v1"
]
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
},
{
"url": "wss://asia-ws-quartz.unique.network",
"name": "Unique Asia node"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json",
"overridesCommon": true
},
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}",
"event": null
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
}
],
"externalApi": {
"history": {
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz"
}
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg",
"addressPrefix": 255
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -3803,47 +3747,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg",
"addressPrefix": 42
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://para.f3joule.space",
"name": "Subsocial node"
},
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json",
"overridesCommon": true
},
"externalApi": {
"history": {
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial"
}
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -4484,6 +4387,50 @@
"governance-v1"
]
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"staking": "aleph-zero",
"priceId": "aleph-zero",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg"
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}",
"event": null
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json",
"overridesCommon": true
},
"externalApi": {
"history": {
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
},
"staking": {
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 42
},
{
"chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
+46 -111
View File
@@ -2567,69 +2567,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Calamari.svg",
"addressPrefix": 78
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
},
{
"url": "wss://asia-ws-quartz.unique.network",
"name": "Unique Asia node"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json",
"overridesCommon": true
},
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}",
"event": null
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg",
"addressPrefix": 255
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -3915,54 +3852,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg",
"addressPrefix": 42
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://para.f3joule.space",
"name": "Subsocial node"
},
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -4658,6 +4547,52 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing.svg",
"addressPrefix": 51
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"priceId": "aleph-zero",
"staking": "aleph-zero",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg"
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}",
"event": null
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
],
"staking": {
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 42
},
{
"chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
+46 -111
View File
@@ -2567,69 +2567,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Calamari.svg",
"addressPrefix": 78
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
},
{
"url": "wss://asia-ws-quartz.unique.network",
"name": "Unique Asia node"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json",
"overridesCommon": true
},
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}",
"event": null
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg",
"addressPrefix": 255
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -3915,54 +3852,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg",
"addressPrefix": 42
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://para.f3joule.space",
"name": "Subsocial node"
},
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -4658,6 +4547,52 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing.svg",
"addressPrefix": 51
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"priceId": "aleph-zero",
"staking": "aleph-zero",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg"
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}",
"event": null
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
],
"staking": {
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 42
},
{
"chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
+46 -111
View File
@@ -2748,69 +2748,6 @@
"governance-v1"
]
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
},
{
"url": "wss://asia-ws-quartz.unique.network",
"name": "Unique Asia node"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json",
"overridesCommon": true
},
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}",
"event": null
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg",
"addressPrefix": 255
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -4278,54 +4215,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg",
"addressPrefix": 42
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://para.f3joule.space",
"name": "Subsocial node"
},
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -5078,6 +4967,52 @@
"governance-v1"
]
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"staking": "aleph-zero",
"priceId": "aleph-zero",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg"
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}",
"event": null
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
],
"staking": {
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 42
},
{
"chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
+46 -111
View File
@@ -2640,69 +2640,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Calamari.svg",
"addressPrefix": 78
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
},
{
"url": "wss://asia-ws-quartz.unique.network",
"name": "Unique Asia node"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json",
"overridesCommon": true
},
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}",
"event": null
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg",
"addressPrefix": 255
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -3955,54 +3892,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litmus.svg",
"addressPrefix": 131
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://para.f3joule.space",
"name": "Subsocial node"
},
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -4753,6 +4642,52 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing.svg",
"addressPrefix": 51
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"priceId": "aleph-zero",
"staking": "aleph-zero",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg"
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}",
"event": null
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
],
"staking": {
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 42
},
{
"chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
+46 -111
View File
@@ -2640,69 +2640,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Calamari.svg",
"addressPrefix": 78
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
},
{
"url": "wss://asia-ws-quartz.unique.network",
"name": "Unique Asia node"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json",
"overridesCommon": true
},
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}",
"event": null
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg",
"addressPrefix": 255
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -3955,54 +3892,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litmus.svg",
"addressPrefix": 131
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://para.f3joule.space",
"name": "Subsocial node"
},
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -4753,6 +4642,52 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing.svg",
"addressPrefix": 51
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"priceId": "aleph-zero",
"staking": "aleph-zero",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg"
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}",
"event": null
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
],
"staking": {
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 42
},
{
"chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
+46 -111
View File
@@ -2785,69 +2785,6 @@
"governance-v1"
]
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
},
{
"url": "wss://asia-ws-quartz.unique.network",
"name": "Unique Asia node"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json",
"overridesCommon": true
},
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}",
"event": null
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg",
"addressPrefix": 255
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -4283,54 +4220,6 @@
"governance-v1"
]
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://para.f3joule.space",
"name": "Subsocial node"
},
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -5134,6 +5023,52 @@
"governance-v1"
]
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"staking": "aleph-zero",
"priceId": "aleph-zero",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg"
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}",
"event": null
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
],
"staking": {
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 42
},
{
"chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
+48 -111
View File
@@ -2680,69 +2680,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Calamari.svg",
"addressPrefix": 78
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
},
{
"url": "wss://asia-ws-quartz.unique.network",
"name": "Unique Asia node"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json",
"overridesCommon": true
},
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}",
"event": null
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg",
"addressPrefix": 255
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -3959,54 +3896,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litmus.svg",
"addressPrefix": 131
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://para.f3joule.space",
"name": "Subsocial node"
},
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -4761,6 +4650,54 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing.svg",
"addressPrefix": 51
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"priceId": "aleph-zero",
"staking": "aleph-zero",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg"
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}",
"event": null
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
],
"staking": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 42
},
{
"chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
+48 -111
View File
@@ -2680,69 +2680,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Calamari.svg",
"addressPrefix": 78
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
},
{
"url": "wss://asia-ws-quartz.unique.network",
"name": "Unique Asia node"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json",
"overridesCommon": true
},
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}",
"event": null
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg",
"addressPrefix": 255
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -3959,54 +3896,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litmus.svg",
"addressPrefix": 131
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://para.f3joule.space",
"name": "Subsocial node"
},
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -4761,6 +4650,54 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing.svg",
"addressPrefix": 51
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"priceId": "aleph-zero",
"staking": "aleph-zero",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg"
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}",
"event": null
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
],
"staking": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 42
},
{
"chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
+48 -111
View File
@@ -2881,69 +2881,6 @@
"governance-v1"
]
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
},
{
"url": "wss://asia-ws-quartz.unique.network",
"name": "Unique Asia node"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json",
"overridesCommon": true
},
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}",
"event": null
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg",
"addressPrefix": 255
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -4355,54 +4292,6 @@
"governance-v1"
]
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://para.f3joule.space",
"name": "Subsocial node"
},
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -5214,6 +5103,54 @@
"governance-v1"
]
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"staking": "aleph-zero",
"priceId": "aleph-zero",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg"
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}",
"event": null
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
],
"staking": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 42
},
{
"chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
+93 -111
View File
@@ -2709,69 +2709,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Calamari.svg",
"addressPrefix": 78
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
},
{
"url": "wss://asia-ws-quartz.unique.network",
"name": "Unique Asia node"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json",
"overridesCommon": true
},
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}",
"event": null
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg",
"addressPrefix": 255
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -4022,54 +3959,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litmus.svg",
"addressPrefix": 131
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://para.f3joule.space",
"name": "Subsocial node"
},
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -4827,6 +4716,54 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing.svg",
"addressPrefix": 51
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"priceId": "aleph-zero",
"staking": "aleph-zero",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg"
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}",
"event": null
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
],
"staking": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 42
},
{
"chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -6136,6 +6073,51 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hashed.svg",
"addressPrefix": 42
},
{
"chainId": "eip155:2109",
"name": "Exosama",
"assets": [
{
"assetId": 0,
"symbol": "SAMA",
"priceId": "exosama-network",
"type": "evmNative",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://rpc.exosama.com",
"name": "Exosama node"
}
],
"explorers": [
{
"name": "Exosama explorer",
"extrinsic": "https://explorer.exosama.com/tx/{hash}",
"account": "https://explorer.exosama.com/address/{address}",
"event": null
}
],
"externalApi": {
"history": [
{
"type": "etherscan",
"url": "https://explorer.exosama.com/api",
"parameters": {
"assetType": "evm"
}
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg",
"addressPrefix": 2109,
"options": [
"ethereumBased",
"noSubstrateRuntime"
]
},
{
"chainId": "2f0555cc76fc2840a25a6ea3b9637146806f1f44b090c175ffde2a7e5ab36c03",
"name": "Bittensor",
+93 -111
View File
@@ -2709,69 +2709,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Calamari.svg",
"addressPrefix": 78
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
},
{
"url": "wss://asia-ws-quartz.unique.network",
"name": "Unique Asia node"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json",
"overridesCommon": true
},
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}",
"event": null
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg",
"addressPrefix": 255
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -4022,54 +3959,6 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litmus.svg",
"addressPrefix": 131
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://para.f3joule.space",
"name": "Subsocial node"
},
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -4827,6 +4716,54 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing.svg",
"addressPrefix": 51
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"priceId": "aleph-zero",
"staking": "aleph-zero",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg"
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}",
"event": null
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
],
"staking": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 42
},
{
"chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -6136,6 +6073,51 @@
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hashed.svg",
"addressPrefix": 42
},
{
"chainId": "eip155:2109",
"name": "Exosama",
"assets": [
{
"assetId": 0,
"symbol": "SAMA",
"priceId": "exosama-network",
"type": "evmNative",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://rpc.exosama.com",
"name": "Exosama node"
}
],
"explorers": [
{
"name": "Exosama explorer",
"extrinsic": "https://explorer.exosama.com/tx/{hash}",
"account": "https://explorer.exosama.com/address/{address}",
"event": null
}
],
"externalApi": {
"history": [
{
"type": "etherscan",
"url": "https://explorer.exosama.com/api",
"parameters": {
"assetType": "evm"
}
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg",
"addressPrefix": 2109,
"options": [
"ethereumBased",
"noSubstrateRuntime"
]
},
{
"chainId": "2f0555cc76fc2840a25a6ea3b9637146806f1f44b090c175ffde2a7e5ab36c03",
"name": "Bittensor",
+76 -126
View File
@@ -2878,69 +2878,6 @@
"governance-v1"
]
},
{
"chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "QUARTZ",
"assets": [
{
"assetId": 0,
"symbol": "QTZ",
"priceId": "quartz",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://quartz.unique.network",
"name": "Unique node"
},
{
"url": "wss://eu-ws-quartz.unique.network",
"name": "Unique Europe node"
},
{
"url": "wss://us-ws-quartz.unique.network",
"name": "Unique US node"
},
{
"url": "wss://asia-ws-quartz.unique.network",
"name": "Unique Asia node"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json",
"overridesCommon": true
},
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://quartz.subscan.io/extrinsic/{hash}",
"account": "https://quartz.subscan.io/account/{address}",
"event": null
},
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg",
"addressPrefix": 255
},
{
"chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -4490,54 +4427,6 @@
"governance-v1"
]
},
{
"chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
"name": "Subsocial",
"assets": [
{
"assetId": 0,
"symbol": "SUB",
"precision": 10,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg"
}
],
"nodes": [
{
"url": "wss://para.f3joule.space",
"name": "Subsocial node"
},
{
"url": "wss://para.subsocial.network",
"name": "Dappforce node"
}
],
"explorers": [
{
"name": "Sub.ID",
"account": "https://sub.id/{address}"
},
{
"name": "Polkaholic",
"account": "https://polkaholic.io/account/{address}",
"extrinsic": "https://polkaholic.io/tx/{hash}"
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg",
"addressPrefix": 28
},
{
"chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc",
"parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
@@ -5352,6 +5241,54 @@
"governance-v1"
]
},
{
"chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"name": "Aleph Zero",
"assets": [
{
"assetId": 0,
"symbol": "AZERO",
"staking": "aleph-zero",
"priceId": "aleph-zero",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg"
}
],
"nodes": [
{
"url": "wss://ws.azero.dev",
"name": "Aleph Zero node"
}
],
"explorers": [
{
"name": "Subscan",
"extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}",
"account": "https://alephzero.subscan.io/account/{address}",
"event": null
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json",
"overridesCommon": true
},
"externalApi": {
"history": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
],
"staking": [
{
"type": "subquery",
"url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero"
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg",
"addressPrefix": 42
},
{
"chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d",
"parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
@@ -7281,36 +7218,49 @@
]
},
{
"chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66",
"name": "3DPass",
"chainId": "eip155:2109",
"name": "Exosama",
"assets": [
{
"assetId": 0,
"symbol": "P3D",
"precision": 12,
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/P3D.svg"
"symbol": "SAMA",
"priceId": "exosama-network",
"type": "evmNative",
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg",
"precision": 18
}
],
"nodes": [
{
"url": "wss://rpc2.3dpass.org",
"name": "3DPass node"
"url": "wss://rpc.exosama.com",
"name": "Exosama node"
}
],
"explorers": [
{
"name": "3DPass explorer",
"extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}",
"account": "https://explorer.3dpass.org/account/{address}",
"name": "Exosama explorer",
"extrinsic": "https://explorer.exosama.com/tx/{hash}",
"account": "https://explorer.exosama.com/address/{address}",
"event": null
}
],
"types": {
"url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/3dpass.json",
"overridesCommon": true
"externalApi": {
"history": [
{
"type": "etherscan",
"url": "https://explorer.exosama.com/api",
"parameters": {
"assetType": "evm"
}
}
]
},
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg",
"addressPrefix": 71
"icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg",
"addressPrefix": 2109,
"options": [
"ethereumBased",
"noSubstrateRuntime"
]
},
{
"chainId": "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee",
+16 -21
View File
@@ -2,11 +2,11 @@
"description": "Chains with broken/unreachable RPC endpoints - will be excluded",
"mode": "blacklist",
"reason": "DNS resolution failures or unreachable nodes",
"last_updated": "2026-02-11",
"last_updated": "2026-07-08",
"chains": [
{
"name": "AlephZero",
"reason": "rpc.alephzero.raas.gelato.cloud unreachable"
"name": "Aleph Zero EVM",
"reason": "rpc.alephzero.raas.gelato.cloud / ws.alephzero.raas.gelato.cloud unreachable"
},
{
"name": "InvArch",
@@ -14,32 +14,27 @@
},
{
"name": "Quartz",
"reason": "quartz.unique.network endpoints unreachable"
"reason": "quartz.unique.network, eu-ws-quartz.unique.network, us-ws-quartz.unique.network unreachable"
},
{
"name": "Passet Hub Testnet",
"reason": "testnet-passet-hub-eth-rpc.polkadot.io unreachable"
"name": "3DPass",
"reason": "rpc.3dpass.org returns 502, rpc.p3d.top unreachable - confirmed live 2026-07-08"
},
{
"name": "Darwinia Crab",
"reason": "crab-rpc.darwinia.network DNS failure"
"name": "Curio",
"reason": "archive.parachain.curioinvest.com and parachain.curioinvest.com unreachable - confirmed live 2026-07-08"
},
{
"name": "DeepBrain",
"reason": "info.dbcwallet.io SSL certificate mismatch"
},
{
"name": "Exosama",
"reason": "rpc.exosama.com 403 Forbidden"
"name": "Subsocial",
"reason": "para.subsocial.network SSL handshake failure, para.f3joule.space unreachable - confirmed live 2026-07-08"
}
],
"chain_ids": [
"70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e",
"f6c2c9174aa58c1c5b38d44a7e946c94a38cfd6e0ad9e2e9c5b14a7bc7ee6f44",
"cd4d732201ebe5d6b014edda071c4203e16867305332f43c2e25ae6c9a1b7e6f",
"3d22af97d919611e03bbcbda96f65988758865423e89b2d99547a6bb61452db3",
"86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24",
"03aa6b475a03f8baf7f83e448513b00eaab03aefa4ed64bd1d31160dce028add",
"eip155:2109"
"eip155:41455",
"31a7d8914fb31c249b972f18c115f1e22b4b039abbcb03c73b6774c5642f9efe",
"cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554",
"6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66",
"1d73b9f5dc392744e0dee00a6d6254fcfa2305386cceba60315894fa4807053a",
"4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f"
]
}
+9
View File
@@ -108,6 +108,7 @@ def sync_chains():
blocked_ids = load_blacklist()
print(f" Blacklist: {len(blocked_ids)} chains excluded")
matched_blocked_ids = set()
pezkuwi_chains_file = PEZKUWI_OVERLAY / "chains" / "pezkuwi-chains.json"
pezkuwi_chains = load_json(pezkuwi_chains_file) if pezkuwi_chains_file.exists() else []
@@ -121,6 +122,7 @@ def sync_chains():
nova_file = version_dir / "chains.json"
if nova_file.exists():
nova_chains = load_json(nova_file)
matched_blocked_ids |= blocked_ids & {c['chainId'] for c in nova_chains}
merged = merge_chains(nova_chains, pezkuwi_chains, blocked_ids)
save_json(output_dir / "chains.json", merged)
print(f" {version}/chains.json: {len(pezkuwi_chains)} + {len(nova_chains)} - {len(blocked_ids)} blocked = {len(merged)}")
@@ -145,6 +147,13 @@ def sync_chains():
shutil.rmtree(output_preconfig)
shutil.copytree(nova_preconfig, output_preconfig)
stale_blocked_ids = blocked_ids - matched_blocked_ids
if stale_blocked_ids:
print(f" WARNING: {len(stale_blocked_ids)} blacklist chain_id(s) matched nothing in Nova's current chains "
f"- likely stale (upstream changed the chain's id) and NOT actually blocking anything:")
for stale_id in stale_blocked_ids:
print(f" - {stale_id}")
def sync_xcm():
print("\nSyncing XCM...")