From 1529de750fdaa171a3897ab8f53a0d8b1642d7c7 Mon Sep 17 00:00:00 2001 From: SatoshiQaziMuhammed Date: Thu, 9 Jul 2026 12:12:12 -0700 Subject: [PATCH 1/3] test: add per-asset balance fixture covering full Pezkuwi ecosystem (#44) chains_for_testBalance.json only has one entry per chain (native balance via a raw RPC query, bypassing the app's real sync pipeline entirely - this is why it couldn't catch the 2026-07-09 HEZ-on-Asset-Hub silent sync failure). This new fixture covers individual assets (HEZ/PEZ/USDT/ DOT/ETH/BTC across Pezkuwi's 3 chains) and is meant to drive a test that goes through the real BalancesUpdateSystem -> AssetCache pipeline, which is what actually caught that bug. --- .../tests/pezkuwi_assets_for_testBalance.json | 55 +++++++++++++++++++ scripts/sync_from_nova.py | 9 +++ tests/pezkuwi_assets_for_testBalance.json | 55 +++++++++++++++++++ 3 files changed, 119 insertions(+) create mode 100644 pezkuwi-overlay/tests/pezkuwi_assets_for_testBalance.json create mode 100644 tests/pezkuwi_assets_for_testBalance.json diff --git a/pezkuwi-overlay/tests/pezkuwi_assets_for_testBalance.json b/pezkuwi-overlay/tests/pezkuwi_assets_for_testBalance.json new file mode 100644 index 0000000..883861b --- /dev/null +++ b/pezkuwi-overlay/tests/pezkuwi_assets_for_testBalance.json @@ -0,0 +1,55 @@ +{ + "description": "Per-asset fixture for exercising the REAL BalancesUpdateSystem -> AssetCache/AssetDao pipeline (not a raw low-level RPC query like chains_for_testBalance.json/BalancesIntegrationTest uses). Each entry asserts an `assets` DB row eventually gets written for that (chainId, assetId) pair for the mainnet Founder account - this is what actually caught the 2026-07-09 HEZ-on-Asset-Hub silent sync failure, which chains_for_testBalance.json's raw-query test could NOT have caught since it bypasses BalancesUpdateSystem entirely. The assertion is 'a row exists', not 'balance is non-zero' - a written zero-balance row is still valid proof the sync pipeline completed for that asset.", + "last_updated": "2026-07-09", + "account": "5CyuFfbF95rzBxru7c9yEsX4XmQXUxpLUcbj9RLg9K1cGiiF", + "assets": [ + { + "chainId": "1aa94987791a5544e9667ec249d2cef1b8fdd6083c85b93fc37892d54a1156ca", + "chainName": "Pezkuwi", + "assetId": 0, + "symbol": "HEZ" + }, + { + "chainId": "e7c15092dcbe3f320260ddbbc685bfceed9125a3b3d8436db2766201dec3b949", + "chainName": "Pezkuwi Asset Hub", + "assetId": 0, + "symbol": "HEZ" + }, + { + "chainId": "e7c15092dcbe3f320260ddbbc685bfceed9125a3b3d8436db2766201dec3b949", + "chainName": "Pezkuwi Asset Hub", + "assetId": 1, + "symbol": "PEZ" + }, + { + "chainId": "e7c15092dcbe3f320260ddbbc685bfceed9125a3b3d8436db2766201dec3b949", + "chainName": "Pezkuwi Asset Hub", + "assetId": 1000, + "symbol": "USDT" + }, + { + "chainId": "e7c15092dcbe3f320260ddbbc685bfceed9125a3b3d8436db2766201dec3b949", + "chainName": "Pezkuwi Asset Hub", + "assetId": 1001, + "symbol": "DOT" + }, + { + "chainId": "e7c15092dcbe3f320260ddbbc685bfceed9125a3b3d8436db2766201dec3b949", + "chainName": "Pezkuwi Asset Hub", + "assetId": 1002, + "symbol": "ETH" + }, + { + "chainId": "e7c15092dcbe3f320260ddbbc685bfceed9125a3b3d8436db2766201dec3b949", + "chainName": "Pezkuwi Asset Hub", + "assetId": 1003, + "symbol": "BTC" + }, + { + "chainId": "69a8d025ab7b63363935d7d9397e0f652826c94271c1bc55c4fdfe72cccf1cfa", + "chainName": "Pezkuwi People", + "assetId": 0, + "symbol": "HEZ" + } + ] +} diff --git a/scripts/sync_from_nova.py b/scripts/sync_from_nova.py index 4133b3f..44be423 100644 --- a/scripts/sync_from_nova.py +++ b/scripts/sync_from_nova.py @@ -349,6 +349,15 @@ def sync_tests(): save_json(OUTPUT_TESTS / "chains_for_testBalance.json", filtered) print(f" chains_for_testBalance.json: {len(fixture)} - {dropped} not in {latest_version.name} + {added} Pezkuwi = {len(filtered)}") + # Per-asset fixture (pezkuwi_assets_for_testBalance.json) - unlike chains_for_testBalance.json above, + # this drives a test that goes through the REAL BalancesUpdateSystem/AssetCache pipeline rather than a + # raw RPC query, and covers individual assets (HEZ/PEZ/USDT/DOT/ETH/BTC) rather than just one native + # balance per chain. It's Pezkuwi's own curated list, published as-is - no Nova fixture to filter against. + pezkuwi_assets_file = PEZKUWI_OVERLAY / "tests" / "pezkuwi_assets_for_testBalance.json" + if pezkuwi_assets_file.exists(): + save_json(OUTPUT_TESTS / "pezkuwi_assets_for_testBalance.json", load_json(pezkuwi_assets_file)) + print(f" pezkuwi_assets_for_testBalance.json: {len(load_json(pezkuwi_assets_file)['assets'])} asset(s)") + def main(): print("=" * 60) diff --git a/tests/pezkuwi_assets_for_testBalance.json b/tests/pezkuwi_assets_for_testBalance.json new file mode 100644 index 0000000..883861b --- /dev/null +++ b/tests/pezkuwi_assets_for_testBalance.json @@ -0,0 +1,55 @@ +{ + "description": "Per-asset fixture for exercising the REAL BalancesUpdateSystem -> AssetCache/AssetDao pipeline (not a raw low-level RPC query like chains_for_testBalance.json/BalancesIntegrationTest uses). Each entry asserts an `assets` DB row eventually gets written for that (chainId, assetId) pair for the mainnet Founder account - this is what actually caught the 2026-07-09 HEZ-on-Asset-Hub silent sync failure, which chains_for_testBalance.json's raw-query test could NOT have caught since it bypasses BalancesUpdateSystem entirely. The assertion is 'a row exists', not 'balance is non-zero' - a written zero-balance row is still valid proof the sync pipeline completed for that asset.", + "last_updated": "2026-07-09", + "account": "5CyuFfbF95rzBxru7c9yEsX4XmQXUxpLUcbj9RLg9K1cGiiF", + "assets": [ + { + "chainId": "1aa94987791a5544e9667ec249d2cef1b8fdd6083c85b93fc37892d54a1156ca", + "chainName": "Pezkuwi", + "assetId": 0, + "symbol": "HEZ" + }, + { + "chainId": "e7c15092dcbe3f320260ddbbc685bfceed9125a3b3d8436db2766201dec3b949", + "chainName": "Pezkuwi Asset Hub", + "assetId": 0, + "symbol": "HEZ" + }, + { + "chainId": "e7c15092dcbe3f320260ddbbc685bfceed9125a3b3d8436db2766201dec3b949", + "chainName": "Pezkuwi Asset Hub", + "assetId": 1, + "symbol": "PEZ" + }, + { + "chainId": "e7c15092dcbe3f320260ddbbc685bfceed9125a3b3d8436db2766201dec3b949", + "chainName": "Pezkuwi Asset Hub", + "assetId": 1000, + "symbol": "USDT" + }, + { + "chainId": "e7c15092dcbe3f320260ddbbc685bfceed9125a3b3d8436db2766201dec3b949", + "chainName": "Pezkuwi Asset Hub", + "assetId": 1001, + "symbol": "DOT" + }, + { + "chainId": "e7c15092dcbe3f320260ddbbc685bfceed9125a3b3d8436db2766201dec3b949", + "chainName": "Pezkuwi Asset Hub", + "assetId": 1002, + "symbol": "ETH" + }, + { + "chainId": "e7c15092dcbe3f320260ddbbc685bfceed9125a3b3d8436db2766201dec3b949", + "chainName": "Pezkuwi Asset Hub", + "assetId": 1003, + "symbol": "BTC" + }, + { + "chainId": "69a8d025ab7b63363935d7d9397e0f652826c94271c1bc55c4fdfe72cccf1cfa", + "chainName": "Pezkuwi People", + "assetId": 0, + "symbol": "HEZ" + } + ] +} From 6f87826b235968f4073df900ec15540f7f7fd1cc Mon Sep 17 00:00:00 2001 From: SatoshiQaziMuhammed Date: Thu, 9 Jul 2026 16:02:39 -0700 Subject: [PATCH 2/3] fix: remove DOT/ETH/BTC from Pezkuwi Asset Hub - never created on-chain (#46) These 3 assetIds (1001/1002/1003) were added in 173f08a with icons pointing at novasamatech/nova-utils (Nova's own repo, not Pezkuwi's) and generic names/priceIds - clearly copied from a template rather than verified against Pezkuwi's actual chain state. Verified live via @pezkuwi/api against wss://asset-hub-rpc.pezkuwichain.io: api.query.assets.asset(1) -> Live, real supply (PEZ, correct) api.query.assets.asset(1000) -> Live, real supply (USDT, correct) api.query.assets.asset(1001) -> None (DOT, does not exist) api.query.assets.asset(1002) -> None (ETH, does not exist) api.query.assets.asset(1003) -> None (BTC, does not exist) This is what caused wallet-android's StatemineAssetBalance to silently never complete a sync for these 3 assets - it was fetching details for assets that were never created in pallet-assets, not a wallet bug. Also removes them from the new pezkuwi_assets_for_testBalance.json fixture so the test doesn't assert on assets that were never real. --- chains/v10/android/chains.json | 45 ------------------- chains/v10/chains.json | 45 ------------------- chains/v10/chains_dev.json | 45 ------------------- chains/v11/android/chains.json | 45 ------------------- chains/v11/chains.json | 45 ------------------- chains/v11/chains_dev.json | 45 ------------------- chains/v12/android/chains.json | 45 ------------------- chains/v12/chains.json | 45 ------------------- chains/v12/chains_dev.json | 45 ------------------- chains/v13/android/chains.json | 45 ------------------- chains/v13/chains.json | 45 ------------------- chains/v13/chains_dev.json | 45 ------------------- chains/v14/android/chains.json | 45 ------------------- chains/v14/chains.json | 45 ------------------- chains/v14/chains_dev.json | 45 ------------------- chains/v15/android/chains.json | 45 ------------------- chains/v15/chains.json | 45 ------------------- chains/v15/chains_dev.json | 45 ------------------- chains/v16/android/chains.json | 45 ------------------- chains/v16/chains.json | 45 ------------------- chains/v16/chains_dev.json | 45 ------------------- chains/v17/android/chains.json | 45 ------------------- chains/v17/chains.json | 45 ------------------- chains/v17/chains_dev.json | 45 ------------------- chains/v18/android/chains.json | 45 ------------------- chains/v18/chains.json | 45 ------------------- chains/v18/chains_dev.json | 45 ------------------- chains/v19/android/chains.json | 45 ------------------- chains/v19/chains.json | 45 ------------------- chains/v19/chains_dev.json | 45 ------------------- chains/v2/android/chains.json | 45 ------------------- chains/v2/chains.json | 45 ------------------- chains/v2/chains_dev.json | 45 ------------------- chains/v20/android/chains.json | 45 ------------------- chains/v20/chains.json | 45 ------------------- chains/v20/chains_dev.json | 45 ------------------- chains/v21/android/chains.json | 45 ------------------- chains/v21/chains.json | 45 ------------------- chains/v21/chains_dev.json | 45 ------------------- chains/v22/android/chains.json | 45 ------------------- chains/v22/chains.json | 45 ------------------- chains/v22/chains_dev.json | 45 ------------------- chains/v3/android/chains.json | 45 ------------------- chains/v3/chains.json | 45 ------------------- chains/v3/chains_dev.json | 45 ------------------- chains/v4/android/chains.json | 45 ------------------- chains/v4/chains.json | 45 ------------------- chains/v4/chains_dev.json | 45 ------------------- chains/v5/android/chains.json | 45 ------------------- chains/v5/chains.json | 45 ------------------- chains/v5/chains_dev.json | 45 ------------------- chains/v6/android/chains.json | 45 ------------------- chains/v6/chains.json | 45 ------------------- chains/v6/chains_dev.json | 45 ------------------- chains/v7/android/chains.json | 45 ------------------- chains/v7/chains.json | 45 ------------------- chains/v7/chains_dev.json | 45 ------------------- chains/v8/android/chains.json | 45 ------------------- chains/v8/chains.json | 45 ------------------- chains/v8/chains_dev.json | 45 ------------------- chains/v9/android/chains.json | 45 ------------------- chains/v9/chains.json | 45 ------------------- chains/v9/chains_dev.json | 45 ------------------- pezkuwi-overlay/chains/pezkuwi-chains.json | 45 ------------------- .../tests/pezkuwi_assets_for_testBalance.json | 18 -------- tests/pezkuwi_assets_for_testBalance.json | 18 -------- 66 files changed, 2916 deletions(-) diff --git a/chains/v10/android/chains.json b/chains/v10/android/chains.json index 709f0bb..fe551cf 100644 --- a/chains/v10/android/chains.json +++ b/chains/v10/android/chains.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v10/chains.json b/chains/v10/chains.json index 709f0bb..fe551cf 100644 --- a/chains/v10/chains.json +++ b/chains/v10/chains.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v10/chains_dev.json b/chains/v10/chains_dev.json index f5ce74c..987ea59 100644 --- a/chains/v10/chains_dev.json +++ b/chains/v10/chains_dev.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v11/android/chains.json b/chains/v11/android/chains.json index 8e6350a..972a117 100644 --- a/chains/v11/android/chains.json +++ b/chains/v11/android/chains.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v11/chains.json b/chains/v11/chains.json index 8e6350a..972a117 100644 --- a/chains/v11/chains.json +++ b/chains/v11/chains.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v11/chains_dev.json b/chains/v11/chains_dev.json index d60130d..1941f28 100644 --- a/chains/v11/chains_dev.json +++ b/chains/v11/chains_dev.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v12/android/chains.json b/chains/v12/android/chains.json index 83c1ee4..e4db316 100644 --- a/chains/v12/android/chains.json +++ b/chains/v12/android/chains.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v12/chains.json b/chains/v12/chains.json index 83c1ee4..e4db316 100644 --- a/chains/v12/chains.json +++ b/chains/v12/chains.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v12/chains_dev.json b/chains/v12/chains_dev.json index 92decc7..fab7957 100644 --- a/chains/v12/chains_dev.json +++ b/chains/v12/chains_dev.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v13/android/chains.json b/chains/v13/android/chains.json index 205f8cd..ba7802a 100644 --- a/chains/v13/android/chains.json +++ b/chains/v13/android/chains.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v13/chains.json b/chains/v13/chains.json index 205f8cd..ba7802a 100644 --- a/chains/v13/chains.json +++ b/chains/v13/chains.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v13/chains_dev.json b/chains/v13/chains_dev.json index 5857f06..609a8a3 100644 --- a/chains/v13/chains_dev.json +++ b/chains/v13/chains_dev.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v14/android/chains.json b/chains/v14/android/chains.json index cc605f4..d829909 100644 --- a/chains/v14/android/chains.json +++ b/chains/v14/android/chains.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v14/chains.json b/chains/v14/chains.json index cc605f4..d829909 100644 --- a/chains/v14/chains.json +++ b/chains/v14/chains.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v14/chains_dev.json b/chains/v14/chains_dev.json index aa884d5..3df48a9 100644 --- a/chains/v14/chains_dev.json +++ b/chains/v14/chains_dev.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v15/android/chains.json b/chains/v15/android/chains.json index 023be24..96f39e6 100644 --- a/chains/v15/android/chains.json +++ b/chains/v15/android/chains.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v15/chains.json b/chains/v15/chains.json index 023be24..96f39e6 100644 --- a/chains/v15/chains.json +++ b/chains/v15/chains.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v15/chains_dev.json b/chains/v15/chains_dev.json index f3eedf7..14f3fb3 100644 --- a/chains/v15/chains_dev.json +++ b/chains/v15/chains_dev.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v16/android/chains.json b/chains/v16/android/chains.json index 94b3a9a..92d21e9 100644 --- a/chains/v16/android/chains.json +++ b/chains/v16/android/chains.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v16/chains.json b/chains/v16/chains.json index 94b3a9a..92d21e9 100644 --- a/chains/v16/chains.json +++ b/chains/v16/chains.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v16/chains_dev.json b/chains/v16/chains_dev.json index 03d94bb..f1d1a54 100644 --- a/chains/v16/chains_dev.json +++ b/chains/v16/chains_dev.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v17/android/chains.json b/chains/v17/android/chains.json index 3099439..ddd04b5 100644 --- a/chains/v17/android/chains.json +++ b/chains/v17/android/chains.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v17/chains.json b/chains/v17/chains.json index 3099439..ddd04b5 100644 --- a/chains/v17/chains.json +++ b/chains/v17/chains.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v17/chains_dev.json b/chains/v17/chains_dev.json index 1f9de24..80ef805 100644 --- a/chains/v17/chains_dev.json +++ b/chains/v17/chains_dev.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v18/android/chains.json b/chains/v18/android/chains.json index af9cd4a..f96eec2 100644 --- a/chains/v18/android/chains.json +++ b/chains/v18/android/chains.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v18/chains.json b/chains/v18/chains.json index af9cd4a..f96eec2 100644 --- a/chains/v18/chains.json +++ b/chains/v18/chains.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v18/chains_dev.json b/chains/v18/chains_dev.json index fc68ed4..0f9596c 100644 --- a/chains/v18/chains_dev.json +++ b/chains/v18/chains_dev.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v19/android/chains.json b/chains/v19/android/chains.json index e6aada1..c780db3 100644 --- a/chains/v19/android/chains.json +++ b/chains/v19/android/chains.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v19/chains.json b/chains/v19/chains.json index e6aada1..c780db3 100644 --- a/chains/v19/chains.json +++ b/chains/v19/chains.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v19/chains_dev.json b/chains/v19/chains_dev.json index 91e53aa..57a63e5 100644 --- a/chains/v19/chains_dev.json +++ b/chains/v19/chains_dev.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v2/android/chains.json b/chains/v2/android/chains.json index 7258061..43f2992 100644 --- a/chains/v2/android/chains.json +++ b/chains/v2/android/chains.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v2/chains.json b/chains/v2/chains.json index 7258061..43f2992 100644 --- a/chains/v2/chains.json +++ b/chains/v2/chains.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v2/chains_dev.json b/chains/v2/chains_dev.json index bd7017e..f9923bb 100644 --- a/chains/v2/chains_dev.json +++ b/chains/v2/chains_dev.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v20/android/chains.json b/chains/v20/android/chains.json index e019739..f89e82d 100644 --- a/chains/v20/android/chains.json +++ b/chains/v20/android/chains.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v20/chains.json b/chains/v20/chains.json index e019739..f89e82d 100644 --- a/chains/v20/chains.json +++ b/chains/v20/chains.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v20/chains_dev.json b/chains/v20/chains_dev.json index 026b656..4740687 100644 --- a/chains/v20/chains_dev.json +++ b/chains/v20/chains_dev.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v21/android/chains.json b/chains/v21/android/chains.json index 6c91ef0..c8adb6e 100644 --- a/chains/v21/android/chains.json +++ b/chains/v21/android/chains.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v21/chains.json b/chains/v21/chains.json index 6c91ef0..c8adb6e 100644 --- a/chains/v21/chains.json +++ b/chains/v21/chains.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v21/chains_dev.json b/chains/v21/chains_dev.json index b16683b..687253e 100644 --- a/chains/v21/chains_dev.json +++ b/chains/v21/chains_dev.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v22/android/chains.json b/chains/v22/android/chains.json index 64fe2bd..68f890c 100644 --- a/chains/v22/android/chains.json +++ b/chains/v22/android/chains.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v22/chains.json b/chains/v22/chains.json index 64fe2bd..68f890c 100644 --- a/chains/v22/chains.json +++ b/chains/v22/chains.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v22/chains_dev.json b/chains/v22/chains_dev.json index dd67b37..075b61d 100644 --- a/chains/v22/chains_dev.json +++ b/chains/v22/chains_dev.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v3/android/chains.json b/chains/v3/android/chains.json index 4cedf70..789a443 100644 --- a/chains/v3/android/chains.json +++ b/chains/v3/android/chains.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v3/chains.json b/chains/v3/chains.json index 4cedf70..789a443 100644 --- a/chains/v3/chains.json +++ b/chains/v3/chains.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v3/chains_dev.json b/chains/v3/chains_dev.json index db795c8..aa3bc63 100644 --- a/chains/v3/chains_dev.json +++ b/chains/v3/chains_dev.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v4/android/chains.json b/chains/v4/android/chains.json index ad4f03a..25a070c 100644 --- a/chains/v4/android/chains.json +++ b/chains/v4/android/chains.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v4/chains.json b/chains/v4/chains.json index ad4f03a..25a070c 100644 --- a/chains/v4/chains.json +++ b/chains/v4/chains.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v4/chains_dev.json b/chains/v4/chains_dev.json index cb8ce8e..365b4f5 100644 --- a/chains/v4/chains_dev.json +++ b/chains/v4/chains_dev.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v5/android/chains.json b/chains/v5/android/chains.json index eff6f31..92ad7f0 100644 --- a/chains/v5/android/chains.json +++ b/chains/v5/android/chains.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v5/chains.json b/chains/v5/chains.json index eff6f31..92ad7f0 100644 --- a/chains/v5/chains.json +++ b/chains/v5/chains.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v5/chains_dev.json b/chains/v5/chains_dev.json index e294e13..1a85b8d 100644 --- a/chains/v5/chains_dev.json +++ b/chains/v5/chains_dev.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v6/android/chains.json b/chains/v6/android/chains.json index f5cae8e..4b80a8d 100644 --- a/chains/v6/android/chains.json +++ b/chains/v6/android/chains.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v6/chains.json b/chains/v6/chains.json index f5cae8e..4b80a8d 100644 --- a/chains/v6/chains.json +++ b/chains/v6/chains.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v6/chains_dev.json b/chains/v6/chains_dev.json index 0a837c3..9302d2d 100644 --- a/chains/v6/chains_dev.json +++ b/chains/v6/chains_dev.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v7/android/chains.json b/chains/v7/android/chains.json index 973456c..64a3111 100644 --- a/chains/v7/android/chains.json +++ b/chains/v7/android/chains.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v7/chains.json b/chains/v7/chains.json index 973456c..64a3111 100644 --- a/chains/v7/chains.json +++ b/chains/v7/chains.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v7/chains_dev.json b/chains/v7/chains_dev.json index 8d72c9d..721873d 100644 --- a/chains/v7/chains_dev.json +++ b/chains/v7/chains_dev.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v8/android/chains.json b/chains/v8/android/chains.json index f486897..b9ba37c 100644 --- a/chains/v8/android/chains.json +++ b/chains/v8/android/chains.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v8/chains.json b/chains/v8/chains.json index f486897..b9ba37c 100644 --- a/chains/v8/chains.json +++ b/chains/v8/chains.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v8/chains_dev.json b/chains/v8/chains_dev.json index 6222f61..2286eb3 100644 --- a/chains/v8/chains_dev.json +++ b/chains/v8/chains_dev.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v9/android/chains.json b/chains/v9/android/chains.json index c5fe88f..01b7c05 100644 --- a/chains/v9/android/chains.json +++ b/chains/v9/android/chains.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v9/chains.json b/chains/v9/chains.json index c5fe88f..01b7c05 100644 --- a/chains/v9/chains.json +++ b/chains/v9/chains.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/chains/v9/chains_dev.json b/chains/v9/chains_dev.json index b8920ce..7f9e8f6 100644 --- a/chains/v9/chains_dev.json +++ b/chains/v9/chains_dev.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/pezkuwi-overlay/chains/pezkuwi-chains.json b/pezkuwi-overlay/chains/pezkuwi-chains.json index 715afdb..fd56b61 100644 --- a/pezkuwi-overlay/chains/pezkuwi-chains.json +++ b/pezkuwi-overlay/chains/pezkuwi-chains.json @@ -165,51 +165,6 @@ "typeExtras": { "assetId": "1000" } - }, - { - "assetId": 1001, - "symbol": "DOT", - "precision": 10, - "name": "Polkadot", - "priceId": "polkadot", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 1002, - "symbol": "ETH", - "precision": 18, - "name": "Ethereum", - "priceId": "ethereum", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1002" - } - }, - { - "assetId": 1003, - "symbol": "BTC", - "precision": 8, - "name": "Bitcoin", - "priceId": "bitcoin", - "staking": null, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", - "buyProviders": {}, - "sellProviders": {}, - "typeExtras": { - "assetId": "1003" - } } ], "additional": { diff --git a/pezkuwi-overlay/tests/pezkuwi_assets_for_testBalance.json b/pezkuwi-overlay/tests/pezkuwi_assets_for_testBalance.json index 883861b..acf9436 100644 --- a/pezkuwi-overlay/tests/pezkuwi_assets_for_testBalance.json +++ b/pezkuwi-overlay/tests/pezkuwi_assets_for_testBalance.json @@ -27,24 +27,6 @@ "assetId": 1000, "symbol": "USDT" }, - { - "chainId": "e7c15092dcbe3f320260ddbbc685bfceed9125a3b3d8436db2766201dec3b949", - "chainName": "Pezkuwi Asset Hub", - "assetId": 1001, - "symbol": "DOT" - }, - { - "chainId": "e7c15092dcbe3f320260ddbbc685bfceed9125a3b3d8436db2766201dec3b949", - "chainName": "Pezkuwi Asset Hub", - "assetId": 1002, - "symbol": "ETH" - }, - { - "chainId": "e7c15092dcbe3f320260ddbbc685bfceed9125a3b3d8436db2766201dec3b949", - "chainName": "Pezkuwi Asset Hub", - "assetId": 1003, - "symbol": "BTC" - }, { "chainId": "69a8d025ab7b63363935d7d9397e0f652826c94271c1bc55c4fdfe72cccf1cfa", "chainName": "Pezkuwi People", diff --git a/tests/pezkuwi_assets_for_testBalance.json b/tests/pezkuwi_assets_for_testBalance.json index 883861b..acf9436 100644 --- a/tests/pezkuwi_assets_for_testBalance.json +++ b/tests/pezkuwi_assets_for_testBalance.json @@ -27,24 +27,6 @@ "assetId": 1000, "symbol": "USDT" }, - { - "chainId": "e7c15092dcbe3f320260ddbbc685bfceed9125a3b3d8436db2766201dec3b949", - "chainName": "Pezkuwi Asset Hub", - "assetId": 1001, - "symbol": "DOT" - }, - { - "chainId": "e7c15092dcbe3f320260ddbbc685bfceed9125a3b3d8436db2766201dec3b949", - "chainName": "Pezkuwi Asset Hub", - "assetId": 1002, - "symbol": "ETH" - }, - { - "chainId": "e7c15092dcbe3f320260ddbbc685bfceed9125a3b3d8436db2766201dec3b949", - "chainName": "Pezkuwi Asset Hub", - "assetId": 1003, - "symbol": "BTC" - }, { "chainId": "69a8d025ab7b63363935d7d9397e0f652826c94271c1bc55c4fdfe72cccf1cfa", "chainName": "Pezkuwi People", From e4b9ea062ff361067123d2152f53372ea341c79a Mon Sep 17 00:00:00 2001 From: SatoshiQaziMuhammed Date: Thu, 9 Jul 2026 17:29:31 -0700 Subject: [PATCH 3/3] test: verify Polkadot AH USDT sync too, not just Pezkuwi's own chains (#47) The FullSyncPaymentUpdater ordering-bug fix isn't Pezkuwi-specific - it affects any chain's assets on a busy shared subscription connection. 'USDT on Polkadot Asset Hub not showing' was one of the 3 original symptoms reported at the start of this investigation, alongside Tron being disabled and Pezkuwi's own tokens missing. Add it to the fixture so the fix's coverage is actually verified end to end, not assumed. --- pezkuwi-overlay/tests/pezkuwi_assets_for_testBalance.json | 7 +++++++ tests/pezkuwi_assets_for_testBalance.json | 7 +++++++ 2 files changed, 14 insertions(+) diff --git a/pezkuwi-overlay/tests/pezkuwi_assets_for_testBalance.json b/pezkuwi-overlay/tests/pezkuwi_assets_for_testBalance.json index acf9436..eac208b 100644 --- a/pezkuwi-overlay/tests/pezkuwi_assets_for_testBalance.json +++ b/pezkuwi-overlay/tests/pezkuwi_assets_for_testBalance.json @@ -32,6 +32,13 @@ "chainName": "Pezkuwi People", "assetId": 0, "symbol": "HEZ" + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "chainName": "Polkadot Asset Hub", + "assetId": 1, + "symbol": "USDT", + "note": "Non-Pezkuwi chain, deliberately included: 'USDT on Polkadot AH not showing' was one of the 3 originally reported symptoms this whole investigation started from. The fix (reverting FullSyncPaymentUpdater's ordering bug) isn't Pezkuwi-specific, so this verifies it actually closes that report too, not just the Pezkuwi chains." } ] } diff --git a/tests/pezkuwi_assets_for_testBalance.json b/tests/pezkuwi_assets_for_testBalance.json index acf9436..eac208b 100644 --- a/tests/pezkuwi_assets_for_testBalance.json +++ b/tests/pezkuwi_assets_for_testBalance.json @@ -32,6 +32,13 @@ "chainName": "Pezkuwi People", "assetId": 0, "symbol": "HEZ" + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "chainName": "Polkadot Asset Hub", + "assetId": 1, + "symbol": "USDT", + "note": "Non-Pezkuwi chain, deliberately included: 'USDT on Polkadot AH not showing' was one of the 3 originally reported symptoms this whole investigation started from. The fix (reverting FullSyncPaymentUpdater's ordering bug) isn't Pezkuwi-specific, so this verifies it actually closes that report too, not just the Pezkuwi chains." } ] }