diff --git a/common/src/main/res/drawable-hdpi/ic_create_wallet_background.png b/common/src/main/res/drawable-hdpi/ic_create_wallet_background.png index 5e0cd63..6d169a1 100644 Binary files a/common/src/main/res/drawable-hdpi/ic_create_wallet_background.png and b/common/src/main/res/drawable-hdpi/ic_create_wallet_background.png differ diff --git a/common/src/main/res/drawable-ldpi/ic_create_wallet_background.png b/common/src/main/res/drawable-ldpi/ic_create_wallet_background.png index 0f220ce..6cfb511 100644 Binary files a/common/src/main/res/drawable-ldpi/ic_create_wallet_background.png and b/common/src/main/res/drawable-ldpi/ic_create_wallet_background.png differ diff --git a/common/src/main/res/drawable-mdpi/ic_create_wallet_background.png b/common/src/main/res/drawable-mdpi/ic_create_wallet_background.png index 9383ba0..8c382fd 100644 Binary files a/common/src/main/res/drawable-mdpi/ic_create_wallet_background.png and b/common/src/main/res/drawable-mdpi/ic_create_wallet_background.png differ diff --git a/common/src/main/res/drawable-xhdpi/ic_create_wallet_background.png b/common/src/main/res/drawable-xhdpi/ic_create_wallet_background.png index ac16f1e..dee51b1 100644 Binary files a/common/src/main/res/drawable-xhdpi/ic_create_wallet_background.png and b/common/src/main/res/drawable-xhdpi/ic_create_wallet_background.png differ diff --git a/common/src/main/res/drawable-xxhdpi/ic_create_wallet_background.png b/common/src/main/res/drawable-xxhdpi/ic_create_wallet_background.png index 43e18dc..d88cc92 100644 Binary files a/common/src/main/res/drawable-xxhdpi/ic_create_wallet_background.png and b/common/src/main/res/drawable-xxhdpi/ic_create_wallet_background.png differ diff --git a/common/src/main/res/drawable-xxxhdpi/ic_create_wallet_background.png b/common/src/main/res/drawable-xxxhdpi/ic_create_wallet_background.png index b1dc1e2..9632fd9 100644 Binary files a/common/src/main/res/drawable-xxxhdpi/ic_create_wallet_background.png and b/common/src/main/res/drawable-xxxhdpi/ic_create_wallet_background.png differ diff --git a/common/src/main/res/drawable/ic_nav_bar_assets_active.xml b/common/src/main/res/drawable/ic_nav_bar_assets_active.xml index f34c8be..b8ebad5 100644 --- a/common/src/main/res/drawable/ic_nav_bar_assets_active.xml +++ b/common/src/main/res/drawable/ic_nav_bar_assets_active.xml @@ -7,7 +7,7 @@ diff --git a/common/src/main/res/drawable/ic_nav_bar_assets_inactive.xml b/common/src/main/res/drawable/ic_nav_bar_assets_inactive.xml index a8ddc48..782f9ac 100644 --- a/common/src/main/res/drawable/ic_nav_bar_assets_inactive.xml +++ b/common/src/main/res/drawable/ic_nav_bar_assets_inactive.xml @@ -7,7 +7,7 @@ diff --git a/feature-staking-impl/src/main/java/io/novafoundation/nova/feature_staking_impl/di/StakingFeatureModule.kt b/feature-staking-impl/src/main/java/io/novafoundation/nova/feature_staking_impl/di/StakingFeatureModule.kt index d025836..c8f0a13 100644 --- a/feature-staking-impl/src/main/java/io/novafoundation/nova/feature_staking_impl/di/StakingFeatureModule.kt +++ b/feature-staking-impl/src/main/java/io/novafoundation/nova/feature_staking_impl/di/StakingFeatureModule.kt @@ -212,7 +212,8 @@ class StakingFeatureModule { bagListRepository: BagListRepository, totalIssuanceRepository: TotalIssuanceRepository, eraTimeCalculatorFactory: EraTimeCalculatorFactory, - stakingConstantsRepository: StakingConstantsRepository + stakingConstantsRepository: StakingConstantsRepository, + chainRegistry: ChainRegistry ) = StakingSharedComputation( stakingRepository = stakingRepository, computationalCache = computationalCache, @@ -221,7 +222,8 @@ class StakingFeatureModule { bagListRepository = bagListRepository, totalIssuanceRepository = totalIssuanceRepository, eraTimeCalculatorFactory = eraTimeCalculatorFactory, - stakingConstantsRepository = stakingConstantsRepository + stakingConstantsRepository = stakingConstantsRepository, + chainRegistry = chainRegistry ) @Provides @@ -297,7 +299,8 @@ class StakingFeatureModule { sessionRepository: SessionRepository, chainStateRepository: ChainStateRepository, electionsSessionRegistry: ElectionsSessionRegistry, - ) = EraTimeCalculatorFactory(stakingRepository, sessionRepository, chainStateRepository, electionsSessionRegistry) + chainRegistry: ChainRegistry, + ) = EraTimeCalculatorFactory(stakingRepository, sessionRepository, chainStateRepository, electionsSessionRegistry, chainRegistry) @Provides @FeatureScope diff --git a/feature-staking-impl/src/main/java/io/novafoundation/nova/feature_staking_impl/domain/common/EraCalculatorFactory.kt b/feature-staking-impl/src/main/java/io/novafoundation/nova/feature_staking_impl/domain/common/EraCalculatorFactory.kt index 3f6737f..50bafb2 100644 --- a/feature-staking-impl/src/main/java/io/novafoundation/nova/feature_staking_impl/domain/common/EraCalculatorFactory.kt +++ b/feature-staking-impl/src/main/java/io/novafoundation/nova/feature_staking_impl/domain/common/EraCalculatorFactory.kt @@ -9,6 +9,7 @@ import io.novafoundation.nova.feature_staking_impl.data.chain import io.novafoundation.nova.feature_staking_impl.data.repository.SessionRepository import io.novafoundation.nova.feature_staking_impl.data.repository.consensus.ElectionsSessionRegistry import io.novafoundation.nova.runtime.ext.timelineChainIdOrSelf +import io.novafoundation.nova.runtime.multiNetwork.ChainRegistry import io.novafoundation.nova.runtime.repository.ChainStateRepository import kotlinx.coroutines.flow.Flow import kotlinx.coroutines.flow.combine @@ -96,6 +97,7 @@ class EraTimeCalculatorFactory( private val sessionRepository: SessionRepository, private val chainStateRepository: ChainStateRepository, private val electionsSessionRegistry: ElectionsSessionRegistry, + private val chainRegistry: ChainRegistry, ) { suspend fun create( @@ -103,8 +105,8 @@ class EraTimeCalculatorFactory( activeEraFlow: Flow ): Flow { val stakingChain = stakingOption.chain - val stakingChainId = stakingChain.id val timelineChainId = stakingChain.timelineChainIdOrSelf() + val timelineChain = chainRegistry.getChain(timelineChainId) val electionsSession = electionsSessionRegistry.electionsSessionFor(stakingOption) @@ -112,7 +114,7 @@ class EraTimeCalculatorFactory( val sessionLength = electionsSession.sessionLength(timelineChainId) val eraAndStartSessionIndex = activeEraFlow.map { activeEra -> - val eraStartSessionIndex = stakingRepository.eraStartSessionIndex(stakingChainId, activeEra) + val eraStartSessionIndex = stakingRepository.eraStartSessionIndex(timelineChainId, activeEra) activeEra to eraStartSessionIndex } @@ -124,7 +126,7 @@ class EraTimeCalculatorFactory( ) { (activeEra, eraStartSessionIndex), currentSessionIndex, currentEpochIndex, currentSlot -> EraTimeCalculator( startTimeStamp = System.currentTimeMillis().toBigInteger(), - eraLength = stakingRepository.eraLength(stakingChain), + eraLength = stakingRepository.eraLength(timelineChain), blockCreationTime = chainStateRepository.predictedBlockTime(timelineChainId), currentSessionIndex = currentSessionIndex, currentEpochIndex = currentEpochIndex ?: currentSessionIndex, diff --git a/feature-staking-impl/src/main/java/io/novafoundation/nova/feature_staking_impl/domain/common/StakingSharedComputation.kt b/feature-staking-impl/src/main/java/io/novafoundation/nova/feature_staking_impl/domain/common/StakingSharedComputation.kt index d17ad39..149f9fd 100644 --- a/feature-staking-impl/src/main/java/io/novafoundation/nova/feature_staking_impl/domain/common/StakingSharedComputation.kt +++ b/feature-staking-impl/src/main/java/io/novafoundation/nova/feature_staking_impl/domain/common/StakingSharedComputation.kt @@ -18,6 +18,8 @@ import io.novafoundation.nova.feature_staking_impl.domain.minimumStake import io.novafoundation.nova.feature_staking_impl.domain.rewards.RewardCalculator import io.novafoundation.nova.feature_staking_impl.domain.rewards.RewardCalculatorFactory import io.novafoundation.nova.feature_wallet_api.data.network.blockhain.types.Balance +import io.novafoundation.nova.runtime.ext.timelineChainIdOrSelf +import io.novafoundation.nova.runtime.multiNetwork.ChainRegistry import io.novafoundation.nova.runtime.multiNetwork.ChainWithAsset import io.novafoundation.nova.runtime.multiNetwork.chain.model.Chain import io.novafoundation.nova.runtime.multiNetwork.chain.model.ChainId @@ -43,15 +45,18 @@ class StakingSharedComputation( private val bagListRepository: BagListRepository, private val totalIssuanceRepository: TotalIssuanceRepository, private val eraTimeCalculatorFactory: EraTimeCalculatorFactory, - private val stakingConstantsRepository: StakingConstantsRepository + private val stakingConstantsRepository: StakingConstantsRepository, + private val chainRegistry: ChainRegistry ) { fun eraCalculatorFlow(stakingOption: StakingOption, scope: CoroutineScope): Flow { - val chainId = stakingOption.assetWithChain.chain.id + val chain = stakingOption.assetWithChain.chain + val chainId = chain.id + val timelineChainId = chain.timelineChainIdOrSelf() val key = "ERA_TIME_CALCULATOR:$chainId" return computationalCache.useSharedFlow(key, scope) { - val activeEraFlow = activeEraFlow(chainId, scope) + val activeEraFlow = activeEraFlow(timelineChainId, scope) eraTimeCalculatorFactory.create(stakingOption, activeEraFlow) } @@ -79,14 +84,17 @@ class StakingSharedComputation( val key = "MIN_STAKE:$chainId" return computationalCache.useSharedFlow(key, scope) { - val minBond = stakingRepository.minimumNominatorBond(chainId) - val bagListLocator = bagListRepository.bagListLocatorOrNull(chainId) - val totalIssuance = totalIssuanceRepository.getTotalIssuance(chainId) - val bagListScoreConverter = BagListScoreConverter.U128(totalIssuance) - val maxElectingVoters = bagListRepository.maxElectingVotes(chainId) - val bagListSize = bagListRepository.bagListSize(chainId) + val chain = chainRegistry.getChain(chainId) + val timelineChainId = chain.timelineChainIdOrSelf() - electedExposuresWithActiveEraFlow(chainId, scope).map { (exposures, activeEraIndex) -> + val minBond = stakingRepository.minimumNominatorBond(timelineChainId) + val bagListLocator = bagListRepository.bagListLocatorOrNull(timelineChainId) + val totalIssuance = totalIssuanceRepository.getTotalIssuance(timelineChainId) + val bagListScoreConverter = BagListScoreConverter.U128(totalIssuance) + val maxElectingVoters = bagListRepository.maxElectingVotes(timelineChainId) + val bagListSize = bagListRepository.bagListSize(timelineChainId) + + electedExposuresWithActiveEraFlow(timelineChainId, scope).map { (exposures, activeEraIndex) -> val minStake = minimumStake( exposures = exposures.values, minimumNominatorBond = minBond, diff --git a/feature-staking-impl/src/main/java/io/novafoundation/nova/feature_staking_impl/domain/rewards/RewardCalculatorFactory.kt b/feature-staking-impl/src/main/java/io/novafoundation/nova/feature_staking_impl/domain/rewards/RewardCalculatorFactory.kt index 47c1c62..c3302ab 100644 --- a/feature-staking-impl/src/main/java/io/novafoundation/nova/feature_staking_impl/domain/rewards/RewardCalculatorFactory.kt +++ b/feature-staking-impl/src/main/java/io/novafoundation/nova/feature_staking_impl/domain/rewards/RewardCalculatorFactory.kt @@ -28,6 +28,7 @@ import io.novafoundation.nova.runtime.multiNetwork.chain.model.Chain.Asset.Staki import io.novafoundation.nova.runtime.multiNetwork.chain.model.Chain.Asset.StakingType.TURING import io.novafoundation.nova.runtime.multiNetwork.chain.model.Chain.Asset.StakingType.UNSUPPORTED import io.novafoundation.nova.runtime.multiNetwork.chain.model.ChainId +import io.novafoundation.nova.runtime.ext.timelineChainIdOrSelf import io.novafoundation.nova.runtime.repository.TotalIssuanceRepository import kotlinx.coroutines.CoroutineScope import kotlinx.coroutines.Dispatchers @@ -48,7 +49,10 @@ class RewardCalculatorFactory( validatorsPrefs: AccountIdMap, scope: CoroutineScope ): RewardCalculator = withContext(Dispatchers.Default) { - val totalIssuance = totalIssuanceRepository.getTotalIssuance(stakingOption.assetWithChain.chain.id) + val timelineChainId = stakingOption.assetWithChain.chain.timelineChainIdOrSelf() + val totalIssuance = totalIssuanceRepository.getTotalIssuance(timelineChainId) + + Log.d("RewardCalculatorFactory", "totalIssuance for $timelineChainId: $totalIssuance") val validators = exposures.keys.mapNotNull { accountIdHex -> val exposure = exposures[accountIdHex] ?: accountIdNotFound(accountIdHex) @@ -61,6 +65,12 @@ class RewardCalculatorFactory( ) } + Log.d("RewardCalculatorFactory", "Validators count for reward calculation: ${validators.size}") + if (validators.isNotEmpty()) { + val totalStaked = validators.sumOf { it.totalStake } + Log.d("RewardCalculatorFactory", "Total staked: $totalStaked, stakedPortion: ${totalStaked.toDouble() / totalIssuance.toDouble()}") + } + stakingOption.createRewardCalculator(validators, totalIssuance, scope) } @@ -85,10 +95,16 @@ class RewardCalculatorFactory( val custom = customRelayChainCalculator(validators, totalIssuance, scope) if (custom != null) return custom - val activePublicParachains = parasRepository.activePublicParachains(assetWithChain.chain.id) - val inflationConfig = InflationConfig.create(chain.id, activePublicParachains) + val timelineChainId = chain.timelineChainIdOrSelf() + val activePublicParachains = parasRepository.activePublicParachains(timelineChainId) + Log.d("RewardCalculatorFactory", "activePublicParachains for $timelineChainId: $activePublicParachains") - RewardCurveInflationRewardCalculator(validators, totalIssuance, inflationConfig) + val inflationConfig = InflationConfig.create(timelineChainId, activePublicParachains) + Log.d("RewardCalculatorFactory", "Using Default InflationConfig for $timelineChainId") + + val calculator = RewardCurveInflationRewardCalculator(validators, totalIssuance, inflationConfig) + Log.d("RewardCalculatorFactory", "expectedAPY: ${calculator.expectedAPY}, maxAPY: ${calculator.maxAPY}") + calculator } ALEPH_ZERO -> AlephZeroRewardCalculator(validators, chainAsset = assetWithChain.asset) diff --git a/pezkuwi-config/chains.json b/pezkuwi-config/chains.json index fd86b3c..9b32b58 100644 --- a/pezkuwi-config/chains.json +++ b/pezkuwi-config/chains.json @@ -40,11 +40,9 @@ "assetId": 0, "symbol": "HEZ", "precision": 12, - "name": "Hezkurd", + "name": "HEZkurd", "priceId": "hezkurd", - "staking": [ - "relaychain" - ], + "staking": null, "type": "native", "icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/HEZ.png", "buyProviders": {}, @@ -55,13 +53,15 @@ "additional": { "themeColor": "#009639", "defaultBlockTimeMillis": 6000, - "feeViaRuntimeCall": true + "feeViaRuntimeCall": true, + "disabledCheckMetadataHash": true, + "stakingMaxElectingVoters": 22500 } }, { "chainId": "96eb58af1bb7288115b5e4ff1590422533e749293f231974536dc6672417d06f", "name": "Zagros Testnet", - "icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/HEZ.png", + "icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/chains/Pezkuwi.png", "addressPrefix": 42, "options": [ "testnet" @@ -77,7 +77,7 @@ "assetId": 0, "symbol": "HEZ", "precision": 12, - "name": "Hezkurd", + "name": "HEZkurd", "priceId": "hezkurd", "staking": [ "relaychain" @@ -126,9 +126,10 @@ "assetId": 0, "symbol": "HEZ", "precision": 12, - "name": "Hezkurd", + "name": "HEZkurd", "priceId": "hezkurd", "staking": [ + "relaychain", "nomination-pools" ], "type": "native", @@ -217,7 +218,10 @@ "themeColor": "#009639", "defaultBlockTimeMillis": 6000, "feeViaRuntimeCall": true, - "disabledCheckMetadataHash": true + "disabledCheckMetadataHash": true, + "relaychainAsNative": true, + "stakingMaxElectingVoters": 22500, + "timelineChain": "bb4a61ab0c4b8c12f5eab71d0c86c482e03a275ecdafee678dea712474d33d75" } }, { @@ -252,7 +256,7 @@ "assetId": 0, "symbol": "HEZ", "precision": 12, - "name": "Hezkurd", + "name": "HEZkurd", "priceId": "hezkurd", "staking": null, "type": "native", @@ -271,33 +275,24 @@ }, { "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", - "name": "Polkadot", + "name": "Polkadot Relay", "assets": [ { "assetId": 0, "symbol": "DOT", "precision": 10, + "name": "Polkadot", "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", - "staking": [ - "relaychain", - "nomination-pools" - ], - "buyProviders": { - "transak": { - "network": "MAINNET" - }, - "mercuryo": {}, - "banxa": { - "coinType": "DOT", - "blockchain": "DOT" - } - } + "icon": "DOT.svg" } ], "nodes": [ { - "url": "wss://rpc-polkadot.novasama-tech.org", + "url": "wss://rpc-polkadot-1.novasama-tech.org", + "name": "Novasama node" + }, + { + "url": "wss://rpc-polkadot-2.novasama-tech.org", "name": "Novasama node" }, { @@ -315,10 +310,6 @@ "noTls12" ] }, - { - "url": "wss://polkadot-rpc.dwellir.com", - "name": "Dwellir node" - }, { "url": "wss://dot-rpc.stakeworld.io", "name": "Stakeworld node" @@ -343,8 +334,10 @@ "account": "https://polkadot.subscan.io/account/{address}" }, { - "name": "Sub.ID", - "account": "https://sub.id/{address}" + "name": "Statescan", + "account": "https://polkadot.statescan.io/#/accounts/{address}", + "extrinsic": "https://polkadot.statescan.io/#/extrinsics/{hash}", + "event": "https://polkadot.statescan.io/#/events/{event}" } ], "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot.svg", @@ -353,25 +346,25 @@ "staking": [ { "type": "subquery", - "url": "https://gateway.subquery.network/query/0x1a" + "url": "https://subquery-history-polkadot-prod.novasama-tech.org" + } + ], + "staking-rewards": [ + { + "type": "subquery", + "url": "https://subquery-history-polkadot-prod.novasama-tech.org" } ], "history": [ { "type": "subquery", - "url": "https://gateway.subquery.network/query/0x1a" - } - ], - "crowdloans": [ - { - "type": "github", - "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/polkadot.json" + "url": "https://subquery-history-polkadot-prod.novasama-tech.org" } ], "governance": [ { "type": "subsquare", - "url": "https://polkadot.subsquare.io/api" + "url": "https://polkadot-api.subsquare.io" } ], "governance-delegations": [ @@ -388,11 +381,10 @@ ] }, "options": [ - "crowdloans", - "governance", "proxy", "fullSyncByDefault", - "pushSupport" + "pushSupport", + "multisig" ], "additional": { "themeColor": "#E6007A", @@ -405,33 +397,24 @@ }, { "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "name": "Kusama", + "name": "Kusama Relay", "assets": [ { "assetId": 0, "symbol": "KSM", "precision": 12, + "name": "Kusama", "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", - "staking": [ - "relaychain", - "nomination-pools" - ], - "buyProviders": { - "transak": { - "network": "MAINNET" - }, - "mercuryo": {}, - "banxa": { - "coinType": "KSM", - "blockchain": "KSM" - } - } + "icon": "KSM.svg" } ], "nodes": [ { - "url": "wss://rpc-kusama.novasama-tech.org", + "url": "wss://rpc-kusama-1.novasama-tech.org", + "name": "Novasama node" + }, + { + "url": "wss://rpc-kusama-2.novasama-tech.org", "name": "Novasama node" }, { @@ -449,10 +432,6 @@ "noTls12" ] }, - { - "url": "wss://kusama-rpc.dwellir.com", - "name": "Dwellir node" - }, { "url": "wss://rpc-kusama.luckyfriday.io", "name": "LuckyFriday node" @@ -464,10 +443,6 @@ { "url": "wss://kusama.public.curie.radiumblock.co/ws", "name": "Radium node" - }, - { - "url": "wss://kusama.api.onfinality.io/public-ws", - "name": "OnFinality node" } ], "explorers": [ @@ -477,8 +452,10 @@ "account": "https://kusama.subscan.io/account/{address}" }, { - "name": "Sub.ID", - "account": "https://sub.id/{address}" + "name": "Statescan", + "account": "https://kusama.statescan.io/#/accounts/{address}", + "extrinsic": "https://kusama.statescan.io/#/extrinsics/{hash}", + "event": "https://kusama.statescan.io/#/events/{event}" } ], "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama.svg", @@ -487,25 +464,25 @@ "staking": [ { "type": "subquery", - "url": "https://gateway.subquery.network/query/0x1b" + "url": "https://subquery-history-kusama-prod.novasama-tech.org" + } + ], + "staking-rewards": [ + { + "type": "subquery", + "url": "https://subquery-history-kusama-prod.novasama-tech.org" } ], "history": [ { "type": "subquery", - "url": "https://gateway.subquery.network/query/0x1b" - } - ], - "crowdloans": [ - { - "type": "github", - "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/kusama.json" + "url": "https://subquery-history-kusama-prod.novasama-tech.org" } ], "governance": [ { "type": "subsquare", - "url": "https://kusama.subsquare.io/api" + "url": "https://kusama-api.subsquare.io" } ], "governance-delegations": [ @@ -522,11 +499,10 @@ ] }, "options": [ - "crowdloans", - "governance", "proxy", "fullSyncByDefault", - "pushSupport" + "pushSupport", + "multisig" ], "additional": { "themeColor": "#1F78FF", @@ -536,6 +512,84 @@ "supportsGenericLedgerApp": true } }, + { + "chainId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "name": "Westend (TESTNET)", + "assets": [ + { + "assetId": 0, + "symbol": "WND", + "precision": 12, + "icon": "WND.svg", + "staking": [ + "relaychain", + "nomination-pools" + ] + } + ], + "nodes": [ + { + "url": "wss://westend-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://westend.public.curie.radiumblock.co/ws", + "name": "RadiumBlock node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://westend.subscan.io/extrinsic/{hash}", + "account": "https://westend.subscan.io/account/{address}" + }, + { + "name": "Statescan", + "account": "https://westend.statescan.io/#/accounts/{address}", + "extrinsic": "https://westend.statescan.io/#/extrinsics/{hash}", + "event": "https://westend.statescan.io/#/events/{event}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Westend_Testnet.svg", + "addressPrefix": 42, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://subquery-history-westend-prod.novasama-tech.org/" + } + ], + "staking-rewards": [ + { + "type": "subquery", + "url": "https://subquery-history-westend-prod.novasama-tech.org/" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://subquery-history-westend-prod.novasama-tech.org/" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://westend.subsquare.io/api" + } + ] + }, + "options": [ + "testnet", + "proxy" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/polkadot-and-kusama", + "stakingMaxElectingVoters": 22500, + "feeViaRuntimeCall": true, + "supportsGenericLedgerApp": true + } + }, { "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", @@ -545,8 +599,19 @@ "assetId": 0, "symbol": "KSM", "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", - "priceId": "kusama" + "name": "Kusama", + "icon": "KSM.svg", + "staking": [ + "relaychain", + "nomination-pools" + ], + "priceId": "kusama", + "buyProviders": { + "mercuryo": {} + }, + "sellProviders": { + "mercuryo": {} + } }, { "assetId": 1, @@ -554,9 +619,10 @@ "precision": 10, "priceId": "rmrk", "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "icon": "RMRK.svg", "typeExtras": { - "assetId": "8" + "assetId": "8", + "isSufficient": true } }, { @@ -564,7 +630,7 @@ "symbol": "CHAOS", "precision": 10, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHAOS.svg", + "icon": "CHAOS.svg", "typeExtras": { "assetId": "69420" } @@ -574,7 +640,7 @@ "symbol": "CHRWNA", "precision": 10, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHRWNA.svg", + "icon": "CHRWNA.svg", "typeExtras": { "assetId": "567" } @@ -584,7 +650,7 @@ "symbol": "SHIBATALES", "precision": 0, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", + "icon": "Default.svg", "typeExtras": { "assetId": "88888" } @@ -594,7 +660,7 @@ "symbol": "BILLCOIN", "precision": 8, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BILLCOIN.svg", + "icon": "BILLCOIN.svg", "typeExtras": { "assetId": "223" } @@ -605,9 +671,22 @@ "precision": 6, "priceId": "tether", "type": "statemine", - "icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/wUSDT.png", + "icon": "USDT.svg", "typeExtras": { - "assetId": "1984" + "assetId": "1984", + "isSufficient": true + } + }, + { + "assetId": 8, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "DOT.svg", + "typeExtras": { + "assetId": "0x02010902", + "palletName": "ForeignAssets" } } ], @@ -619,10 +698,6 @@ { "url": "wss://asset-hub-kusama.dotters.network", "name": "IBP2 node" - }, - { - "url": "wss://statemine-rpc.dwellir.com", - "name": "Dwellir node" } ], "explorers": [ @@ -633,31 +708,72 @@ }, { "name": "Statescan", - "account": "https://statemine.statescan.io/#/accounts/{address}", - "event": "https://statemine.statescan.io/#/events/{event}" - }, - { - "name": "Sub.ID", - "account": "https://sub.id/{address}" + "account": "https://assethub-kusama.statescan.io/#/accounts/{address}", + "extrinsic": "https://assethub-kusama.statescan.io/#/extrinsics/{hash}", + "event": "https://assethub-kusama.statescan.io/#/events/{event}" } ], "externalApi": { "history": [ { "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemine" + "url": "https://subquery-history-kusama-ah-prod.novasama-tech.org" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://subquery-governance-kusama-ah-prod.novasama-tech.org" + } + ], + "staking-rewards": [ + { + "type": "subquery", + "url": "https://subquery-history-kusama-prod.novasama-tech.org" + }, + { + "type": "subquery", + "url": "https://subquery-history-kusama-ah-prod.novasama-tech.org" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://subquery-history-kusama-ah-prod.novasama-tech.org" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://kusama-api.subsquare.io" + } + ], + "referendum-summary": [ + { + "type": "novasama", + "url": "https://opengov-backend.novasama-tech.org/api/v1/referendum-summaries/list" } ] }, "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama_Asset_Hub.svg", "addressPrefix": 2, "options": [ - "assethub-fees" + "swap-hub", + "assethub-fees", + "proxy", + "multisig", + "governance", + "pushSupport" ], "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/kusama-ksm-staking", + "stakingMaxElectingVoters": 12500, "relaychainAsNative": true, "feeViaRuntimeCall": true, - "supportsGenericLedgerApp": true + "supportsGenericLedgerApp": true, + "identityChain": "c1af4cb4eb3918e5db15086c0cc5ec17fb334f728b7c65dd44bfe1e174ff8b3f", + "timelineChain": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe" } }, { @@ -670,7 +786,7 @@ "symbol": "DOT", "precision": 10, "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + "icon": "DOT.svg" } ], "nodes": [ @@ -703,13 +819,23 @@ "name": "Subscan", "extrinsic": "https://people-polkadot.subscan.io/extrinsic/{hash}", "account": "https://people-polkadot.subscan.io/account/{address}" + }, + { + "name": "Statescan", + "account": "https://people-polkadot.statescan.io/#/accounts/{address}", + "extrinsic": "https://people-polkadot.statescan.io/#/extrinsics/{hash}", + "event": "https://people-polkadot.statescan.io/#/events/{event}" } ], "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot_People.svg", "addressPrefix": 0, "additional": { - "supportsGenericLedgerApp": true - } + "supportsGenericLedgerApp": true, + "identityChain": "67fa177a097bfa18f77ea95ab56e9bcdfeb0e5b8a40e46298bb93e16b6fc5008" + }, + "options": [ + "multisig" + ] }, { "chainId": "c1af4cb4eb3918e5db15086c0cc5ec17fb334f728b7c65dd44bfe1e174ff8b3f", @@ -721,7 +847,7 @@ "symbol": "KSM", "precision": 12, "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + "icon": "KSM.svg" } ], "nodes": [ @@ -750,13 +876,23 @@ "name": "Subscan", "extrinsic": "https://people-kusama.subscan.io/extrinsic/{hash}", "account": "https://people-kusama.subscan.io/account/{address}" + }, + { + "name": "Statescan", + "account": "https://people-kusama.statescan.io/#/accounts/{address}", + "extrinsic": "https://people-kusama.statescan.io/#/extrinsics/{hash}", + "event": "https://people-kusama.statescan.io/#/events/{event}" } ], "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama_People.svg", "addressPrefix": 2, "additional": { - "disabledCheckMetadataHash": true - } + "disabledCheckMetadataHash": true, + "identityChain": "c1af4cb4eb3918e5db15086c0cc5ec17fb334f728b7c65dd44bfe1e174ff8b3f" + }, + "options": [ + "multisig" + ] }, { "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", @@ -767,7 +903,7 @@ "assetId": 0, "symbol": "KAR", "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "icon": "KAR.svg", "priceId": "karura", "buyProviders": { "banxa": { @@ -780,7 +916,7 @@ "assetId": 1, "symbol": "aSEEDk", "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED-Kusama.svg", + "icon": "aSEEDk.svg", "priceId": "ausd-seed-karura", "type": "orml", "typeExtras": { @@ -794,7 +930,7 @@ "assetId": 2, "symbol": "KSM", "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "KSM.svg", "priceId": "kusama", "type": "orml", "typeExtras": { @@ -809,7 +945,7 @@ "symbol": "RMRK (old)", "precision": 10, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "icon": "RMRK.svg", "priceId": "rmrk", "typeExtras": { "currencyIdScale": "0x050000", @@ -823,7 +959,7 @@ "symbol": "BNC", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "icon": "BNC.svg", "priceId": "bifrost-native-coin", "typeExtras": { "currencyIdScale": "0x00a8", @@ -838,7 +974,7 @@ "precision": 12, "priceId": "liquid-ksm", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "icon": "LKSM.svg", "typeExtras": { "currencyIdScale": "0x0083", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -852,7 +988,7 @@ "precision": 12, "priceId": "pha", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "icon": "PHA.svg", "typeExtras": { "currencyIdScale": "0x00aa", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -866,7 +1002,7 @@ "precision": 12, "priceId": "kintsugi", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "icon": "KINT.svg", "typeExtras": { "currencyIdScale": "0x00ab", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -880,7 +1016,7 @@ "precision": 8, "priceId": "bitcoin", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "icon": "kBTC.svg", "typeExtras": { "currencyIdScale": "0x00ac", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -893,7 +1029,7 @@ "symbol": "TAI", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAI.svg", + "icon": "TAI.svg", "typeExtras": { "currencyIdScale": "0x0084", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -906,7 +1042,7 @@ "symbol": "vsKSM", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "icon": "vsKSM.svg", "typeExtras": { "currencyIdScale": "0x00a9", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -919,7 +1055,7 @@ "symbol": "taiKSM", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/taiKSM.svg", + "icon": "taiKSM.svg", "typeExtras": { "currencyIdScale": "0x0300000000", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -933,7 +1069,7 @@ "precision": 18, "priceId": "quartz", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "icon": "QTZ.svg", "typeExtras": { "currencyIdScale": "0x050200", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -947,7 +1083,7 @@ "precision": 18, "priceId": "moonriver", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOVR.svg", + "icon": "MOVR.svg", "typeExtras": { "currencyIdScale": "0x050300", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -960,7 +1096,7 @@ "symbol": "HKO", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "icon": "HKO.svg", "typeExtras": { "currencyIdScale": "0x050400", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -974,7 +1110,7 @@ "precision": 12, "priceId": "crust-storage-market", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "icon": "CSM.svg", "typeExtras": { "currencyIdScale": "0x050500", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -988,7 +1124,7 @@ "precision": 6, "priceId": "tether", "type": "orml", - "icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/wUSDT.png", + "icon": "USDT.svg", "typeExtras": { "currencyIdScale": "0x050700", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -1002,7 +1138,7 @@ "precision": 12, "priceId": "calamari-network", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "icon": "KMA.svg", "typeExtras": { "currencyIdScale": "0x050a00", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -1016,7 +1152,7 @@ "precision": 12, "priceId": "integritee", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TEER.svg", + "icon": "TEER.svg", "typeExtras": { "currencyIdScale": "0x050800", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -1029,7 +1165,7 @@ "symbol": "KICO", "precision": 14, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KICO.svg", + "icon": "KICO.svg", "typeExtras": { "currencyIdScale": "0x050600", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -1043,7 +1179,7 @@ "precision": 18, "priceId": "metaverse-network-pioneer", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bit.Country.svg", + "icon": "NEER.svg", "typeExtras": { "currencyIdScale": "0x050900", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -1057,7 +1193,7 @@ "precision": 12, "priceId": "basilisk", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "icon": "BSX.svg", "typeExtras": { "currencyIdScale": "0x050b00", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -1071,7 +1207,7 @@ "precision": 18, "priceId": "altair", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "icon": "AIR.svg", "typeExtras": { "currencyIdScale": "0x050c00", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -1085,7 +1221,7 @@ "precision": 9, "type": "orml", "priceId": "genshiro", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "icon": "GENS.svg", "typeExtras": { "currencyIdScale": "0x050e00", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -1099,7 +1235,7 @@ "precision": 9, "priceId": "tether", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "icon": "EQD.svg", "typeExtras": { "currencyIdScale": "0x050f00", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -1113,7 +1249,7 @@ "precision": 18, "type": "orml", "priceId": "darwinia-crab-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "icon": "CRAB.svg", "typeExtras": { "currencyIdScale": "0x050d00", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -1124,8 +1260,24 @@ ], "nodes": [ { - "url": "wss://karura.api.onfinality.io/public-ws", - "name": "Onfinality node" + "url": "wss://karura-rpc-0.aca-api.network", + "name": "Acala Foundation 0 node" + }, + { + "url": "wss://karura-rpc-1.aca-api.network", + "name": "Acala Foundation 1 node" + }, + { + "url": "wss://karura-rpc-2.aca-api.network/ws", + "name": "Acala Foundation 2 node" + }, + { + "url": "wss://karura-rpc-3.aca-api.network/ws", + "name": "Acala Foundation 3 node" + }, + { + "url": "wss://karura-rpc.n.dwellir.com", + "name": "Dwellir node" } ], "explorers": [ @@ -1133,19 +1285,9 @@ "name": "Subscan", "extrinsic": "https://karura.subscan.io/extrinsic/{hash}", "account": "https://karura.subscan.io/account/{address}" - }, - { - "name": "Sub.ID", - "account": "https://sub.id/{address}" } ], "externalApi": { - "history": [ - { - "type": "subquery", - "url": "https://gateway.subquery.network/query/0x39" - } - ], "governance": [ { "type": "subsquare", @@ -1159,7 +1301,8 @@ "governance-v1" ], "additional": { - "feeViaRuntimeCall": true + "feeViaRuntimeCall": true, + "supportsGenericLedgerApp": true } }, { @@ -1172,7 +1315,7 @@ "symbol": "GLMR", "precision": 18, "priceId": "moonbeam", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GLMR.svg", + "icon": "GLMR.svg", "staking": [ "parachain" ], @@ -1184,17 +1327,22 @@ "coinType": "GLMR", "blockchain": "GLMR" } + }, + "sellProviders": { + "transak": { + "network": "MAINNET" + } } }, { "assetId": 1, "symbol": "xcDOT", "precision": 10, - "type": "statemine", + "type": "evm", "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "icon": "DOT.svg", "typeExtras": { - "assetId": "42259045809535163221576417993425387648" + "contractAddress": "0xFfFFfFff1FcaCBd218EDc0EbA20Fc2308C778080" } }, { @@ -1203,162 +1351,163 @@ "precision": 12, "type": "statemine", "priceId": "ausd-seed-acala", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED-Polkadot.svg", + "icon": "aSEEDp.svg", "typeExtras": { - "assetId": "110021739665376159354538090254163045594" + "assetId": "110021739665376159354538090254163045594", + "isSufficient": true } }, { "assetId": 3, "symbol": "xcACA", "precision": 12, - "type": "statemine", + "type": "evm", "priceId": "acala", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "icon": "ACA.svg", "typeExtras": { - "assetId": "224821240862170613278369189818311486111" + "contractAddress": "0xffffFFffa922Fef94566104a6e5A35a4fCDDAA9f" } }, { "assetId": 4, "symbol": "xcPARA", "precision": 12, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "type": "evm", + "icon": "PARA.svg", "typeExtras": { - "assetId": "32615670524745285411807346420584982855" + "contractAddress": "0xFfFffFFF18898CB5Fe1E88E668152B4f4052A947" } }, { "assetId": 5, "symbol": "xcINTR", "precision": 10, - "type": "statemine", + "type": "evm", "priceId": "interlay", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "icon": "INTR.svg", "typeExtras": { - "assetId": "101170542313601871197860408087030232491" + "contractAddress": "0xFffFFFFF4C1cbCd97597339702436d4F18a375Ab" } }, { "assetId": 6, "symbol": "xciBTC", "precision": 8, - "type": "statemine", + "type": "evm", "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "icon": "iBTC.svg", "typeExtras": { - "assetId": "120637696315203257380661607956669368914" + "contractAddress": "0xFFFFFfFf5AC1f9A51A93F5C527385edF7Fe98A52" } }, { "assetId": 8, "symbol": "xcASTR", "precision": 18, - "type": "statemine", + "type": "evm", "priceId": "astar", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "icon": "ASTR.svg", "typeExtras": { - "assetId": "224077081838586484055667086558292981199" + "contractAddress": "0xFfFFFfffA893AD19e540E172C10d78D4d479B5Cf" } }, { "assetId": 9, "symbol": "xcPHA", "precision": 12, - "type": "statemine", + "type": "evm", "priceId": "pha", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "icon": "PHA.svg", "typeExtras": { - "assetId": "132685552157663328694213725410064821485" + "contractAddress": "0xFFFfFfFf63d24eCc8eB8a7b5D0803e900F7b6cED" } }, { "assetId": 10, "symbol": "xcUSDT", "precision": 6, - "type": "statemine", + "type": "evm", "priceId": "tether", - "icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/wUSDT.png", + "icon": "USDT.svg", "typeExtras": { - "assetId": "311091173110107856861649819128533077277" + "contractAddress": "0xFFFFFFfFea09FB06d082fd1275CD48b191cbCD1d" } }, { "assetId": 11, "symbol": "xcCFG", "precision": 18, - "type": "statemine", + "type": "evm", "priceId": "centrifuge", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg", + "icon": "CFG.svg", "typeExtras": { - "assetId": "91372035960551235635465443179559840483" + "contractAddress": "0xFFfFfFff44bD9D2FFEE20B25D1Cf9E78Edb6Eae3" } }, { "assetId": 12, "symbol": "xcBNC", "precision": 12, - "type": "statemine", + "type": "evm", "priceId": "bifrost-native-coin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "icon": "BNC.svg", "typeExtras": { - "assetId": "165823357460190568952172802245839421906" + "contractAddress": "0xFFffffFf7cC06abdF7201b350A1265c62C8601d2" } }, { "assetId": 13, "symbol": "xcEQ", "precision": 9, - "type": "statemine", + "type": "evm", "priceId": "equilibrium-token", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "icon": "EQ.svg", "typeExtras": { - "assetId": "190590555344745888270686124937537713878" + "contractAddress": "0xFffFFfFf8f6267e040D8a0638C576dfBa4F0F6D6" } }, { "assetId": 14, "symbol": "xcEQD", "precision": 9, - "type": "statemine", + "type": "evm", "priceId": "tether", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "icon": "EQD.svg", "typeExtras": { - "assetId": "187224307232923873519830480073807488153" + "contractAddress": "0xFFffFfFF8cdA1707bAF23834d211B08726B1E499" } }, { "assetId": 15, "symbol": "xcHDX", "precision": 12, - "type": "statemine", + "type": "evm", "priceId": "hydradx", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HDX.svg", + "icon": "HDX.svg", "typeExtras": { - "assetId": "69606720909260275826784788104880799692" + "contractAddress": "0xFFFfFfff345Dc44DDAE98Df024Eb494321E73FcC" } }, { "assetId": 16, "symbol": "xcNODL", "precision": 11, - "type": "statemine", + "type": "evm", "priceId": "nodle-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg", + "icon": "NODL.svg", "typeExtras": { - "assetId": "309163521958167876851250718453738106865" + "contractAddress": "0xfffffffFe896ba7Cb118b9Fa571c6dC0a99dEfF1" } }, { "assetId": 17, "symbol": "xcRING", "precision": 18, - "type": "statemine", + "type": "evm", "priceId": "darwinia-network-native-token", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RING.svg", + "icon": "RING.svg", "typeExtras": { - "assetId": "125699734534028342599692732320197985871" + "contractAddress": "0xFfffFfff5e90e365eDcA87fB4c8306Df1E91464f" } }, { @@ -1366,30 +1515,31 @@ "symbol": "xcOTP", "precision": 12, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/OriginTrail.svg", + "icon": "OTP.svg", "typeExtras": { - "assetId": "238111524681612888331172110363070489924" + "assetId": "238111524681612888331172110363070489924", + "isSufficient": true } }, { "assetId": 19, "symbol": "xcvDOT", "precision": 10, - "type": "statemine", + "type": "evm", "priceId": "voucher-dot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vDOT.svg", + "icon": "vDOT.svg", "typeExtras": { - "assetId": "29085784439601774464560083082574142143" + "contractAddress": "0xFFFfffFf15e1b7E3dF971DD813Bc394deB899aBf" } }, { "assetId": 20, "symbol": "xcvFIL", "precision": 18, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vFIL.svg", + "type": "evm", + "icon": "vFIL.svg", "typeExtras": { - "assetId": "272547899416482196831721420898811311297" + "contractAddress": "0xFffffFffCd0aD0EA6576B7b285295c85E94cf4c1" } }, { @@ -1397,32 +1547,32 @@ "symbol": "xcvGLMR", "precision": 18, "priceId": "voucher-glmr", - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vGLMR.svg", + "type": "evm", + "icon": "vGLMR.svg", "typeExtras": { - "assetId": "204507659831918931608354793288110796652" + "contractAddress": "0xFfFfFFff99dABE1a8De0EA22bAa6FD48fdE96F6c" } }, { "assetId": 22, "symbol": "xcMANTA", "precision": 18, - "type": "statemine", + "type": "evm", "priceId": "manta-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MANTA.svg", + "icon": "MANTA.svg", "typeExtras": { - "assetId": "166446646689194205559791995948102903873" + "contractAddress": "0xfFFffFFf7D3875460d4509eb8d0362c611B4E841" } }, { "assetId": 23, "symbol": "xcUSDC", "precision": 6, - "type": "statemine", + "type": "evm", "priceId": "usd-coin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDC.svg", + "icon": "USDC.svg", "typeExtras": { - "assetId": "166377000701797186346254371275954761085" + "contractAddress": "0xFFfffffF7D2B0B761Af01Ca8e25242976ac0aD7D" } } ], @@ -1442,10 +1592,6 @@ { "url": "wss://moonbeam.public.curie.radiumblock.co/ws", "name": "RadiumBlock node" - }, - { - "url": "wss://moonbeam.public.blastapi.io", - "name": "Blast node" } ], "explorers": [ @@ -1464,7 +1610,7 @@ "history": [ { "type": "subquery", - "url": "https://gateway.subquery.network/query/0x1e" + "url": "https://subquery-history-moonbeam-v2-prod.novasama-tech.org" }, { "type": "etherscan", @@ -1477,7 +1623,13 @@ "staking": [ { "type": "subquery", - "url": "https://gateway.subquery.network/query/0x1e" + "url": "https://subquery-history-moonbeam-v2-prod.novasama-tech.org" + } + ], + "staking-rewards": [ + { + "type": "subquery", + "url": "https://subquery-history-moonbeam-v2-prod.novasama-tech.org" } ], "governance": [ @@ -1489,7 +1641,7 @@ "governance-delegations": [ { "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam-gov" + "url": "https://subquery-governance-moonbeam-prod.novasama-tech.org" } ] }, @@ -1497,12 +1649,15 @@ "addressPrefix": 1284, "options": [ "ethereumBased", - "governance" + "governance", + "proxy", + "multisig" ], "additional": { "themeColor": "#9968CE", "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/moonbeam-glmr-staking", - "defaultBlockTime": 6000 + "defaultBlockTime": 6000, + "supportsGenericLedgerApp": true } }, { @@ -1514,7 +1669,7 @@ "symbol": "ETH", "priceId": "ethereum", "type": "evmNative", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "icon": "ETH.svg", "precision": 18, "buyProviders": { "transak": { @@ -1527,14 +1682,22 @@ "coinType": "ETH", "blockchain": "ETH" } + }, + "sellProviders": { + "transak": { + "network": "ETHEREUM" + }, + "mercuryo": { + "network": "ETHEREUM" + } } } ], - "nodeSelectionStrategy": "uniform", + "nodeSelectionStrategy": "roundRobin", "nodes": [ { - "url": "https://rpc.ankr.com/eth", - "name": "Ankr rpc node" + "url": "https://ethereum-rpc.publicnode.com", + "name": "Allnodes rpc node" }, { "url": "https://1rpc.io/eth", @@ -1552,10 +1715,6 @@ "url": "wss://mainnet.infura.io/ws/v3/1e69544301064ef19edb194a14fb75f3", "name": "Infura node 2" }, - { - "url": "wss://mainnet.infura.io/ws/v3/25bd0a6e359240529b237e5dd8b19e1f", - "name": "Infura node 3" - }, { "url": "wss://mainnet.infura.io/ws/v3/9dddd77ac74043dc9a8dc48f82822c7d", "name": "Infura node 4" @@ -1563,10 +1722,6 @@ { "url": "wss://mainnet.infura.io/ws/v3/82fd5b2925e341719f10b7ed4376a646", "name": "Infura node 6" - }, - { - "url": "wss://mainnet.infura.io/ws/v3/5717b02168b5434ba23801e1ea755afb", - "name": "Infura node 7" } ], "explorers": [ @@ -1604,14 +1759,11 @@ "symbol": "MOVR", "precision": 18, "priceId": "moonriver", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOVR.svg", + "icon": "MOVR.svg", "staking": [ "parachain" ], "buyProviders": { - "transak": { - "network": "MOONRIVER" - }, "banxa": { "coinType": "MOVR", "blockchain": "MOVR" @@ -1623,10 +1775,10 @@ "symbol": "xcRMRK (old)", "precision": 10, "priceId": "rmrk", - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "type": "evm", + "icon": "RMRK.svg", "typeExtras": { - "assetId": "182365888117048807484804376330534607370" + "contractAddress": "0xffffffFF893264794d9d57E1E0E21E0042aF5A0A" } }, { @@ -1634,10 +1786,10 @@ "symbol": "xcKSM", "precision": 12, "priceId": "kusama", - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "evm", + "icon": "KSM.svg", "typeExtras": { - "assetId": "42259045809535163221576417993425387648" + "contractAddress": "0xFfFFfFff1FcaCBd218EDc0EbA20Fc2308C778080" } }, { @@ -1645,10 +1797,10 @@ "symbol": "xcKINT", "precision": 12, "priceId": "kintsugi", - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "type": "evm", + "icon": "KINT.svg", "typeExtras": { - "assetId": "175400718394635817552109270754364440562" + "contractAddress": "0xfffFFFFF83F4f317d3cbF6EC6250AeC3697b3fF2" } }, { @@ -1656,10 +1808,10 @@ "symbol": "xcKAR", "precision": 12, "priceId": "karura", - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "type": "evm", + "icon": "KAR.svg", "typeExtras": { - "assetId": "10810581592933651521121702237638664357" + "contractAddress": "0xFfFFFFfF08220AD2E6e157f26eD8bD22A336A0A5" } }, { @@ -1667,10 +1819,10 @@ "symbol": "xcBNC", "precision": 12, "priceId": "bifrost-native-coin", - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "type": "evm", + "icon": "BNC.svg", "typeExtras": { - "assetId": "319623561105283008236062145480775032445" + "contractAddress": "0xFFfFFfFFF075423be54811EcB478e911F22dDe7D" } }, { @@ -1678,10 +1830,10 @@ "symbol": "xckBTC", "precision": 8, "priceId": "bitcoin", - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "type": "evm", + "icon": "kBTC.svg", "typeExtras": { - "assetId": "328179947973504579459046439826496046832" + "contractAddress": "0xFFFfFfFfF6E528AD57184579beeE00c5d5e646F0" } }, { @@ -1689,10 +1841,10 @@ "symbol": "xcUSDT", "precision": 6, "priceId": "tether", - "type": "statemine", - "icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/wUSDT.png", + "type": "evm", + "icon": "USDT.svg", "typeExtras": { - "assetId": "311091173110107856861649819128533077277" + "contractAddress": "0xFFFFFFfFea09FB06d082fd1275CD48b191cbCD1d" } }, { @@ -1701,9 +1853,10 @@ "precision": 12, "priceId": "ausd-seed-karura", "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED-Kusama.svg", + "icon": "aSEEDk.svg", "typeExtras": { - "assetId": "214920334981412447805621250067209749032" + "assetId": "214920334981412447805621250067209749032", + "isSufficient": true } }, { @@ -1711,10 +1864,10 @@ "symbol": "xcCSM", "precision": 12, "priceId": "crust-storage-market", - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "type": "evm", + "icon": "CSM.svg", "typeExtras": { - "assetId": "108457044225666871745333730479173774551" + "contractAddress": "0xffFfFFFf519811215E05eFA24830Eebe9c43aCD7" } }, { @@ -1722,20 +1875,20 @@ "symbol": "xcPHA", "precision": 12, "priceId": "pha", - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "type": "evm", + "icon": "PHA.svg", "typeExtras": { - "assetId": "189307976387032586987344677431204943363" + "contractAddress": "0xffFfFFff8E6b63d9e447B6d4C45BDA8AF9dc9603" } }, { "assetId": 11, "symbol": "xcHKO", "precision": 12, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "type": "evm", + "icon": "HKO.svg", "typeExtras": { - "assetId": "76100021443485661246318545281171740067" + "contractAddress": "0xffffffFF394054BCDa1902B6A6436840435655a3" } }, { @@ -1743,10 +1896,10 @@ "symbol": "xcKMA", "precision": 12, "priceId": "calamari-network", - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "type": "evm", + "icon": "KMA.svg", "typeExtras": { - "assetId": "213357169630950964874127107356898319277" + "contractAddress": "0xFFffFffFA083189f870640b141ae1E882c2b5bad" } }, { @@ -1754,10 +1907,10 @@ "symbol": "xcCRAB", "precision": 18, "priceId": "darwinia-crab-network", - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "type": "evm", + "icon": "CRAB.svg", "typeExtras": { - "assetId": "173481220575862801646329923366065693029" + "contractAddress": "0xFFFffFfF8283448b3cB519Ca4732F2ddDC6A6165" } }, { @@ -1765,10 +1918,10 @@ "symbol": "xcTEER", "precision": 12, "priceId": "integritee", - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TEER.svg", + "type": "evm", + "icon": "TEER.svg", "typeExtras": { - "assetId": "105075627293246237499203909093923548958" + "contractAddress": "0xFfFfffFf4F0CD46769550E5938F6beE2F5d4ef1e" } }, { @@ -1776,10 +1929,10 @@ "symbol": "xcLIT", "precision": 12, "priceId": "litentry", - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "type": "evm", + "icon": "LIT.svg", "typeExtras": { - "assetId": "65216491554813189869575508812319036608" + "contractAddress": "0xfffFFfFF31103d490325BB0a8E40eF62e2F614C0" } }, { @@ -1787,10 +1940,10 @@ "symbol": "xcSDN", "precision": 18, "priceId": "shiden", - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "type": "evm", + "icon": "SDN.svg", "typeExtras": { - "assetId": "16797826370226091782818345603793389938" + "contractAddress": "0xFFFfffFF0Ca324C842330521525E7De111F38972" } }, { @@ -1798,10 +1951,10 @@ "symbol": "xcXRT", "precision": 9, "priceId": "robonomics-network", - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "type": "evm", + "icon": "XRT.svg", "typeExtras": { - "assetId": "108036400430056508975016746969135344601" + "contractAddress": "0xFffFFffF51470Dca3dbe535bD2880a9CcDBc6Bd9" } }, { @@ -1809,52 +1962,52 @@ "symbol": "xcvKSM", "precision": 12, "priceId": "voucher-ksm", - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "type": "evm", + "icon": "vKSM.svg", "typeExtras": { - "assetId": "264344629840762281112027368930249420542" + "contractAddress": "0xFFffffFFC6DEec7Fc8B11A2C8ddE9a59F8c62EFe" } }, { "assetId": 19, "symbol": "xcvBNC", "precision": 12, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vBNC.svg", + "type": "evm", + "icon": "vBNC.svg", "typeExtras": { - "assetId": "72145018963825376852137222787619937732" + "contractAddress": "0xFFffffff3646A00f78caDf8883c5A2791BfCDdc4" } }, { "assetId": 20, "symbol": "xcvMOVR", "precision": 18, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vMOVR.svg", + "type": "evm", + "icon": "vMOVR.svg", "typeExtras": { - "assetId": "203223821023327994093278529517083736593" + "contractAddress": "0xfFfffFfF98e37bF6a393504b5aDC5B53B4D0ba11" } }, { "assetId": 21, "symbol": "xcMGX", "precision": 18, - "type": "statemine", + "type": "evm", "priceId": "mangata-x", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/MangataX.svg", + "icon": "MGX.svg", "typeExtras": { - "assetId": "118095707745084482624853002839493125353" + "contractAddress": "0xffFfFffF58d867EEa1Ce5126A4769542116324e9" } }, { "assetId": 22, "symbol": "xcTUR", "precision": 10, - "type": "statemine", + "type": "evm", "priceId": "turing-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "icon": "TUR.svg", "typeExtras": { - "assetId": "133300872918374599700079037156071917454" + "contractAddress": "0xfFffffFf6448d0746f2a66342B67ef9CAf89478E" } } ], @@ -1864,16 +2017,12 @@ "name": "Moonbeam Foundation node" }, { - "url": "wss://moonriver.public.blastapi.io", - "name": "Blast node" + "url": "wss://moonriver-rpc.publicnode.com", + "name": "Allnodes node" }, { "url": "wss://moonriver.public.curie.radiumblock.co/ws", "name": "RadiumBlock node" - }, - { - "url": "wss://moonriver-rpc.dwellir.com", - "name": "Dwellir node" } ], "explorers": [ @@ -1892,7 +2041,7 @@ "history": [ { "type": "subquery", - "url": "https://gateway.subquery.network/query/0x1d" + "url": "https://subquery-history-moonriver-prod.novasama-tech.org" }, { "type": "etherscan", @@ -1905,7 +2054,13 @@ "staking": [ { "type": "subquery", - "url": "https://gateway.subquery.network/query/0x1d" + "url": "https://subquery-history-moonriver-prod.novasama-tech.org" + } + ], + "staking-rewards": [ + { + "type": "subquery", + "url": "https://subquery-history-moonriver-prod.novasama-tech.org" } ], "governance": [ @@ -1917,7 +2072,7 @@ "governance-delegations": [ { "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver-gov" + "url": "https://subquery-governance-moonriver-prod.novasama-tech.org" } ] }, @@ -1925,12 +2080,14 @@ "addressPrefix": 1285, "options": [ "ethereumBased", - "governance" + "governance", + "proxy" ], "additional": { "themeColor": "#20A0B6", "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/moonriver-movr-staking", - "defaultBlockTime": 12000 + "defaultBlockTime": 6000, + "supportsGenericLedgerApp": true } }, { @@ -1942,7 +2099,7 @@ "assetId": 0, "symbol": "SDN", "precision": 18, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "icon": "SDN.svg", "priceId": "shiden" }, { @@ -1951,9 +2108,10 @@ "precision": 12, "type": "statemine", "priceId": "pha", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "icon": "PHA.svg", "typeExtras": { - "assetId": "18446744073709551623" + "assetId": "18446744073709551623", + "isSufficient": true } }, { @@ -1962,9 +2120,10 @@ "precision": 12, "priceId": "liquid-ksm", "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "icon": "LKSM.svg", "typeExtras": { - "assetId": "18446744073709551619" + "assetId": "18446744073709551619", + "isSufficient": true } }, { @@ -1973,9 +2132,10 @@ "precision": 18, "type": "statemine", "priceId": "moonriver", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOVR.svg", + "icon": "MOVR.svg", "typeExtras": { - "assetId": "18446744073709551620" + "assetId": "18446744073709551620", + "isSufficient": true } }, { @@ -1984,9 +2144,10 @@ "precision": 8, "type": "statemine", "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "icon": "kBTC.svg", "typeExtras": { - "assetId": "18446744073709551621" + "assetId": "18446744073709551621", + "isSufficient": true } }, { @@ -1995,9 +2156,10 @@ "precision": 12, "type": "statemine", "priceId": "kintsugi", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "icon": "KINT.svg", "typeExtras": { - "assetId": "18446744073709551622" + "assetId": "18446744073709551622", + "isSufficient": true } }, { @@ -2006,9 +2168,10 @@ "precision": 12, "type": "statemine", "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "KSM.svg", "typeExtras": { - "assetId": "340282366920938463463374607431768211455" + "assetId": "340282366920938463463374607431768211455", + "isSufficient": true } }, { @@ -2017,9 +2180,10 @@ "precision": 12, "type": "statemine", "priceId": "ausd-seed-karura", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED-Kusama.svg", + "icon": "aSEEDk.svg", "typeExtras": { - "assetId": "18446744073709551616" + "assetId": "18446744073709551616", + "isSufficient": true } }, { @@ -2028,9 +2192,10 @@ "precision": 12, "type": "statemine", "priceId": "crust-storage-market", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "icon": "CSM.svg", "typeExtras": { - "assetId": "18446744073709551624" + "assetId": "18446744073709551624", + "isSufficient": true } }, { @@ -2039,9 +2204,10 @@ "precision": 12, "type": "statemine", "priceId": "karura", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "icon": "KAR.svg", "typeExtras": { - "assetId": "18446744073709551618" + "assetId": "18446744073709551618", + "isSufficient": true } }, { @@ -2050,9 +2216,10 @@ "precision": 6, "type": "statemine", "priceId": "tether", - "icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/wUSDT.png", + "icon": "USDT.svg", "typeExtras": { - "assetId": "4294969280" + "assetId": "4294969280", + "isSufficient": true } }, { @@ -2061,9 +2228,10 @@ "precision": 12, "priceId": "voucher-ksm", "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "icon": "vKSM.svg", "typeExtras": { - "assetId": "18446744073709551628" + "assetId": "18446744073709551628", + "isSufficient": true } }, { @@ -2072,9 +2240,10 @@ "precision": 12, "type": "statemine", "priceId": "bifrost-native-coin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "icon": "BNC.svg", "typeExtras": { - "assetId": "18446744073709551627" + "assetId": "18446744073709551627", + "isSufficient": true } } ], @@ -2084,16 +2253,12 @@ "name": "StakeTechnologies node" }, { - "url": "wss://shiden-rpc.dwellir.com", + "url": "wss://shiden-rpc.n.dwellir.com", "name": "Dwellir node" }, { "url": "wss://shiden.public.curie.radiumblock.co/ws", "name": "RadiumBlock node" - }, - { - "url": "wss://shiden.api.onfinality.io/public-ws", - "name": "OnFinality node" } ], "explorers": [ @@ -2101,20 +2266,8 @@ "name": "Subscan", "extrinsic": "https://shiden.subscan.io/extrinsic/{hash}", "account": "https://shiden.subscan.io/account/{address}" - }, - { - "name": "Sub.ID", - "account": "https://sub.id/{address}" } ], - "externalApi": { - "history": [ - { - "type": "subquery", - "url": "https://gateway.subquery.network/query/0x40" - } - ] - }, "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Shiden.svg", "addressPrefix": 5, "additional": { @@ -2131,7 +2284,7 @@ "symbol": "BNC", "priceId": "bifrost-native-coin", "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "icon": "BNC.svg", "buyProviders": { "banxa": { "coinType": "BNC", @@ -2143,7 +2296,7 @@ "assetId": 1, "symbol": "KSM", "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "KSM.svg", "priceId": "kusama", "type": "orml", "typeExtras": { @@ -2158,7 +2311,7 @@ "symbol": "RMRK (old)", "precision": 10, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "icon": "RMRK.svg", "priceId": "rmrk", "typeExtras": { "currencyIdScale": "0x0209", @@ -2173,7 +2326,7 @@ "precision": 18, "priceId": "zenlink-network-token", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "icon": "ZLK.svg", "typeExtras": { "currencyIdScale": "0x0207", "currencyIdType": "bifrost_primitives.currency.CurrencyId", @@ -2187,7 +2340,7 @@ "precision": 12, "priceId": "karura", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "icon": "KAR.svg", "typeExtras": { "currencyIdScale": "0x0206", "currencyIdType": "bifrost_primitives.currency.CurrencyId", @@ -2201,7 +2354,7 @@ "precision": 12, "priceId": "ausd-seed-karura", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED-Kusama.svg", + "icon": "aSEEDk.svg", "typeExtras": { "currencyIdScale": "0x0302", "currencyIdType": "bifrost_primitives.currency.CurrencyId", @@ -2214,7 +2367,7 @@ "symbol": "vsKSM", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "icon": "vsKSM.svg", "typeExtras": { "currencyIdScale": "0x0404", "currencyIdType": "bifrost_primitives.currency.CurrencyId", @@ -2228,7 +2381,7 @@ "precision": 6, "priceId": "tether", "type": "orml", - "icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/wUSDT.png", + "icon": "USDT.svg", "typeExtras": { "currencyIdScale": "0x0800", "currencyIdType": "bifrost_primitives.currency.CurrencyId", @@ -2242,7 +2395,7 @@ "precision": 18, "type": "orml", "priceId": "moonriver", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOVR.svg", + "icon": "MOVR.svg", "typeExtras": { "currencyIdScale": "0x020a", "currencyIdType": "bifrost_primitives.currency.CurrencyId", @@ -2256,7 +2409,7 @@ "precision": 12, "type": "orml", "priceId": "pha", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "icon": "PHA.svg", "typeExtras": { "currencyIdScale": "0x0208", "currencyIdType": "bifrost_primitives.currency.CurrencyId", @@ -2270,7 +2423,7 @@ "precision": 12, "priceId": "voucher-ksm", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "icon": "vKSM.svg", "typeExtras": { "currencyIdScale": "0x0104", "currencyIdType": "bifrost_primitives.currency.CurrencyId", @@ -2284,7 +2437,7 @@ "precision": 8, "type": "orml", "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "icon": "kBTC.svg", "typeExtras": { "currencyIdScale": "0x0802", "currencyIdType": "bifrost_primitives.currency.CurrencyId", @@ -2297,7 +2450,7 @@ "symbol": "vBNC", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vBNC.svg", + "icon": "vBNC.svg", "typeExtras": { "currencyIdScale": "0x0101", "currencyIdType": "bifrost_primitives.currency.CurrencyId", @@ -2310,7 +2463,7 @@ "symbol": "vMOVR", "precision": 18, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vMOVR.svg", + "icon": "vMOVR.svg", "typeExtras": { "currencyIdScale": "0x010a", "currencyIdType": "bifrost_primitives.currency.CurrencyId", @@ -2325,8 +2478,8 @@ "name": "Liebi node" }, { - "url": "wss://bifrost-rpc.dwellir.com", - "name": "Dwellir node" + "url": "wss://us.bifrost-rpc.liebi.com/ws", + "name": "LiebiUS node" } ], "explorers": [ @@ -2334,19 +2487,9 @@ "name": "Subscan", "extrinsic": "https://bifrost-kusama.subscan.io/extrinsic/{hash}", "account": "https://bifrost-kusama.subscan.io/account/{address}" - }, - { - "name": "Sub.ID", - "account": "https://sub.id/{address}" } ], "externalApi": { - "history": [ - { - "type": "subquery", - "url": "https://gateway.subquery.network/query/0x38" - } - ], "governance": [ { "type": "subsquare", @@ -2355,11 +2498,14 @@ ] }, "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Kusama.svg", - "addressPrefix": 6, + "addressPrefix": 0, + "legacyAddressPrefix": 6, "options": [ - "governance-v1", "governance" - ] + ], + "additional": { + "supportsGenericLedgerApp": true + } }, { "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", @@ -2371,7 +2517,7 @@ "symbol": "BSX", "precision": 12, "priceId": "basilisk", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "icon": "BSX.svg", "buyProviders": { "banxa": { "coinType": "BSX", @@ -2385,7 +2531,7 @@ "precision": 12, "priceId": "kusama", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "KSM.svg", "typeExtras": { "currencyIdScale": "0x01000000", "currencyIdType": "u32", @@ -2399,7 +2545,7 @@ "precision": 12, "priceId": "ausd-seed-karura", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED-Kusama.svg", + "icon": "aSEEDk.svg", "typeExtras": { "currencyIdScale": "0x02000000", "currencyIdType": "u32", @@ -2412,7 +2558,7 @@ "symbol": "TNKR", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg", + "icon": "TNKR.svg", "typeExtras": { "currencyIdScale": "0x06000000", "currencyIdType": "u32", @@ -2426,7 +2572,7 @@ "precision": 6, "type": "orml", "priceId": "tether", - "icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/wUSDT.png", + "icon": "USDT.svg", "typeExtras": { "currencyIdScale": "0x0e000000", "currencyIdType": "u32", @@ -2440,7 +2586,7 @@ "precision": 9, "type": "orml", "priceId": "robonomics-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "icon": "XRT.svg", "typeExtras": { "currencyIdScale": "0x10000000", "currencyIdType": "u32", @@ -2451,12 +2597,12 @@ ], "nodes": [ { - "url": "wss://rpc.basilisk.cloud", - "name": "Basilisk node" + "url": "wss://basilisk-rpc.n.dwellir.com", + "name": "Dwellir node" }, { - "url": "wss://basilisk-rpc.dwellir.com", - "name": "Dwellir node" + "url": "wss://rpc.basilisk.cloud", + "name": "Basilisk node" } ], "explorers": [ @@ -2464,19 +2610,9 @@ "name": "Subscan", "extrinsic": "https://basilisk.subscan.io/extrinsic/{hash}", "account": "https://basilisk.subscan.io/account/{address}" - }, - { - "name": "Sub.ID", - "account": "https://sub.id/{address}" } ], "externalApi": { - "history": [ - { - "type": "subquery", - "url": "https://gateway.subquery.network/query/0x3f" - } - ], "governance": [ { "type": "subsquare", @@ -2506,7 +2642,7 @@ "assetId": 0, "symbol": "AIR", "precision": 18, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "icon": "AIR.svg", "priceId": "altair" } ], @@ -2521,19 +2657,9 @@ "name": "Subscan", "extrinsic": "https://altair.subscan.io/extrinsic/{hash}", "account": "https://altair.subscan.io/account/{address}" - }, - { - "name": "Sub.ID", - "account": "https://sub.id/{address}" } ], "externalApi": { - "history": [ - { - "type": "subquery", - "url": "https://gateway.subquery.network/query/0x37" - } - ], "governance": [ { "type": "subsquare", @@ -2551,167 +2677,6 @@ "disabledCheckMetadataHash": true } }, - { - "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", - "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "name": "Parallel Heiko", - "assets": [ - { - "assetId": 0, - "symbol": "HKO", - "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg" - }, - { - "assetId": 1, - "symbol": "KSM", - "precision": 12, - "priceId": "kusama", - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", - "typeExtras": { - "assetId": "100" - } - }, - { - "assetId": 2, - "symbol": "aSEEDk", - "precision": 12, - "priceId": "ausd-seed-karura", - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED-Kusama.svg", - "typeExtras": { - "assetId": "103" - } - }, - { - "assetId": 3, - "symbol": "LKSM", - "precision": 12, - "priceId": "liquid-ksm", - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", - "typeExtras": { - "assetId": "109" - } - }, - { - "assetId": 4, - "symbol": "sKSM", - "precision": 12, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", - "typeExtras": { - "assetId": "1000" - } - }, - { - "assetId": 5, - "symbol": "KAR", - "precision": 12, - "priceId": "karura", - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", - "typeExtras": { - "assetId": "107" - } - }, - { - "assetId": 6, - "symbol": "MOVR", - "precision": 18, - "priceId": "moonriver", - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOVR.svg", - "typeExtras": { - "assetId": "113" - } - }, - { - "assetId": 7, - "symbol": "PHA", - "precision": 12, - "priceId": "pha", - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", - "typeExtras": { - "assetId": "115" - } - }, - { - "assetId": 8, - "symbol": "GENS", - "precision": 9, - "priceId": "genshiro", - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", - "typeExtras": { - "assetId": "123" - } - }, - { - "assetId": 9, - "symbol": "USDT", - "precision": 6, - "priceId": "tether", - "type": "statemine", - "icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/wUSDT.png", - "typeExtras": { - "assetId": "102" - } - }, - { - "assetId": 10, - "symbol": "KINT", - "precision": 12, - "priceId": "kintsugi", - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", - "typeExtras": { - "assetId": "119" - } - }, - { - "assetId": 11, - "symbol": "kBTC", - "precision": 8, - "priceId": "bitcoin", - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", - "typeExtras": { - "assetId": "121" - } - } - ], - "nodes": [ - { - "url": "wss://heiko-rpc.parallel.fi", - "name": "Parallel node" - } - ], - "explorers": [ - { - "name": "Statescan", - "account": "https://heiko.statescan.io/#/accounts/{address}", - "extrinsic": "https://heiko.statescan.io/#/extrinsics/{hash}", - "event": "https://heiko.statescan.io/#/events/{event}" - }, - { - "name": "Sub.ID", - "account": "https://sub.id/{address}" - } - ], - "externalApi": { - "history": [ - { - "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel-heiko" - } - ] - }, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/ParallelHeiko.svg", - "addressPrefix": 110 - }, { "chainId": "742a2ca70c2fda6cee4f8df98d64c4c670a052d9568058982dad9d5a7a135c5b", "name": "Edgeware", @@ -2721,256 +2686,26 @@ "symbol": "EDG", "precision": 18, "priceId": "edgeware", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Edgeware.svg" + "icon": "EDG.svg" } ], "nodes": [ { - "url": "wss://edgeware-rpc.dwellir.com", - "name": "Dwellir node" - }, - { - "url": "wss://edgeware.jelliedowl.net", + "url": "wss://edgeware-rpc3.jelliedowl.net", "name": "JelliedOwl node" - }, - { - "url": "wss://mainnet2.edgewa.re", - "name": "Edgeware node" } ], "explorers": [ { - "name": "Subscan", - "extrinsic": "https://edgeware.subscan.io/extrinsic/{hash}", - "account": "https://edgeware.subscan.io/account/{address}" - }, - { - "name": "Sub.ID", - "account": "https://sub.id/{address}" + "name": "Edgescan", + "extrinsic": "https://edgscan.ink/#/extrinsics/{hash}", + "event": "https://edgscan.ink/#/events/{event}", + "account": "https://edgscan.ink/#/accounts/{address}" } ], "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Edgeware.svg", "addressPrefix": 7 }, - { - "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", - "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "name": "Khala", - "assets": [ - { - "assetId": 0, - "symbol": "PHA", - "precision": 12, - "priceId": "pha", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" - }, - { - "assetId": 1, - "symbol": "KSM", - "precision": 12, - "type": "statemine", - "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", - "typeExtras": { - "assetId": "0" - } - }, - { - "assetId": 2, - "symbol": "KAR", - "precision": 12, - "type": "statemine", - "priceId": "karura", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", - "typeExtras": { - "assetId": "1" - } - }, - { - "assetId": 3, - "symbol": "BNC", - "precision": 12, - "type": "statemine", - "priceId": "bifrost-native-coin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", - "typeExtras": { - "assetId": "2" - } - }, - { - "assetId": 4, - "symbol": "ZLK", - "precision": 18, - "priceId": "zenlink-network-token", - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", - "typeExtras": { - "assetId": "3" - } - }, - { - "assetId": 5, - "symbol": "aSEEDk", - "precision": 12, - "priceId": "ausd-seed-karura", - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED-Kusama.svg", - "typeExtras": { - "assetId": "4" - } - }, - { - "assetId": 6, - "symbol": "BSX", - "precision": 12, - "priceId": "basilisk", - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", - "typeExtras": { - "assetId": "9" - } - }, - { - "assetId": 7, - "symbol": "MOVR", - "precision": 18, - "priceId": "moonriver", - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOVR.svg", - "typeExtras": { - "assetId": "6" - } - }, - { - "assetId": 8, - "symbol": "HKO", - "precision": 12, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", - "typeExtras": { - "assetId": "7" - } - }, - { - "assetId": 9, - "symbol": "KMA", - "precision": 12, - "priceId": "calamari-network", - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", - "typeExtras": { - "assetId": "8" - } - }, - { - "assetId": 10, - "symbol": "TUR", - "precision": 10, - "priceId": "turing-network", - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", - "typeExtras": { - "assetId": "10" - } - }, - { - "assetId": 11, - "symbol": "CRAB", - "precision": 18, - "priceId": "darwinia-network-native-token", - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", - "typeExtras": { - "assetId": "11" - } - }, - { - "assetId": 12, - "symbol": "SDN", - "precision": 18, - "priceId": "shiden", - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", - "typeExtras": { - "assetId": "12" - } - }, - { - "assetId": 13, - "symbol": "NEER", - "precision": 18, - "priceId": "metaverse-network-pioneer", - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bit.Country.svg", - "typeExtras": { - "assetId": "13" - } - }, - { - "assetId": 14, - "symbol": "BIT", - "precision": 18, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BIT.svg", - "typeExtras": { - "assetId": "14" - } - }, - { - "assetId": 15, - "symbol": "PICA", - "precision": 12, - "priceId": "picasso", - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Picasso.svg", - "typeExtras": { - "assetId": "15" - } - } - ], - "nodes": [ - { - "url": "wss://khala-api.phala.network/ws", - "name": "Phala node" - }, - { - "url": "wss://khala-rpc.dwellir.com", - "name": "Dwellir node" - }, - { - "url": "wss://khala.public.curie.radiumblock.co/ws", - "name": "RadiumBlock node" - }, - { - "url": "wss://khala.api.onfinality.io/public-ws", - "name": "OnFinality node" - } - ], - "explorers": [ - { - "name": "Subscan", - "extrinsic": "https://khala.subscan.io/extrinsic/{hash}", - "account": "https://khala.subscan.io/account/{address}" - }, - { - "name": "Sub.ID", - "account": "https://sub.id/{address}" - } - ], - "externalApi": { - "history": [ - { - "type": "subquery", - "url": "https://gateway.subquery.network/query/0x3a" - } - ] - }, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Khala.svg", - "addressPrefix": 30, - "additional": { - "feeViaRuntimeCall": true - } - }, { "chainId": "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21", "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", @@ -2980,7 +2715,7 @@ "assetId": 0, "symbol": "KILT", "priceId": "kilt-protocol", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg", + "icon": "KILT.svg", "precision": 15, "buyProviders": { "banxa": { @@ -2999,10 +2734,6 @@ "url": "wss://kilt.dotters.network", "name": "IBP2 node" }, - { - "url": "wss://kilt-rpc.dwellir.com", - "name": "Dwellir node" - }, { "url": "wss://spiritnet.kilt.io/", "name": "KILT Protocol node" @@ -3013,19 +2744,9 @@ "name": "Subscan", "extrinsic": "https://spiritnet.subscan.io/extrinsic/{hash}", "account": "https://spiritnet.subscan.io/account/{address}" - }, - { - "name": "Sub.ID", - "account": "https://sub.id/{address}" } ], "externalApi": { - "history": [ - { - "type": "subquery", - "url": "https://gateway.subquery.network/query/0x3d" - } - ], "governance": [ { "type": "polkassembly", @@ -3037,127 +2758,9 @@ "addressPrefix": 38, "options": [ "governance-v1" - ] - }, - { - "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", - "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "name": "Calamari", - "assets": [ - { - "assetId": 0, - "symbol": "KMA", - "priceId": "calamari-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", - "precision": 12, - "staking": [ - "parachain" - ] - }, - { - "assetId": 1, - "symbol": "KAR", - "precision": 12, - "priceId": "karura", - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", - "typeExtras": { - "assetId": "8" - } - }, - { - "assetId": 2, - "symbol": "KSM", - "precision": 12, - "priceId": "kusama", - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", - "typeExtras": { - "assetId": "12" - } - }, - { - "assetId": 3, - "symbol": "MOVR", - "precision": 18, - "priceId": "moonriver", - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOVR.svg", - "typeExtras": { - "assetId": "11" - } - }, - { - "assetId": 4, - "symbol": "USDT", - "precision": 6, - "priceId": "tether", - "type": "statemine", - "icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/wUSDT.png", - "typeExtras": { - "assetId": "14" - } - }, - { - "assetId": 5, - "symbol": "DAI-Karura", - "precision": 18, - "priceId": "dai", - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI-Karura.svg", - "typeExtras": { - "assetId": "15" - } - }, - { - "assetId": 6, - "symbol": "USDC-Karura", - "precision": 6, - "priceId": "usd-coin", - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDC-Karura.svg", - "typeExtras": { - "assetId": "16" - } - } ], - "nodes": [ - { - "url": "wss://calamari.systems", - "name": "Manta network node" - } - ], - "explorers": [ - { - "name": "Subscan", - "extrinsic": "https://calamari.subscan.io/extrinsic/{hash}", - "account": "https://calamari.subscan.io/account/{address}" - }, - { - "name": "Sub.ID", - "account": "https://sub.id/{address}" - } - ], - "externalApi": { - "history": [ - { - "type": "subquery", - "url": "https://gateway.subquery.network/query/0x36" - } - ], - "staking": [ - { - "type": "subquery", - "url": "https://gateway.subquery.network/query/0x36" - } - ] - }, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Calamari.svg", - "addressPrefix": 78, "additional": { - "themeColor": "#D632C1", - "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/calamari-kma-staking", - "defaultBlockTime": 12000 + "supportsGenericLedgerApp": true } }, { @@ -3169,7 +2772,7 @@ "assetId": 0, "symbol": "QTZ", "priceId": "quartz", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "icon": "QTZ.svg", "precision": 18 } ], @@ -3185,100 +2788,14 @@ { "url": "wss://us-ws-quartz.unique.network", "name": "Unique US node" - }, - { - "url": "wss://asia-ws-quartz.unique.network", - "name": "Unique Asia node" } ], - "explorers": [ - { - "name": "Subscan", - "extrinsic": "https://quartz.subscan.io/extrinsic/{hash}", - "account": "https://quartz.subscan.io/account/{address}" - }, - { - "name": "Sub.ID", - "account": "https://sub.id/{address}" - } - ], - "externalApi": { - "history": [ - { - "type": "subquery", - "url": "https://gateway.subquery.network/query/0x3e" - } - ] - }, "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg", "addressPrefix": 255, "additional": { "feeViaRuntimeCall": true } }, - { - "chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3", - "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "name": "Bit.Country Pioneer", - "assets": [ - { - "assetId": 0, - "symbol": "NEER", - "precision": 18, - "priceId": "metaverse-network-pioneer", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/NEER.svg", - "buyProviders": { - "transak": { - "network": "PIONEER" - } - } - }, - { - "assetId": 1, - "symbol": "BIT", - "precision": 18, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BIT.svg", - "type": "orml", - "typeExtras": { - "currencyIdScale": "0x030000000000000000", - "currencyIdType": "bit_country_primitives.FungibleTokenId", - "existentialDeposit": "0", - "transfersEnabled": true - } - } - ], - "nodes": [ - { - "url": "wss://pioneer-rpc-1.bit.country/wss", - "name": "MetaverseNetwork node 1" - }, - { - "url": "wss://pioneer-rpc-2.bit.country/wss", - "name": "MetaverseNetwork node 2" - }, - { - "url": "wss://pioneer-rpc-3.bit.country/wss", - "name": "MetaverseNetwork node 3" - } - ], - "explorers": [ - { - "name": "Subscan", - "extrinsic": "https://pioneer.subscan.io/extrinsic/{hash}", - "account": "https://pioneer.subscan.io/account/{address}" - } - ], - "externalApi": { - "history": [ - { - "type": "subquery", - "url": "https://gateway.subquery.network/query/0x41" - } - ] - }, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bit.Country_Pioneer.svg", - "addressPrefix": 268 - }, { "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", @@ -3289,7 +2806,7 @@ "symbol": "ACA", "priceId": "acala", "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "icon": "ACA.svg", "buyProviders": { "banxa": { "coinType": "ACA", @@ -3303,7 +2820,7 @@ "precision": 10, "priceId": "liquid-staking-dot", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "icon": "LDOT.svg", "typeExtras": { "currencyIdScale": "0x0003", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -3317,7 +2834,7 @@ "precision": 12, "priceId": "ausd-seed-acala", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED-Polkadot.svg", + "icon": "aSEEDp.svg", "typeExtras": { "currencyIdScale": "0x0001", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -3331,7 +2848,7 @@ "precision": 10, "priceId": "polkadot", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "icon": "DOT.svg", "typeExtras": { "currencyIdScale": "0x0002", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -3345,7 +2862,7 @@ "precision": 10, "priceId": "polkadot", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/lcDOT.svg", + "icon": "lcDOT.svg", "typeExtras": { "currencyIdScale": "0x040d000000", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -3359,7 +2876,7 @@ "precision": 18, "priceId": "moonbeam", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GLMR.svg", + "icon": "GLMR.svg", "typeExtras": { "currencyIdScale": "0x050000", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -3372,7 +2889,7 @@ "symbol": "PARA", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "icon": "PARA.svg", "typeExtras": { "currencyIdScale": "0x050100", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -3385,7 +2902,7 @@ "symbol": "TAP", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAP.svg", + "icon": "TAP.svg", "typeExtras": { "currencyIdScale": "0x0004", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -3398,7 +2915,7 @@ "symbol": "tDOT", "precision": 10, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/tDOT.svg", + "icon": "tDOT.svg", "typeExtras": { "currencyIdScale": "0x0300000000", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -3412,7 +2929,7 @@ "precision": 10, "type": "orml", "priceId": "interlay", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "icon": "INTR.svg", "typeExtras": { "currencyIdScale": "0x050400", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -3426,7 +2943,7 @@ "precision": 18, "type": "orml", "priceId": "astar", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "icon": "ASTR.svg", "typeExtras": { "currencyIdScale": "0x050200", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -3440,7 +2957,7 @@ "precision": 9, "priceId": "equilibrium-token", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "icon": "EQ.svg", "typeExtras": { "currencyIdScale": "0x050700", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -3454,7 +2971,7 @@ "precision": 8, "type": "orml", "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "icon": "iBTC.svg", "typeExtras": { "currencyIdScale": "0x050300", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -3468,7 +2985,7 @@ "precision": 18, "type": "orml", "priceId": "dai", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "icon": "DAI.svg", "typeExtras": { "currencyIdScale": "0x0254a37a01cd75b616d63e0ab665bffdb0143c52ae", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -3482,7 +2999,7 @@ "precision": 6, "type": "orml", "priceId": "tether", - "icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/wUSDT.png", + "icon": "USDT.svg", "typeExtras": { "currencyIdScale": "0x050c00", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -3495,20 +3012,29 @@ "symbol": "PINK", "precision": 10, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PINK.svg", + "icon": "PINK.svg", "typeExtras": { "currencyIdScale": "0x050d00", "currencyIdType": "acala_primitives.currency.CurrencyId", "existentialDeposit": "1000000000", "transfersEnabled": true } + }, + { + "assetId": 16, + "symbol": "NEMO", + "precision": 18, + "type": "orml", + "icon": "Default.svg", + "typeExtras": { + "currencyIdScale": "0x02fa904c86b73fd041d6cc2aeed9e6ec0148fd51da", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } } ], "nodes": [ - { - "url": "wss://acala-polkadot.api.onfinality.io/public-ws", - "name": "OnFinality node" - }, { "url": "wss://acala-rpc-0.aca-api.network", "name": "Acala Foundation 0 node" @@ -3526,11 +3052,7 @@ "name": "Acala Foundation 3 node" }, { - "url": "wss://acala.polkawallet.io", - "name": "Polkawallet node" - }, - { - "url": "wss://acala-rpc.dwellir.com", + "url": "wss://acala-rpc.n.dwellir.com", "name": "Dwellir node" } ], @@ -3539,19 +3061,9 @@ "name": "Subscan", "extrinsic": "https://acala.subscan.io/extrinsic/{hash}", "account": "https://acala.subscan.io/account/{address}" - }, - { - "name": "Sub.ID", - "account": "https://sub.id/{address}" } ], "externalApi": { - "history": [ - { - "type": "subquery", - "url": "https://gateway.subquery.network/query/0x3c" - } - ], "governance": [ { "type": "subsquare", @@ -3562,7 +3074,8 @@ "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Acala.svg", "addressPrefix": 10, "additional": { - "feeViaRuntimeCall": true + "feeViaRuntimeCall": true, + "supportsGenericLedgerApp": true }, "options": [ "governance-v1" @@ -3577,12 +3090,9 @@ "assetId": 0, "symbol": "ASTR", "priceId": "astar", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "icon": "ASTR.svg", "precision": 18, "buyProviders": { - "transak": { - "network": "ASTAR" - }, "banxa": { "coinType": "ASTR", "blockchain": "ASTR" @@ -3595,9 +3105,10 @@ "precision": 10, "type": "statemine", "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "icon": "DOT.svg", "typeExtras": { - "assetId": "340282366920938463463374607431768211455" + "assetId": "340282366920938463463374607431768211455", + "isSufficient": true } }, { @@ -3606,9 +3117,10 @@ "precision": 18, "type": "statemine", "priceId": "moonbeam", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GLMR.svg", + "icon": "GLMR.svg", "typeExtras": { - "assetId": "18446744073709551619" + "assetId": "18446744073709551619", + "isSufficient": true } }, { @@ -3617,9 +3129,10 @@ "precision": 8, "type": "statemine", "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "icon": "iBTC.svg", "typeExtras": { - "assetId": "18446744073709551620" + "assetId": "18446744073709551620", + "isSufficient": true } }, { @@ -3628,9 +3141,10 @@ "precision": 10, "type": "statemine", "priceId": "interlay", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "icon": "INTR.svg", "typeExtras": { - "assetId": "18446744073709551621" + "assetId": "18446744073709551621", + "isSufficient": true } }, { @@ -3639,9 +3153,10 @@ "precision": 12, "type": "statemine", "priceId": "pha", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "icon": "PHA.svg", "typeExtras": { - "assetId": "18446744073709551622" + "assetId": "18446744073709551622", + "isSufficient": true } }, { @@ -3650,9 +3165,10 @@ "precision": 12, "type": "statemine", "priceId": "acala", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "icon": "ACA.svg", "typeExtras": { - "assetId": "18446744073709551616" + "assetId": "18446744073709551616", + "isSufficient": true } }, { @@ -3661,9 +3177,10 @@ "precision": 10, "type": "statemine", "priceId": "liquid-staking-dot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "icon": "LDOT.svg", "typeExtras": { - "assetId": "18446744073709551618" + "assetId": "18446744073709551618", + "isSufficient": true } }, { @@ -3672,9 +3189,10 @@ "precision": 12, "type": "statemine", "priceId": "ausd-seed-acala", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED-Polkadot.svg", + "icon": "aSEEDp.svg", "typeExtras": { - "assetId": "18446744073709551617" + "assetId": "18446744073709551617", + "isSufficient": true } }, { @@ -3683,9 +3201,10 @@ "precision": 6, "type": "statemine", "priceId": "tether", - "icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/wUSDT.png", + "icon": "USDT.svg", "typeExtras": { - "assetId": "4294969280" + "assetId": "4294969280", + "isSufficient": true } }, { @@ -3694,9 +3213,10 @@ "precision": 12, "type": "statemine", "priceId": "bifrost-native-coin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "icon": "BNC.svg", "typeExtras": { - "assetId": "18446744073709551623" + "assetId": "18446744073709551623", + "isSufficient": true } }, { @@ -3705,9 +3225,10 @@ "precision": 18, "type": "statemine", "priceId": "unique-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Unique.svg", + "icon": "UNQ.svg", "typeExtras": { - "assetId": "18446744073709551631" + "assetId": "18446744073709551631", + "isSufficient": true } }, { @@ -3716,9 +3237,10 @@ "precision": 10, "type": "statemine", "priceId": "voucher-dot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vDOT.svg", + "icon": "vDOT.svg", "typeExtras": { - "assetId": "18446744073709551624" + "assetId": "18446744073709551624", + "isSufficient": true } }, { @@ -3727,9 +3249,10 @@ "precision": 9, "type": "statemine", "priceId": "tether", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "icon": "EQD.svg", "typeExtras": { - "assetId": "18446744073709551629" + "assetId": "18446744073709551629", + "isSufficient": true } } ], @@ -3739,16 +3262,12 @@ "name": "Astar node" }, { - "url": "wss://astar-rpc.dwellir.com", + "url": "wss://astar-rpc.n.dwellir.com", "name": "Dwellir node" }, { "url": "wss://astar.public.curie.radiumblock.co/ws", "name": "RadiumBlock node" - }, - { - "url": "wss://astar.api.onfinality.io/public-ws", - "name": "OnFinality node" } ], "explorers": [ @@ -3756,17 +3275,13 @@ "name": "Subscan", "extrinsic": "https://astar.subscan.io/extrinsic/{hash}", "account": "https://astar.subscan.io/account/{address}" - }, - { - "name": "Sub.ID", - "account": "https://sub.id/{address}" } ], "externalApi": { "history": [ { "type": "subquery", - "url": "https://gateway.subquery.network/query/0x1f" + "url": "https://subquery-history-astar-prod.novasama-tech.org" } ] }, @@ -3777,266 +3292,6 @@ "supportsGenericLedgerApp": true } }, - { - "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", - "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", - "name": "Parallel", - "assets": [ - { - "assetId": 0, - "symbol": "PARA", - "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg" - }, - { - "assetId": 1, - "symbol": "DOT", - "precision": 10, - "priceId": "polkadot", - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", - "typeExtras": { - "assetId": "101" - } - }, - { - "assetId": 2, - "symbol": "sDOT", - "precision": 10, - "priceId": "polkadot", - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sDOT.svg", - "typeExtras": { - "assetId": "1001" - } - }, - { - "assetId": 3, - "symbol": "ACA", - "precision": 12, - "priceId": "acala", - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", - "typeExtras": { - "assetId": "108" - } - }, - { - "assetId": 4, - "symbol": "aSEEDp", - "precision": 12, - "priceId": "ausd-seed-acala", - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED-Polkadot.svg", - "typeExtras": { - "assetId": "104" - } - }, - { - "assetId": 5, - "symbol": "LDOT", - "precision": 10, - "priceId": "liquid-staking-dot", - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", - "typeExtras": { - "assetId": "110" - } - }, - { - "assetId": 6, - "symbol": "GLMR", - "precision": 18, - "priceId": "moonbeam", - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GLMR.svg", - "typeExtras": { - "assetId": "114" - } - }, - { - "assetId": 7, - "symbol": "cDOT-6/13", - "precision": 10, - "priceId": "polkadot", - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", - "typeExtras": { - "assetId": "200060013" - } - }, - { - "assetId": 8, - "symbol": "cDOT-7/14", - "precision": 10, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", - "typeExtras": { - "assetId": "200070014" - } - }, - { - "assetId": 9, - "symbol": "cDOT-8/15", - "precision": 10, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", - "typeExtras": { - "assetId": "200080015" - } - }, - { - "assetId": 10, - "symbol": "cDOT-9/16", - "precision": 10, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", - "typeExtras": { - "assetId": "200090016" - } - }, - { - "assetId": 11, - "symbol": "cDOT-10/17", - "precision": 10, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", - "typeExtras": { - "assetId": "200100017" - } - }, - { - "assetId": 12, - "symbol": "INTR", - "precision": 10, - "priceId": "interlay", - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", - "typeExtras": { - "assetId": "120" - } - }, - { - "assetId": 13, - "symbol": "iBTC", - "precision": 8, - "priceId": "bitcoin", - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", - "typeExtras": { - "assetId": "122" - } - }, - { - "assetId": 14, - "symbol": "USDT", - "precision": 6, - "priceId": "tether", - "type": "statemine", - "icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/wUSDT.png", - "typeExtras": { - "assetId": "102" - } - }, - { - "assetId": 15, - "symbol": "CLV", - "precision": 18, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", - "typeExtras": { - "assetId": "130" - } - }, - { - "assetId": 16, - "symbol": "ASTR", - "precision": 18, - "priceId": "astar", - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", - "typeExtras": { - "assetId": "112" - } - }, - { - "assetId": 17, - "symbol": "PHA", - "precision": 12, - "priceId": "pha", - "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", - "typeExtras": { - "assetId": "115" - } - } - ], - "nodes": [ - { - "url": "wss://polkadot-parallel-rpc.parallel.fi", - "name": "Parallel node" - } - ], - "explorers": [ - { - "name": "Statescan", - "account": "https://parallel.statescan.io/#/accounts/{address}", - "extrinsic": "https://parallel.statescan.io/#/extrinsics/{hash}", - "event": "https://parallel.statescan.io/#/events/{event}" - }, - { - "name": "Sub.ID", - "account": "https://sub.id/{address}" - } - ], - "externalApi": { - "history": [ - { - "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel" - } - ] - }, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Parallel.svg", - "addressPrefix": 172 - }, - { - "chainId": "5c7bd13edf349b33eb175ffae85210299e324d852916336027391536e686f267", - "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", - "name": "CLV Parachain", - "assets": [ - { - "assetId": 0, - "symbol": "CLV", - "precision": 18, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", - "priceId": "clover-finance" - } - ], - "nodes": [ - { - "url": "wss://rpc-para.clover.finance", - "name": "Clover node" - } - ], - "explorers": [ - { - "name": "Subscan", - "extrinsic": "https://clv.subscan.io/extrinsic/{hash}", - "account": "https://clv.subscan.io/account/{address}" - } - ], - "externalApi": { - "history": [ - { - "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-clover" - } - ] - }, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/CLV_Parachain.svg", - "addressPrefix": 128 - }, { "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", @@ -4046,8 +3301,19 @@ "assetId": 0, "symbol": "DOT", "precision": 10, + "name": "Polkadot", "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + "icon": "DOT.svg", + "staking": [ + "relaychain", + "nomination-pools" + ], + "buyProviders": { + "mercuryo": {} + }, + "sellProviders": { + "mercuryo": {} + } }, { "assetId": 1, @@ -4055,9 +3321,10 @@ "precision": 6, "priceId": "tether", "type": "statemine", - "icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/wUSDT.png", + "icon": "USDT.svg", "typeExtras": { - "assetId": "1984" + "assetId": "1984", + "isSufficient": true } }, { @@ -4066,9 +3333,10 @@ "precision": 6, "priceId": "usd-coin", "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDC.svg", + "icon": "USDC.svg", "typeExtras": { - "assetId": "1337" + "assetId": "1337", + "isSufficient": true } }, { @@ -4077,7 +3345,7 @@ "precision": 10, "priceId": "dot-is-ded", "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DED.svg", + "icon": "DED.svg", "typeExtras": { "assetId": "30" } @@ -4087,7 +3355,7 @@ "symbol": "PINK", "precision": 10, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PINK.svg", + "icon": "PINK.svg", "typeExtras": { "assetId": "23" } @@ -4097,7 +3365,7 @@ "symbol": "DOTA", "precision": 4, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOTA.svg", + "icon": "DOTA.svg", "typeExtras": { "assetId": "18" } @@ -4107,7 +3375,7 @@ "symbol": "STINK", "precision": 10, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/STINK.svg", + "icon": "STINK.svg", "typeExtras": { "assetId": "42069" } @@ -4117,7 +3385,7 @@ "symbol": "GABE", "precision": 20, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GABE.svg", + "icon": "GABE.svg", "typeExtras": { "assetId": "69420" } @@ -4126,8 +3394,9 @@ "assetId": 8, "symbol": "WUD", "precision": 10, + "priceId": "gavun-wud", "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WUD.svg", + "icon": "WUD.svg", "typeExtras": { "assetId": "31337" } @@ -4136,19 +3405,22 @@ "assetId": 9, "symbol": "WETH-Snowbridge", "precision": 18, + "priceId": "ethereum-wormhole", "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WETH-Snowbridge.svg", + "icon": "WETH-Snowbridge.svg", "typeExtras": { "assetId": "0x02020907040300c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "palletName": "ForeignAssets" + "palletName": "ForeignAssets", + "isSufficient": true } }, { "assetId": 10, "symbol": "WBTC-Snowbridge", "precision": 8, + "priceId": "wrapped-bitcoin", "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC-Snowbridge.svg", + "icon": "WBTC-Snowbridge.svg", "typeExtras": { "assetId": "0x020209070403002260fac5e5542a773aa44fbcfedf7c193bc2c599", "palletName": "ForeignAssets" @@ -4159,7 +3431,7 @@ "symbol": "WIFD", "precision": 10, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WIFD.svg", + "icon": "WIFD.svg", "typeExtras": { "assetId": "17" } @@ -4169,7 +3441,7 @@ "symbol": "BORK", "precision": 10, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BORK.svg", + "icon": "BORK.svg", "typeExtras": { "assetId": "690" } @@ -4179,7 +3451,7 @@ "symbol": "BUNS", "precision": 10, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BUNS.svg", + "icon": "BUNS.svg", "typeExtras": { "assetId": "1234" } @@ -4189,7 +3461,7 @@ "symbol": "KOL", "precision": 12, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KOL.svg", + "icon": "KOL.svg", "typeExtras": { "assetId": "86" } @@ -4200,14 +3472,142 @@ "precision": 18, "priceId": "mythos", "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MYTH.svg", + "icon": "MYTH.svg", "typeExtras": { "assetId": "0x010100a534", "palletName": "ForeignAssets" } + }, + { + "assetId": 16, + "symbol": "MYTH-Snowbridge", + "precision": 18, + "priceId": "mythos", + "type": "statemine", + "icon": "MYTH-Snowbridge.svg", + "typeExtras": { + "assetId": "0x02020907040300ba41ddf06b7ffd89d1267b5a93bfef2424eb2003", + "palletName": "ForeignAssets" + } + }, + { + "assetId": 17, + "symbol": "USDC-Snowbridge", + "precision": 6, + "priceId": "usd-coin", + "type": "statemine", + "icon": "USDC-Snowbridge.svg", + "typeExtras": { + "assetId": "0x02020907040300a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "palletName": "ForeignAssets" + } + }, + { + "assetId": 18, + "symbol": "USDT-Snowbridge", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "USDT-Snowbridge.svg", + "typeExtras": { + "assetId": "0x02020907040300dac17f958d2ee523a2206206994597c13d831ec7", + "palletName": "ForeignAssets" + } + }, + { + "assetId": 19, + "symbol": "DAI-Snowbridge", + "precision": 18, + "priceId": "dai", + "type": "statemine", + "icon": "DAI-Snowbridge.svg", + "typeExtras": { + "assetId": "0x020209070403006b175474e89094c44da98b954eedeac495271d0f", + "palletName": "ForeignAssets" + } + }, + { + "assetId": 20, + "symbol": "BASTI", + "precision": 12, + "type": "statemine", + "icon": "Default.svg", + "typeExtras": { + "assetId": "22222015" + } + }, + { + "assetId": 21, + "symbol": "DAMN", + "precision": 12, + "type": "statemine", + "icon": "DAMN.svg", + "typeExtras": { + "assetId": "22222012" + } + }, + { + "assetId": 22, + "symbol": "BILLCOIN", + "precision": 12, + "type": "statemine", + "icon": "BILLCOIN.svg", + "typeExtras": { + "assetId": "50000075" + } + }, + { + "assetId": 23, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "KSM.svg", + "typeExtras": { + "assetId": "0x02010903", + "palletName": "ForeignAssets" + } + }, + { + "assetId": 24, + "symbol": "ETH-Snowbridge", + "precision": 18, + "priceId": "ethereum", + "type": "statemine", + "icon": "WETH-Snowbridge.svg", + "typeExtras": { + "assetId": "0x0201090704", + "palletName": "ForeignAssets" + } + }, + { + "assetId": 26, + "symbol": "MPC", + "precision": 12, + "priceId": "my-paqman-coin", + "icon": "MPC.png", + "type": "statemine", + "typeExtras": { + "assetId": "50000103" + } + }, + { + "assetId": 27, + "symbol": "DON", + "precision": 12, + "priceId": "paydon", + "icon": "DON.png", + "type": "statemine", + "typeExtras": { + "assetId": "50000111" + } } ], "nodes": [ + { + "url": "wss://asset-hub-polkadot-rpc.n.dwellir.com", + "name": "Dwellir node" + }, { "url": "wss://sys.ibp.network/asset-hub-polkadot", "name": "IBP1 node" @@ -4215,14 +3615,6 @@ { "url": "wss://asset-hub-polkadot.dotters.network", "name": "IBP2 node" - }, - { - "url": "wss://statemint-rpc.dwellir.com", - "name": "Dwellir node" - }, - { - "url": "wss://statemint.api.onfinality.io/public-ws", - "name": "OnFinality node" } ], "explorers": [ @@ -4233,26 +3625,81 @@ }, { "name": "Statescan", - "account": "https://statemint.statescan.io/#/accounts/{address}", - "event": "https://statemint.statescan.io/#/events/{event}" + "account": "https://assethub-polkadot.statescan.io/#/accounts/{address}", + "extrinsic": "https://assethub-polkadot.statescan.io/#/extrinsics/{hash}", + "event": "https://assethub-polkadot.statescan.io/#/events/{event}" } ], "externalApi": { "history": [ { "type": "subquery", - "url": "https://gateway.subquery.network/query/0x35" + "url": "https://subquery-history-polkadot-ah-prod.novasama-tech.org" + } + ], + "staking-rewards": [ + { + "type": "subquery", + "url": "https://subquery-history-polkadot-prod.novasama-tech.org" + }, + { + "type": "subquery", + "url": "https://subquery-history-polkadot-ah-prod.novasama-tech.org" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://subquery-history-polkadot-ah-prod.novasama-tech.org" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://polkadot-api.subsquare.io" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://subquery-governance-polkadot-ah-prod.novasama-tech.org" + } + ], + "referendum-summary": [ + { + "type": "novasama", + "url": "https://opengov-backend.novasama-tech.org/api/v1/referendum-summaries/list" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/polkadot.json" } ] }, "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot_Asset_Hub.svg", "addressPrefix": 0, "options": [ - "assethub-fees" + "swap-hub", + "assethub-fees", + "proxy", + "multisig", + "governance", + "fullSyncByDefault", + "crowdloans", + "pushSupport" ], "additional": { + "themeColor": "#E6007A", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/polkadot-dot-staking", + "stakingMaxElectingVoters": 22500, "relaychainAsNative": true, - "supportsGenericLedgerApp": true + "feeViaRuntimeCall": true, + "supportsGenericLedgerApp": true, + "identityChain": "67fa177a097bfa18f77ea95ab56e9bcdfeb0e5b8a40e46298bb93e16b6fc5008", + "timelineChain": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "defaultBlockTime": 2000 } }, { @@ -4264,7 +3711,7 @@ "assetId": 0, "symbol": "XRT", "precision": 9, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "icon": "XRT.svg", "priceId": "robonomics-network" } ], @@ -4277,21 +3724,11 @@ "explorers": [ { "name": "Subscan", - "extrinsic": "https://robonomics.subscan.io/extrinsic/{hash}", - "account": "https://robonomics.subscan.io/account/{address}" - }, - { - "name": "Sub.ID", - "account": "https://sub.id/{address}" + "extrinsic": "https://robonomics-freemium.subscan.io/extrinsic/{hash}", + "account": "https://robonomics-freemium.subscan.io/account/{address}" } ], "externalApi": { - "history": [ - { - "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-robonomics" - } - ], "governance": [ { "type": "polkassembly", @@ -4325,7 +3762,7 @@ "symbol": "KSM", "precision": 12, "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + "icon": "KSM.svg" } ], "nodes": [ @@ -4353,7 +3790,7 @@ "history": [ { "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-encointer" + "url": "https://subquery-history-encointer-prod.novasama-tech.org" } ] }, @@ -4374,7 +3811,7 @@ "precision": 12, "type": "orml", "priceId": "kintsugi", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "icon": "KINT.svg", "typeExtras": { "currencyIdScale": "0x000c", "currencyIdType": "interbtc_primitives.CurrencyId", @@ -4394,7 +3831,7 @@ "precision": 8, "type": "orml", "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "icon": "kBTC.svg", "typeExtras": { "currencyIdScale": "0x000b", "currencyIdType": "interbtc_primitives.CurrencyId", @@ -4408,7 +3845,7 @@ "precision": 12, "priceId": "kusama", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "KSM.svg", "typeExtras": { "currencyIdScale": "0x000a", "currencyIdType": "interbtc_primitives.CurrencyId", @@ -4422,7 +3859,7 @@ "precision": 12, "priceId": "liquid-ksm", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "icon": "LKSM.svg", "typeExtras": { "currencyIdScale": "0x0102000000", "currencyIdType": "interbtc_primitives.CurrencyId", @@ -4436,7 +3873,7 @@ "precision": 6, "priceId": "tether", "type": "orml", - "icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/wUSDT.png", + "icon": "USDT.svg", "typeExtras": { "currencyIdScale": "0x0103000000", "currencyIdType": "interbtc_primitives.CurrencyId", @@ -4450,7 +3887,7 @@ "precision": 12, "priceId": "ausd-seed-karura", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED-Kusama.svg", + "icon": "aSEEDk.svg", "typeExtras": { "currencyIdScale": "0x0101000000", "currencyIdType": "interbtc_primitives.CurrencyId", @@ -4463,7 +3900,7 @@ "symbol": "LP KSM-kBTC", "precision": 18, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KBTC.svg", + "icon": "KSM-kBTC.svg", "typeExtras": { "currencyIdScale": "0x03000a000b", "currencyIdType": "interbtc_primitives.CurrencyId", @@ -4476,7 +3913,7 @@ "symbol": "LP kBTC-USDT", "precision": 18, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC-USDT.svg", + "icon": "kBTC-USDT.svg", "typeExtras": { "currencyIdScale": "0x03000b0103000000", "currencyIdType": "interbtc_primitives.CurrencyId", @@ -4489,7 +3926,7 @@ "symbol": "LP KSM-KINT", "precision": 18, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KINT.svg", + "icon": "KSM-KINT.svg", "typeExtras": { "currencyIdScale": "0x03000a000c", "currencyIdType": "interbtc_primitives.CurrencyId", @@ -4502,7 +3939,7 @@ "symbol": "qkBTC", "precision": 8, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "icon": "qkBTC.svg", "typeExtras": { "currencyIdScale": "0x0201000000", "currencyIdType": "interbtc_primitives.CurrencyId", @@ -4515,7 +3952,7 @@ "symbol": "qKSM", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "qKSM.svg", "typeExtras": { "currencyIdScale": "0x0202000000", "currencyIdType": "interbtc_primitives.CurrencyId", @@ -4528,7 +3965,7 @@ "symbol": "qUSDT", "precision": 6, "type": "orml", - "icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/wUSDT.png", + "icon": "qUSDT.svg", "typeExtras": { "currencyIdScale": "0x0203000000", "currencyIdType": "interbtc_primitives.CurrencyId", @@ -4548,17 +3985,13 @@ "name": "Subscan", "extrinsic": "https://kintsugi.subscan.io/extrinsic/{hash}", "account": "https://kintsugi.subscan.io/account/{address}" - }, - { - "name": "Sub.ID", - "account": "https://sub.id/{address}" } ], "externalApi": { "history": [ { "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kintsugi" + "url": "https://subquery-history-kintsugi-prod.novasama-tech.org" } ] }, @@ -4568,14 +4001,14 @@ { "chainId": "6811a339673c9daa897944dcdac99c6e2939cc88245ed21951a0a3c9a2be75bc", "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "name": "Picasso", + "name": "Picasso (PAUSED)", "assets": [ { "assetId": 0, "symbol": "PICA", "precision": 12, "priceId": "picasso", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Picasso.svg" + "icon": "PICA.svg" }, { "assetId": 1, @@ -4583,7 +4016,7 @@ "precision": 10, "priceId": "polkadot", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "icon": "DOT.svg", "typeExtras": { "currencyIdScale": "0x06000000000000000000000000000000", "currencyIdType": "u128", @@ -4597,7 +4030,7 @@ "precision": 12, "priceId": "kusama", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "KSM.svg", "typeExtras": { "currencyIdScale": "0x04000000000000000000000000000000", "currencyIdType": "u128", @@ -4611,7 +4044,7 @@ "precision": 6, "priceId": "tether", "type": "orml", - "icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/wUSDT.png", + "icon": "USDT.svg", "typeExtras": { "currencyIdScale": "0x82000000000000000000000000000000", "currencyIdType": "u128", @@ -4621,13 +4054,9 @@ } ], "nodes": [ - { - "url": "wss://picasso-rpc.composable.finance", - "name": "Composable 1 node" - }, { "url": "wss://rpc.composablenodes.tech", - "name": "Composable 2 node" + "name": "Composable node" } ], "explorers": [ @@ -4637,14 +4066,6 @@ "account": "https://picasso.subscan.io/account/{address}" } ], - "externalApi": { - "history": [ - { - "type": "subquery", - "url": "https://gateway.subquery.network/query/0x3b" - } - ] - }, "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Picasso.svg", "addressPrefix": 49 }, @@ -4661,41 +4082,32 @@ ], "precision": 10, "priceId": "zeitgeist", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg" + "icon": "ZTG.svg" } ], "nodes": [ { "url": "wss://zeitgeist.api.onfinality.io/public-ws", "name": "OnFinality node" - }, - { - "url": "wss://main.rpc.zeitgeist.pm/ws", - "name": "Zeitgeist node" - } - ], - "explorers": [ - { - "name": "Subscan", - "extrinsic": "https://zeitgeist.subscan.io/extrinsic/{hash}", - "account": "https://zeitgeist.subscan.io/account/{address}" - }, - { - "name": "Sub.ID", - "account": "https://sub.id/{address}" } ], "externalApi": { "history": [ { "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + "url": "https://subquery-history-zeitgeist-prod.novasama-tech.org" } ], "staking": [ { "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + "url": "https://subquery-history-zeitgeist-prod.novasama-tech.org" + } + ], + "staking-rewards": [ + { + "type": "subquery", + "url": "https://subquery-history-zeitgeist-prod.novasama-tech.org" } ], "governance": [ @@ -4712,27 +4124,24 @@ ], "additional": { "themeColor": "#1F78FF", - "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/zeitgeist-ztg-staking" + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/zeitgeist-ztg-staking", + "disabledCheckMetadataHash": true } }, { "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "name": "Subsocial", + "name": "Subsocial (PAUSED)", "assets": [ { "assetId": 0, "symbol": "SUB", "precision": 10, "priceId": "subsocial", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg" + "icon": "SUB.svg" } ], "nodes": [ - { - "url": "wss://subsocial-rpc.dwellir.com", - "name": "Dwellir node" - }, { "url": "wss://para.f3joule.space", "name": "Subsocial node" @@ -4742,17 +4151,11 @@ "name": "Dappforce node" } ], - "explorers": [ - { - "name": "Sub.ID", - "account": "https://sub.id/{address}" - } - ], "externalApi": { "history": [ { "type": "subquery", - "url": "https://gateway.subquery.network/query/0x34" + "url": "https://subquery-history-subsocial-prod.novasama-tech.org" } ] }, @@ -4769,10 +4172,14 @@ "symbol": "CSM", "precision": 12, "priceId": "crust-storage-market", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg" + "icon": "CSM.svg" } ], "nodes": [ + { + "url": "wss://rpc-sha-subscan.crustnetwork.xyz", + "name": "Subscan node" + }, { "url": "wss://rpc2-shadow.crust.network/", "name": "Crust node" @@ -4784,16 +4191,17 @@ ], "explorers": [ { - "name": "Subscan", - "extrinsic": "https://shadow.subscan.io/extrinsic/{hash}", - "account": "https://shadow.subscan.io/account/{address}" + "name": "Statescan", + "account": "https://shadow.statescan.io/#/accounts/{address}", + "extrinsic": "https://shadow.statescan.io/#/extrinsics/{hash}", + "event": "https://shadow.statescan.io/#/events/{event}" } ], "externalApi": { "history": [ { "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shadow" + "url": "https://subquery-history-shadow-prod.novasama-tech.org" } ] }, @@ -4806,24 +4214,20 @@ { "chainId": "cdedc8eadbfa209d3f207bba541e57c3c58a667b05a2e1d1e86353c9000758da", "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "name": "Integritee Parachain", + "name": "Integritee Parachain (PAUSED)", "assets": [ { "assetId": 0, "symbol": "TEER", "precision": 12, "priceId": "integritee", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TEER.svg" + "icon": "TEER.svg" } ], "nodes": [ { "url": "wss://kusama.api.integritee.network", "name": "Integritee node" - }, - { - "url": "wss://integritee-kusama.api.onfinality.io/public-ws", - "name": "OnFinality node" } ], "explorers": [ @@ -4831,17 +4235,13 @@ "name": "Subscan", "extrinsic": "https://integritee.subscan.io/extrinsic/{hash}", "account": "https://integritee.subscan.io/account/{address}" - }, - { - "name": "Sub.ID", - "account": "https://sub.id/{address}" } ], "externalApi": { "history": [ { "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-integritee" + "url": "https://subquery-history-integritee-prod.novasama-tech.org" } ] }, @@ -4858,17 +4258,17 @@ "symbol": "CFG", "precision": 18, "priceId": "centrifuge", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg" + "icon": "CFG.svg" } ], "nodes": [ { - "url": "wss://centrifuge-rpc.dwellir.com", - "name": "Dwellir node" + "url": "wss://fullnode.centrifuge.io", + "name": "Centrifuge node" }, { - "url": "wss://centrifuge-parachain.api.onfinality.io/public-ws", - "name": "Onfinality node" + "url": "wss://rpc-centrifuge.luckyfriday.io", + "name": "LuckyFriday node" } ], "explorers": [ @@ -4876,17 +4276,13 @@ "name": "Subscan", "extrinsic": "https://centrifuge-parachain.subscan.io/extrinsic/{hash}", "account": "https://centrifuge-parachain.subscan.io/account/{address}" - }, - { - "name": "Sub.ID", - "account": "https://sub.id/{address}" } ], "externalApi": { "history": [ { "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-centrifuge" + "url": "https://subquery-history-centrifuge-prod.novasama-tech.org" } ], "governance": [ @@ -4916,7 +4312,7 @@ "symbol": "HDX", "precision": 12, "priceId": "hydradx", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HDX.svg", + "icon": "HDX.svg", "buyProviders": { "banxa": { "coinType": "HDX", @@ -4929,7 +4325,7 @@ "symbol": "DOT", "precision": 10, "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "icon": "DOT.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x05000000", @@ -4944,7 +4340,7 @@ "precision": 18, "priceId": "dai", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI-Acala.svg", + "icon": "DAI-Acala.svg", "typeExtras": { "currencyIdScale": "0x02000000", "currencyIdType": "u32", @@ -4957,7 +4353,7 @@ "symbol": "LRNA", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LRNA.svg", + "icon": "LRNA.svg", "typeExtras": { "currencyIdScale": "0x01000000", "currencyIdType": "u32", @@ -4971,7 +4367,7 @@ "precision": 18, "priceId": "ethereum-wormhole", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WETH-Acala.svg", + "icon": "WETH-Acala.svg", "typeExtras": { "currencyIdScale": "0x04000000", "currencyIdType": "u32", @@ -4985,7 +4381,7 @@ "precision": 8, "priceId": "wrapped-bitcoin", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC-Acala.svg", + "icon": "WBTC-Acala.svg", "typeExtras": { "currencyIdScale": "0x03000000", "currencyIdType": "u32", @@ -4999,7 +4395,7 @@ "precision": 8, "priceId": "bitcoin", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "icon": "iBTC.svg", "typeExtras": { "currencyIdScale": "0x0b000000", "currencyIdType": "u32", @@ -5013,7 +4409,7 @@ "precision": 10, "priceId": "zeitgeist", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg", + "icon": "ZTG.svg", "typeExtras": { "currencyIdScale": "0x0c000000", "currencyIdType": "u32", @@ -5027,7 +4423,7 @@ "precision": 18, "priceId": "astar", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "icon": "ASTR.svg", "typeExtras": { "currencyIdScale": "0x09000000", "currencyIdType": "u32", @@ -5041,7 +4437,7 @@ "precision": 6, "priceId": "tether", "type": "orml", - "icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/wUSDT.png", + "icon": "USDT.svg", "typeExtras": { "currencyIdScale": "0x0a000000", "currencyIdType": "u32", @@ -5055,7 +4451,7 @@ "precision": 18, "priceId": "centrifuge", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg", + "icon": "CFG.svg", "typeExtras": { "currencyIdScale": "0x0d000000", "currencyIdType": "u32", @@ -5069,7 +4465,7 @@ "precision": 12, "priceId": "bifrost-native-coin", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "icon": "BNC.svg", "typeExtras": { "currencyIdScale": "0x0e000000", "currencyIdType": "u32", @@ -5083,7 +4479,7 @@ "precision": 18, "priceId": "dai", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI-Moonbeam.svg", + "icon": "DAI-Moonbeam.svg", "typeExtras": { "currencyIdScale": "0x12000000", "currencyIdType": "u32", @@ -5097,7 +4493,7 @@ "precision": 8, "priceId": "wrapped-bitcoin", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC-Moonbeam.svg", + "icon": "WBTC-Moonbeam.svg", "typeExtras": { "currencyIdScale": "0x13000000", "currencyIdType": "u32", @@ -5111,7 +4507,7 @@ "precision": 18, "priceId": "ethereum-wormhole", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WETH-worm.svg", + "icon": "WETH-Moonbeam.svg", "typeExtras": { "currencyIdScale": "0x14000000", "currencyIdType": "u32", @@ -5125,7 +4521,7 @@ "precision": 6, "priceId": "usd-coin", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDC.svg", + "icon": "USDC.svg", "typeExtras": { "currencyIdScale": "0x16000000", "currencyIdType": "u32", @@ -5139,7 +4535,7 @@ "precision": 18, "priceId": "moonbeam", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GLMR.svg", + "icon": "GLMR.svg", "typeExtras": { "currencyIdScale": "0x10000000", "currencyIdType": "u32", @@ -5152,7 +4548,7 @@ "symbol": "INTR", "precision": 10, "priceId": "interlay", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "icon": "INTR.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x11000000", @@ -5166,7 +4562,7 @@ "symbol": "SUB", "precision": 10, "priceId": "subsocial", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg", + "icon": "SUB.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x18000000", @@ -5180,7 +4576,7 @@ "symbol": "vDOT", "precision": 10, "priceId": "voucher-dot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vDOT.svg", + "icon": "vDOT.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x0f000000", @@ -5194,7 +4590,7 @@ "symbol": "PHA", "precision": 12, "priceId": "pha", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "icon": "PHA.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x08000000", @@ -5209,7 +4605,7 @@ "precision": 6, "priceId": "usd-coin", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDC-Moonbeam.svg", + "icon": "USDC-Moonbeam.svg", "typeExtras": { "currencyIdScale": "0x15000000", "currencyIdType": "u32", @@ -5222,7 +4618,7 @@ "symbol": "4-Pool", "precision": 18, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/4-Pool.svg", + "icon": "4-Pool.svg", "typeExtras": { "currencyIdScale": "0x64000000", "currencyIdType": "u32", @@ -5235,7 +4631,7 @@ "symbol": "2-Pool", "precision": 18, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/2-Pool.svg", + "icon": "2-Pool.svg", "typeExtras": { "currencyIdScale": "0x65000000", "currencyIdType": "u32", @@ -5248,7 +4644,7 @@ "symbol": "2-Pool-Stbl", "precision": 18, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/2-Pool-Stbl.svg", + "icon": "2-Pool-Stbl.svg", "typeExtras": { "currencyIdScale": "0x66000000", "currencyIdType": "u32", @@ -5262,7 +4658,7 @@ "precision": 18, "priceId": "unique-network", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Unique.svg", + "icon": "UNQ.svg", "typeExtras": { "currencyIdScale": "0x19000000", "currencyIdType": "u32", @@ -5276,7 +4672,7 @@ "precision": 11, "priceId": "nodle-network", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg", + "icon": "NODL.svg", "typeExtras": { "currencyIdScale": "0x1a000000", "currencyIdType": "u32", @@ -5290,7 +4686,7 @@ "precision": 12, "priceId": "crust-network", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CRU.svg", + "icon": "CRU.svg", "typeExtras": { "currencyIdScale": "0x1b000000", "currencyIdType": "u32", @@ -5304,7 +4700,7 @@ "precision": 6, "priceId": "tether", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT-Moonbeam.svg", + "icon": "USDT-Moonbeam.svg", "typeExtras": { "currencyIdScale": "0x17000000", "currencyIdType": "u32", @@ -5318,7 +4714,7 @@ "precision": 10, "priceId": "dot-is-ded", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DED.svg", + "icon": "DED.svg", "typeExtras": { "currencyIdScale": "0x53420f00", "currencyIdType": "u32", @@ -5331,7 +4727,7 @@ "symbol": "PINK", "precision": 10, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PINK.svg", + "icon": "PINK.svg", "typeExtras": { "currencyIdScale": "0x55420f00", "currencyIdType": "u32", @@ -5344,7 +4740,7 @@ "symbol": "STINK", "precision": 10, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/STINK.svg", + "icon": "STINK.svg", "typeExtras": { "currencyIdScale": "0x62420f00", "currencyIdType": "u32", @@ -5357,7 +4753,7 @@ "symbol": "DOTA", "precision": 4, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOTA.svg", + "icon": "DOTA.svg", "typeExtras": { "currencyIdScale": "0x66420f00", "currencyIdType": "u32", @@ -5370,7 +4766,7 @@ "symbol": "GABE", "precision": 20, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GABE.svg", + "icon": "GABE.svg", "typeExtras": { "currencyIdScale": "0x7e420f00", "currencyIdType": "u32", @@ -5384,7 +4780,7 @@ "precision": 15, "type": "orml", "priceId": "kilt-protocol", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg", + "icon": "KILT.svg", "typeExtras": { "currencyIdScale": "0x1c000000", "currencyIdType": "u32", @@ -5396,8 +4792,9 @@ "assetId": 35, "symbol": "WUD", "precision": 10, + "priceId": "gavun-wud", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WUD.svg", + "icon": "WUD.svg", "typeExtras": { "currencyIdScale": "0x95420f00", "currencyIdType": "u32", @@ -5411,7 +4808,7 @@ "precision": 18, "priceId": "mythos", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MYTH.svg", + "icon": "MYTH.svg", "typeExtras": { "currencyIdScale": "0x1e000000", "currencyIdType": "u32", @@ -5423,8 +4820,9 @@ "assetId": 37, "symbol": "WETH-Snowbridge", "precision": 18, + "priceId": "ethereum-wormhole", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WETH-Snowbridge.svg", + "icon": "WETH-Snowbridge.svg", "typeExtras": { "currencyIdScale": "0x06430f00", "currencyIdType": "u32", @@ -5436,8 +4834,9 @@ "assetId": 38, "symbol": "WBTC-Snowbridge", "precision": 8, + "priceId": "wrapped-bitcoin", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC-Snowbridge.svg", + "icon": "WBTC-Snowbridge.svg", "typeExtras": { "currencyIdScale": "0xfe420f00", "currencyIdType": "u32", @@ -5450,7 +4849,7 @@ "symbol": "WIFD", "precision": 10, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WIFD.svg", + "icon": "WIFD.svg", "typeExtras": { "currencyIdScale": "0x92420f00", "currencyIdType": "u32", @@ -5463,7 +4862,7 @@ "symbol": "BORK", "precision": 10, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BORK.svg", + "icon": "BORK.svg", "typeExtras": { "currencyIdScale": "0xd4420f00", "currencyIdType": "u32", @@ -5476,7 +4875,7 @@ "symbol": "BUNS", "precision": 10, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BUNS.svg", + "icon": "BUNS.svg", "typeExtras": { "currencyIdScale": "0xf1420f00", "currencyIdType": "u32", @@ -5489,7 +4888,7 @@ "symbol": "KOL", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KOL.svg", + "icon": "KOL.svg", "typeExtras": { "currencyIdScale": "0x07430f00", "currencyIdType": "u32", @@ -5501,17 +4900,408 @@ "assetId": 43, "symbol": "vASTR", "precision": 18, + "priceId": "bifrost-voucher-astr", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vASTR.svg", + "icon": "vASTR.svg", "typeExtras": { "currencyIdScale": "0x21000000", "currencyIdType": "u32", "existentialDeposit": "133689839572193000", "transfersEnabled": true } + }, + { + "assetId": 44, + "symbol": "AJUN", + "precision": 12, + "priceId": "ajuna-network-2", + "type": "orml", + "icon": "AJUN.svg", + "typeExtras": { + "currencyIdScale": "0x20000000", + "currencyIdType": "u32", + "existentialDeposit": "100786131828", + "transfersEnabled": true + } + }, + { + "assetId": 45, + "symbol": "AAVE", + "precision": 18, + "priceId": "aave", + "type": "orml", + "icon": "AAVE.svg", + "typeExtras": { + "currencyIdScale": "0xb0440f00", + "currencyIdType": "u32", + "existentialDeposit": "59084194977843", + "transfersEnabled": true + } + }, + { + "assetId": 46, + "symbol": "BASTI", + "precision": 12, + "type": "orml", + "icon": "Default.svg", + "typeExtras": { + "currencyIdScale": "0x64430f00", + "currencyIdType": "u32", + "existentialDeposit": "1", + "transfersEnabled": true + } + }, + { + "assetId": 47, + "symbol": "DAMN", + "precision": 12, + "type": "orml", + "icon": "DAMN.svg", + "typeExtras": { + "currencyIdScale": "0x5e430f00", + "currencyIdType": "u32", + "existentialDeposit": "1", + "transfersEnabled": true + } + }, + { + "assetId": 48, + "symbol": "SOL-Wormhole", + "precision": 9, + "priceId": "solana", + "type": "orml", + "icon": "SOL-Wormhole.svg", + "typeExtras": { + "currencyIdScale": "0x30450f00", + "currencyIdType": "u32", + "existentialDeposit": "46339", + "transfersEnabled": true + } + }, + { + "assetId": 49, + "symbol": "SUI-Wormhole", + "precision": 9, + "type": "orml", + "icon": "SUI-Wormhole.svg", + "typeExtras": { + "currencyIdScale": "0x31450f00", + "currencyIdType": "u32", + "existentialDeposit": "2652520", + "transfersEnabled": true + } + }, + { + "assetId": 50, + "symbol": "tBTC", + "precision": 18, + "priceId": "tbtc", + "type": "orml", + "icon": "tBTC.svg", + "typeExtras": { + "currencyIdScale": "0x3d450f00", + "currencyIdType": "u32", + "existentialDeposit": "106803374987", + "transfersEnabled": true + } + }, + { + "assetId": 51, + "symbol": "BILLCOIN", + "precision": 12, + "type": "orml", + "icon": "BILLCOIN.svg", + "typeExtras": { + "currencyIdScale": "0x3a450f00", + "currencyIdType": "u32", + "existentialDeposit": "1", + "transfersEnabled": true + } + }, + { + "assetId": 52, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "KSM.svg", + "typeExtras": { + "currencyIdScale": "0x43450f00", + "currencyIdType": "u32", + "existentialDeposit": "313283208", + "transfersEnabled": true + } + }, + { + "assetId": 53, + "symbol": "EWT", + "precision": 18, + "priceId": "energy-web-token", + "type": "orml", + "icon": "EWT.svg", + "typeExtras": { + "currencyIdScale": "0x6dda0300", + "currencyIdType": "u32", + "existentialDeposit": "3244646333550", + "transfersEnabled": true + } + }, + { + "assetId": 54, + "symbol": "LINK", + "precision": 18, + "priceId": "chainlink", + "type": "orml", + "icon": "LINK.svg", + "typeExtras": { + "currencyIdScale": "0x5a450f00", + "currencyIdType": "u32", + "existentialDeposit": "436681222707424", + "transfersEnabled": true + } + }, + { + "assetId": 55, + "symbol": "LDO", + "precision": 18, + "priceId": "lido-dao", + "type": "orml", + "icon": "LDO.svg", + "typeExtras": { + "currencyIdScale": "0x5c450f00", + "currencyIdType": "u32", + "existentialDeposit": "5102040816326530", + "transfersEnabled": true + } + }, + { + "assetId": 56, + "symbol": "SKY", + "precision": 18, + "type": "orml", + "icon": "SKY.svg", + "typeExtras": { + "currencyIdScale": "0x5b450f00", + "currencyIdType": "u32", + "existentialDeposit": "211685012701101000", + "transfersEnabled": true + } + }, + { + "assetId": 57, + "symbol": "ETH-Snowbridge", + "precision": 18, + "priceId": "ethereum", + "type": "orml", + "icon": "WETH-Snowbridge.svg", + "typeExtras": { + "currencyIdScale": "0x22000000", + "currencyIdType": "u32", + "existentialDeposit": "5373455131650", + "transfersEnabled": true + } + }, + { + "assetId": 58, + "symbol": "GDOT", + "precision": 18, + "priceId": "gigadot", + "type": "orml-hydration-evm", + "icon": "GIGADOT.svg", + "typeExtras": { + "currencyIdScale": "0x45000000", + "currencyIdType": "u32", + "existentialDeposit": "5290724013368937", + "transfersEnabled": true + } + }, + { + "assetId": 59, + "symbol": "2-Pool-GDOT", + "precision": 18, + "type": "orml", + "icon": "2-Pool-GDOT.svg", + "typeExtras": { + "currencyIdScale": "0xb2020000", + "currencyIdType": "u32", + "existentialDeposit": "1", + "transfersEnabled": true + } + }, + { + "assetId": 60, + "symbol": "aDOT", + "precision": 10, + "type": "orml-hydration-evm", + "icon": "DOT.svg", + "typeExtras": { + "currencyIdScale": "0xe9030000", + "currencyIdType": "u32", + "existentialDeposit": "54125333", + "transfersEnabled": true + } + }, + { + "assetId": 61, + "symbol": "TRAC", + "precision": 18, + "priceId": "origintrail", + "type": "orml", + "icon": "TRAC.svg", + "typeExtras": { + "currencyIdScale": "0x23000000", + "currencyIdType": "u32", + "existentialDeposit": "27777777777777800", + "transfersEnabled": true + } + }, + { + "assetId": 62, + "symbol": "NEURO", + "precision": 12, + "priceId": "neurowebai", + "type": "orml", + "icon": "NEURO.svg", + "typeExtras": { + "currencyIdScale": "0x24000000", + "currencyIdType": "u32", + "existentialDeposit": "588235294118", + "transfersEnabled": true + } + }, + { + "assetId": 63, + "symbol": "GETH", + "precision": 18, + "priceId": "gigaeth", + "type": "orml-hydration-evm", + "icon": "GIGAETH.svg", + "typeExtras": { + "currencyIdScale": "0xa4010000", + "currencyIdType": "u32", + "existentialDeposit": "8202803876747", + "transfersEnabled": true + } + }, + { + "assetId": 64, + "symbol": "2-Pool-GETH", + "precision": 18, + "type": "orml", + "icon": "2-Pool-GETH.svg", + "typeExtras": { + "currencyIdScale": "0x68100000", + "currencyIdType": "u32", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 65, + "symbol": "HOLLAR", + "precision": 18, + "priceId": "tether", + "type": "orml-hydration-evm", + "icon": "HOLLAR.svg", + "typeExtras": { + "currencyIdScale": "0xde000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 66, + "symbol": "aUSDT", + "precision": 6, + "priceId": "tether", + "type": "orml-hydration-evm", + "icon": "USDT.svg", + "typeExtras": { + "currencyIdScale": "0xea030000", + "currencyIdType": "u32", + "existentialDeposit": "22409", + "transfersEnabled": true + } + }, + { + "assetId": 67, + "symbol": "aUSDC", + "precision": 6, + "priceId": "usd-coin", + "type": "orml-hydration-evm", + "icon": "USDC.svg", + "typeExtras": { + "currencyIdScale": "0xeb030000", + "currencyIdType": "u32", + "existentialDeposit": "22409", + "transfersEnabled": true + } + }, + { + "assetId": 68, + "symbol": "2-Pool-HUSDC", + "precision": 18, + "type": "orml", + "icon": "2-Pool-HUSDC.svg", + "typeExtras": { + "currencyIdScale": "0x6e000000", + "currencyIdType": "u32", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 69, + "symbol": "2-Pool-HUSDT", + "precision": 18, + "type": "orml", + "icon": "2-Pool-HUSDT.svg", + "typeExtras": { + "currencyIdScale": "0x6f000000", + "currencyIdType": "u32", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 70, + "symbol": "PAXG", + "precision": 18, + "priceId": "pax-gold", + "type": "orml", + "icon": "PAXG.svg", + "typeExtras": { + "currencyIdScale": "0x27000000", + "currencyIdType": "u32", + "existentialDeposit": "2374169040836", + "transfersEnabled": true + } + }, + { + "assetId": 71, + "symbol": "PEN", + "precision": 12, + "priceId": "pendulum-chain", + "type": "orml", + "icon": "PEN.svg", + "typeExtras": { + "currencyIdScale": "0x91420f00", + "currencyIdType": "u32", + "existentialDeposit": "153256704981", + "transfersEnabled": true + } } ], "nodes": [ + { + "url": "wss://rpc-hydra.novasama-tech.org", + "name": "Novasama node" + }, + { + "url": "wss://rpc.hydradx.cloud", + "name": "Galactic Council node" + }, { "url": "wss://hydration.ibp.network", "name": "IBP1 node" @@ -5519,14 +5309,6 @@ { "url": "wss://hydration.dotters.network", "name": "IBP2 node" - }, - { - "url": "wss://hydradx-rpc.dwellir.com", - "name": "Dwellir node" - }, - { - "url": "wss://rpc.hydradx.cloud", - "name": "Galactic Council node" } ], "explorers": [ @@ -5540,7 +5322,7 @@ "history": [ { "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-hydra" + "url": "https://subquery-history-hydra-prod.novasama-tech.org" } ], "governance": [ @@ -5551,16 +5333,21 @@ ] }, "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hydration.svg", - "addressPrefix": 63, + "addressPrefix": 0, "options": [ + "governance", "governance-v1", "hydradx-swaps", - "hydration-fees" + "hydration-fees", + "proxy", + "multisig" ], "additional": { "feeViaRuntimeCall": true, - "supportsGenericLedgerApp": true - } + "supportsGenericLedgerApp": true, + "defaultBlockTime": 6000 + }, + "legacyAddressPrefix": 63 }, { "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", @@ -5572,7 +5359,7 @@ "symbol": "INTR", "precision": 10, "priceId": "interlay", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "icon": "INTR.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x0002", @@ -5592,7 +5379,7 @@ "symbol": "iBTC", "precision": 8, "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "icon": "iBTC.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x0001", @@ -5606,7 +5393,7 @@ "symbol": "DOT", "precision": 10, "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "icon": "DOT.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x0000", @@ -5620,7 +5407,7 @@ "symbol": "KINT", "precision": 12, "priceId": "kintsugi", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "icon": "KINT.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x000c", @@ -5634,7 +5421,7 @@ "symbol": "kBTC", "precision": 8, "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "icon": "kBTC.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x000b", @@ -5648,7 +5435,7 @@ "symbol": "KSM", "precision": 12, "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "KSM.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x000a", @@ -5662,7 +5449,7 @@ "symbol": "LDOT", "precision": 10, "priceId": "liquid-staking-dot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "icon": "LDOT.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x0101000000", @@ -5676,7 +5463,7 @@ "symbol": "USDT", "precision": 6, "priceId": "tether", - "icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/wUSDT.png", + "icon": "USDT.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x0102000000", @@ -5690,7 +5477,7 @@ "symbol": "LP iBTC-USDT", "precision": 18, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/iBTC-USDT.svg", + "icon": "iBTC-USDT.svg", "typeExtras": { "currencyIdScale": "0x0300010102000000", "currencyIdType": "interbtc_primitives.CurrencyId", @@ -5703,7 +5490,7 @@ "symbol": "LP DOT-iBTC", "precision": 18, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT-iBTC.svg", + "icon": "DOT-iBTC.svg", "typeExtras": { "currencyIdScale": "0x0300000001", "currencyIdType": "interbtc_primitives.CurrencyId", @@ -5716,7 +5503,7 @@ "symbol": "LP INTR-USDT", "precision": 18, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/INTR-USDT.svg", + "icon": "INTR-USDT.svg", "typeExtras": { "currencyIdScale": "0x0300020102000000", "currencyIdType": "interbtc_primitives.CurrencyId", @@ -5728,7 +5515,7 @@ "assetId": 11, "symbol": "qiBTC", "precision": 8, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "icon": "qiBTC.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x0201000000", @@ -5741,7 +5528,7 @@ "assetId": 12, "symbol": "qUSDT", "precision": 6, - "icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/wUSDT.png", + "icon": "qUSDT.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x0203000000", @@ -5754,7 +5541,7 @@ "assetId": 13, "symbol": "qDOT", "precision": 10, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "icon": "qDOT.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x0202000000", @@ -5769,10 +5556,6 @@ "url": "wss://api.interlay.io/parachain", "name": "Kintsugi Labs node" }, - { - "url": "wss://interlay-rpc.dwellir.com", - "name": "Dwellir node" - }, { "url": "wss://rpc-interlay.luckyfriday.io/", "name": "LuckyFriday node" @@ -5780,16 +5563,17 @@ ], "explorers": [ { - "name": "Subscan", - "extrinsic": "https://interlay.subscan.io/extrinsic/{hash}", - "account": "https://interlay.subscan.io/account/{address}" + "name": "Statescan", + "account": "https://interlay.statescan.io/#/accounts/{address}", + "event": "https://interlay.statescan.io/#/events/{event}", + "extrinsic": "https://interlay.statescan.io/#/extrinsics/{hash}" } ], "externalApi": { "history": [ { "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-interlay" + "url": "https://subquery-history-interlay-prod.novasama-tech.org" } ] }, @@ -5806,17 +5590,13 @@ "symbol": "NODL", "precision": 11, "priceId": "nodle-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg" + "icon": "NODL.svg" } ], "nodes": [ { "url": "wss://nodle-parachain.api.onfinality.io/public-ws", "name": "OnFinality node" - }, - { - "url": "wss://nodle-rpc.dwellir.com", - "name": "Dwellir node" } ], "explorers": [ @@ -5824,22 +5604,21 @@ "name": "Subscan", "extrinsic": "https://nodle.subscan.io/extrinsic/{hash}", "account": "https://nodle.subscan.io/account/{address}" - }, - { - "name": "Sub.ID", - "account": "https://sub.id/{address}" } ], "externalApi": { "history": [ { "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-nodle" + "url": "https://subquery-history-nodle-prod.novasama-tech.org" } ] }, "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Nodle.svg", - "addressPrefix": 37 + "addressPrefix": 37, + "additional": { + "supportsGenericLedgerApp": true + } }, { "chainId": "1bb969d85965e4bb5a651abbedf21a54b6b31a21f66b5401cc3f1e286268d736", @@ -5851,12 +5630,12 @@ "symbol": "PHA", "precision": 12, "priceId": "pha", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + "icon": "PHA.svg" } ], "nodes": [ { - "url": "wss://phala-rpc.dwellir.com", + "url": "wss://phala-rpc.n.dwellir.com", "name": "Dwellir node" }, { @@ -5866,10 +5645,6 @@ { "url": "wss://phala.public.curie.radiumblock.co/ws", "name": "RadiumBlock node" - }, - { - "url": "wss://phala.api.onfinality.io/public-ws", - "name": "OnFinality node" } ], "explorers": [ @@ -5883,7 +5658,7 @@ "history": [ { "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-phala" + "url": "https://subquery-history-phala-prod.novasama-tech.org" } ], "governance": [ @@ -5897,157 +5672,9 @@ "addressPrefix": 30, "options": [ "governance-v1" - ] - }, - { - "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", - "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "name": "Turing", - "assets": [ - { - "assetId": 0, - "symbol": "TUR", - "staking": [ - "turing" - ], - "precision": 10, - "priceId": "turing-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg" - }, - { - "assetId": 1, - "symbol": "KSM", - "precision": 12, - "priceId": "kusama", - "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", - "typeExtras": { - "currencyIdScale": "0x01000000", - "currencyIdType": "u32", - "existentialDeposit": "100000000", - "transfersEnabled": true - } - }, - { - "assetId": 2, - "symbol": "aSEEDk", - "precision": 12, - "priceId": "ausd-seed-karura", - "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED-Kusama.svg", - "typeExtras": { - "currencyIdScale": "0x02000000", - "currencyIdType": "u32", - "existentialDeposit": "10000000000", - "transfersEnabled": true - } - }, - { - "assetId": 3, - "symbol": "KAR", - "precision": 12, - "priceId": "karura", - "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", - "typeExtras": { - "currencyIdScale": "0x03000000", - "currencyIdType": "u32", - "existentialDeposit": "100000000000", - "transfersEnabled": true - } - }, - { - "assetId": 4, - "symbol": "LKSM", - "precision": 12, - "priceId": "liquid-ksm", - "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", - "typeExtras": { - "currencyIdScale": "0x04000000", - "currencyIdType": "u32", - "existentialDeposit": "500000000", - "transfersEnabled": true - } - }, - { - "assetId": 5, - "symbol": "HKO", - "precision": 12, - "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", - "typeExtras": { - "currencyIdScale": "0x05000000", - "currencyIdType": "u32", - "existentialDeposit": "500000000000", - "transfersEnabled": true - } - }, - { - "assetId": 6, - "symbol": "sKSM", - "precision": 12, - "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", - "typeExtras": { - "currencyIdScale": "0x06000000", - "currencyIdType": "u32", - "existentialDeposit": "500000000", - "transfersEnabled": true - } - }, - { - "assetId": 7, - "symbol": "PHA", - "precision": 12, - "priceId": "pha", - "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", - "typeExtras": { - "currencyIdScale": "0x07000000", - "currencyIdType": "u32", - "existentialDeposit": "10000000000", - "transfersEnabled": true - } - } ], - "nodes": [ - { - "url": "wss://rpc.turing.oak.tech", - "name": "Turing node" - }, - { - "url": "wss://turing-rpc.dwellir.com", - "name": "Dwellir node" - } - ], - "explorers": [ - { - "name": "Subscan", - "extrinsic": "https://turing.subscan.io/extrinsic/{hash}", - "account": "https://turing.subscan.io/account/{address}" - } - ], - "externalApi": { - "history": [ - { - "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" - } - ], - "staking": [ - { - "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" - } - ] - }, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing.svg", - "addressPrefix": 51, "additional": { - "themeColor": "#14B1D3", - "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/turing-tur-staking", - "defaultBlockTime": 12000 + "supportsGenericLedgerApp": true } }, { @@ -6063,11 +5690,8 @@ "nomination-pools" ], "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg", + "icon": "AZERO.svg", "buyProviders": { - "transak": { - "network": "ALEPHZERO" - }, "banxa": { "coinType": "AZERO", "blockchain": "AZERO" @@ -6092,13 +5716,19 @@ "history": [ { "type": "subquery", - "url": "https://gateway.subquery.network/query/0x1c" + "url": "https://subquery-history-aleph-zero-prod.novasama-tech.org" } ], "staking": [ { "type": "subquery", - "url": "https://gateway.subquery.network/query/0x1c" + "url": "https://subquery-history-aleph-zero-prod.novasama-tech.org" + } + ], + "staking-rewards": [ + { + "type": "subquery", + "url": "https://subquery-history-aleph-zero-prod.novasama-tech.org" } ] }, @@ -6112,7 +5742,8 @@ }, "options": [ "fullSyncByDefault", - "pushSupport" + "pushSupport", + "multisig" ] }, { @@ -6127,7 +5758,7 @@ "relaychain" ], "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadex.svg" + "icon": "PDEX.svg" }, { "assetId": 1, @@ -6135,9 +5766,10 @@ "precision": 12, "priceId": "polkadot", "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "icon": "DOT.svg", "typeExtras": { - "assetId": "95930534000017180603917534864279132680" + "assetId": "95930534000017180603917534864279132680", + "isSufficient": true } }, { @@ -6146,9 +5778,10 @@ "precision": 12, "priceId": "tether", "type": "statemine", - "icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/wUSDT.png", + "icon": "USDT.svg", "typeExtras": { - "assetId": "3496813586714279103986568049643838918" + "assetId": "3496813586714279103986568049643838918", + "isSufficient": true } }, { @@ -6157,9 +5790,10 @@ "precision": 12, "priceId": "astar", "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "icon": "ASTR.svg", "typeExtras": { - "assetId": "222121451965151777636299756141619631150" + "assetId": "222121451965151777636299756141619631150", + "isSufficient": true } }, { @@ -6168,9 +5802,10 @@ "precision": 12, "priceId": "pha", "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "icon": "PHA.svg", "typeExtras": { - "assetId": "193492391581201937291053139015355410612" + "assetId": "193492391581201937291053139015355410612", + "isSufficient": true } }, { @@ -6179,9 +5814,10 @@ "precision": 12, "priceId": "bitcoin", "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "icon": "iBTC.svg", "typeExtras": { - "assetId": "226557799181424065994173367616174607641" + "assetId": "226557799181424065994173367616174607641", + "isSufficient": true } }, { @@ -6190,9 +5826,10 @@ "precision": 12, "priceId": "dot-is-ded", "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DED.svg", + "icon": "DED.svg", "typeExtras": { - "assetId": "119367686984583275840673742485354142551" + "assetId": "119367686984583275840673742485354142551", + "isSufficient": true } }, { @@ -6200,9 +5837,10 @@ "symbol": "PINK", "precision": 12, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PINK.svg", + "icon": "PINK.svg", "typeExtras": { - "assetId": "339306133874233608313826294843504252047" + "assetId": "339306133874233608313826294843504252047", + "isSufficient": true } }, { @@ -6211,40 +5849,40 @@ "precision": 12, "priceId": "moonbeam", "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GLMR.svg", + "icon": "GLMR.svg", "typeExtras": { - "assetId": "182269558229932594457975666948556356791" + "assetId": "182269558229932594457975666948556356791", + "isSufficient": true } } ], "nodes": [ { - "url": "wss://polkadex.public.curie.radiumblock.co/ws", - "name": "RadiumBlock node" - } - ], - "explorers": [ - { - "name": "Subscan", - "extrinsic": "https://polkadex.subscan.io/extrinsic/{hash}", - "account": "https://polkadex.subscan.io/account/{address}" + "url": "wss://so.polkadex.ee", + "name": "PolkadexSup node" }, { - "name": "Sub.ID", - "account": "https://sub.id/{address}" + "url": "wss://polkadex.public.curie.radiumblock.co/ws", + "name": "RadiumBlock node" } ], "externalApi": { "staking": [ { "type": "subquery", - "url": "https://gateway.subquery.network/query/0x20" + "url": "https://subquery-history-polkadex-prod.novasama-tech.org" + } + ], + "staking-rewards": [ + { + "type": "subquery", + "url": "https://subquery-history-polkadex-prod.novasama-tech.org" } ], "history": [ { "type": "subquery", - "url": "https://gateway.subquery.network/query/0x20" + "url": "https://subquery-history-polkadex-prod.novasama-tech.org" } ] }, @@ -6270,7 +5908,7 @@ "symbol": "NEURO", "precision": 12, "priceId": "neurowebai", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/NEURO.svg" + "icon": "NEURO.svg" }, { "assetId": 1, @@ -6278,7 +5916,7 @@ "precision": 18, "priceId": "origintrail", "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TRAC.svg", + "icon": "TRAC.svg", "typeExtras": { "assetId": "1" } @@ -6288,10 +5926,6 @@ { "url": "wss://parachain-rpc.origin-trail.network", "name": "TraceLabs node" - }, - { - "url": "wss://neuroweb-rpc.dwellir.com", - "name": "Dwellir node" } ], "explorers": [ @@ -6301,14 +5935,6 @@ "extrinsic": "https://neuroweb.subscan.io/extrinsic/{hash}" } ], - "externalApi": { - "history": [ - { - "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-origin-trail" - } - ] - }, "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/NeuroWeb.svg", "addressPrefix": 101, "additional": { @@ -6325,7 +5951,7 @@ "symbol": "BNC", "precision": 12, "priceId": "bifrost-native-coin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "icon": "BNC.svg", "buyProviders": { "banxa": { "coinType": "BNC", @@ -6339,7 +5965,7 @@ "precision": 18, "priceId": "moonbeam", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GLMR.svg", + "icon": "GLMR.svg", "typeExtras": { "currencyIdScale": "0x0801", "currencyIdType": "bifrost_primitives.currency.CurrencyId", @@ -6353,7 +5979,7 @@ "precision": 10, "priceId": "polkadot", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "icon": "DOT.svg", "typeExtras": { "currencyIdScale": "0x0800", "currencyIdType": "bifrost_primitives.currency.CurrencyId", @@ -6367,7 +5993,7 @@ "precision": 6, "priceId": "tether", "type": "orml", - "icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/wUSDT.png", + "icon": "USDT.svg", "typeExtras": { "currencyIdScale": "0x0802", "currencyIdType": "bifrost_primitives.currency.CurrencyId", @@ -6381,7 +6007,7 @@ "precision": 18, "priceId": "astar", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "icon": "ASTR.svg", "typeExtras": { "currencyIdScale": "0x0803", "currencyIdType": "bifrost_primitives.currency.CurrencyId", @@ -6395,7 +6021,7 @@ "precision": 10, "priceId": "voucher-dot", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vDOT.svg", + "icon": "vDOT.svg", "typeExtras": { "currencyIdScale": "0x0900", "currencyIdType": "bifrost_primitives.currency.CurrencyId", @@ -6409,7 +6035,7 @@ "precision": 18, "priceId": "voucher-glmr", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vGLMR.svg", + "icon": "vGLMR.svg", "typeExtras": { "currencyIdScale": "0x0901", "currencyIdType": "bifrost_primitives.currency.CurrencyId", @@ -6422,7 +6048,7 @@ "symbol": "vFIL", "precision": 18, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vFIL.svg", + "icon": "vFIL.svg", "typeExtras": { "currencyIdScale": "0x0904", "currencyIdType": "bifrost_primitives.currency.CurrencyId", @@ -6434,8 +6060,9 @@ "assetId": 8, "symbol": "vASTR", "precision": 18, + "priceId": "bifrost-voucher-astr", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vASTR.svg", + "icon": "vASTR.svg", "typeExtras": { "currencyIdScale": "0x0903", "currencyIdType": "bifrost_primitives.currency.CurrencyId", @@ -6448,7 +6075,7 @@ "symbol": "vsDOT", "precision": 10, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsDOT.svg", + "icon": "vsDOT.svg", "typeExtras": { "currencyIdScale": "0x0a00", "currencyIdType": "bifrost_primitives.currency.CurrencyId", @@ -6462,7 +6089,7 @@ "precision": 18, "priceId": "manta-network", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MANTA.svg", + "icon": "MANTA.svg", "typeExtras": { "currencyIdScale": "0x0808", "currencyIdType": "bifrost_primitives.currency.CurrencyId", @@ -6475,13 +6102,26 @@ "symbol": "vMANTA", "precision": 18, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vMANTA.svg", + "icon": "vMANTA.svg", "typeExtras": { "currencyIdScale": "0x0908", "currencyIdType": "bifrost_primitives.currency.CurrencyId", "existentialDeposit": "10000000000000", "transfersEnabled": true } + }, + { + "assetId": 12, + "symbol": "vBNC", + "precision": 12, + "type": "orml", + "icon": "vBNC.svg", + "typeExtras": { + "currencyIdScale": "0x0101", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } } ], "nodes": [ @@ -6496,6 +6136,10 @@ { "url": "wss://hk.p.bifrost-rpc.liebi.com/ws", "name": "Liebi node" + }, + { + "url": "wss://eu.bifrost-polkadot-rpc.liebi.com/ws", + "name": "LiebiEU node" } ], "explorers": [ @@ -6509,7 +6153,7 @@ "history": [ { "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost-polkadot" + "url": "https://subquery-history-bifrost-polkadot-prod.novasama-tech.org" } ], "governance": [ @@ -6520,22 +6164,26 @@ ] }, "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Polkadot.svg", - "addressPrefix": 6, + "addressPrefix": 0, + "legacyAddressPrefix": 6, "options": [ - "governance-v1" - ] + "governance" + ], + "additional": { + "supportsGenericLedgerApp": true + } }, { "chainId": "2fc8bb6ed7c0051bdcf4866c322ed32b6276572713607e3297ccf411b8f14aa9", "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", - "name": "Litentry", + "name": "Heima", "assets": [ { "assetId": 0, - "symbol": "LIT", + "symbol": "HEI", "precision": 18, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", - "priceId": "litentry" + "icon": "HEI.svg", + "priceId": "heima" } ], "nodes": [ @@ -6544,27 +6192,27 @@ "name": "Litentry node" }, { - "url": "wss://litentry-rpc.dwellir.com", + "url": "wss://heima-rpc.n.dwellir.com", "name": "Dwellir node" } ], "explorers": [ { "name": "Statescan", - "account": "https://litentry.statescan.io/#/accounts/{address}", - "extrinsic": "https://litentry.statescan.io/#/extrinsics/{hash}", - "event": "https://litentry.statescan.io/#/events/{event}" + "account": "https://heima.statescan.io/#/accounts/{address}", + "extrinsic": "https://heima.statescan.io/#/extrinsics/{hash}", + "event": "https://heima.statescan.io/#/events/{event}" } ], "externalApi": { "history": [ { "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litentry" + "url": "https://subquery-history-litentry-prod.novasama-tech.org" } ] }, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litentry.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Heima.svg", "addressPrefix": 31 }, { @@ -6577,7 +6225,7 @@ "symbol": "UNQ", "precision": 18, "priceId": "unique-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Unique.svg" + "icon": "UNQ.svg" } ], "nodes": [ @@ -6613,24 +6261,30 @@ "history": [ { "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-unique" + "url": "https://subquery-history-unique-prod.novasama-tech.org" } ] }, "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Unique.svg", - "addressPrefix": 7391 + "addressPrefix": 7391, + "options": [ + "fullSyncByDefault" + ], + "additional": { + "disabledCheckMetadataHash": true + } }, { "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "name": "Mangata X", + "name": "Mangata X (PAUSED)", "assets": [ { "assetId": 0, "symbol": "MGX", "priceId": "mangata-x", "precision": 18, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/MangataX.svg", + "icon": "MGX.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x00000000", @@ -6644,7 +6298,7 @@ "symbol": "KSM", "precision": 12, "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "KSM.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x04000000", @@ -6658,7 +6312,7 @@ "symbol": "ETH", "precision": 18, "priceId": "ethereum", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "icon": "ETH.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x01000000", @@ -6672,7 +6326,7 @@ "symbol": "TUR", "precision": 10, "priceId": "turing-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "icon": "TUR.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x07000000", @@ -6686,7 +6340,7 @@ "symbol": "BNC", "precision": 12, "priceId": "bifrost-native-coin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "icon": "BNC.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x0e000000", @@ -6700,7 +6354,7 @@ "symbol": "RMRK (old)", "precision": 10, "priceId": "rmrk", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "icon": "RMRK.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x1f000000", @@ -6714,7 +6368,7 @@ "symbol": "ZLK", "precision": 18, "priceId": "zenlink-network-token", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "icon": "ZLK.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x1a000000", @@ -6727,7 +6381,7 @@ "assetId": 7, "symbol": "vsKSM", "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "icon": "vsKSM.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x10000000", @@ -6741,7 +6395,7 @@ "symbol": "vKSM", "precision": 12, "priceId": "voucher-ksm", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "icon": "vKSM.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x0f000000", @@ -6774,13 +6428,13 @@ { "chainId": "feb426ca713f0f46c96465b8f039890370cf6bfd687c9076ea2843f58a6ae8a7", "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "name": "Kabocha", + "name": "Kabocha (PAUSED)", "assets": [ { "assetId": 0, "symbol": "KAB", "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kabocha.svg" + "icon": "KAB.svg" } ], "nodes": [ @@ -6789,133 +6443,9 @@ "name": "JelliedOwl node" } ], - "externalApi": { - "history": [ - { - "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kabocha" - } - ] - }, "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kabocha.svg", "addressPrefix": 27 }, - { - "chainId": "35a06bfec2edf0ff4be89a6428ccd9ff5bd0167d618c5a0d4341f9600a458d14", - "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "name": "Bajun", - "assets": [ - { - "assetId": 0, - "symbol": "BAJU", - "precision": 12, - "priceId": "ajuna-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bajun.svg", - "buyProviders": { - "banxa": { - "coinType": "BAJU", - "blockchain": "BAJU" - } - } - } - ], - "nodes": [ - { - "url": "wss://rpc-parachain.bajun.network", - "name": "AjunaNetwork node" - }, - { - "url": "wss://bajun.public.curie.radiumblock.co/ws", - "name": "Radium node" - }, - { - "url": "wss://bajun.api.onfinality.io/public-ws", - "name": "OnFinality node" - } - ], - "explorers": [ - { - "name": "Subscan", - "extrinsic": "https://bajun.subscan.io/extrinsic/{hash}", - "account": "https://bajun.subscan.io/account/{address}" - } - ], - "externalApi": { - "history": [ - { - "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bajun" - } - ] - }, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bajun.svg", - "addressPrefix": 1337 - }, - { - "chainId": "ca93a37c913a25fa8fdb33c7f738afc39379cb71d37874a16d4c091a5aef9f89", - "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "name": "Imbue", - "assets": [ - { - "assetId": 0, - "symbol": "IMBU", - "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Imbue.svg" - } - ], - "nodes": [ - { - "url": "wss://kusama.imbuenetwork.com", - "name": "Imbue node" - } - ], - "externalApi": { - "history": [ - { - "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-imbue" - } - ] - }, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Imbue.svg", - "addressPrefix": 42, - "additional": { - "feeViaRuntimeCall": true - } - }, - { - "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", - "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "name": "Tinkernet", - "assets": [ - { - "assetId": 0, - "symbol": "TNKR", - "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg" - } - ], - "nodes": [ - { - "url": "wss://tinkernet-rpc.dwellir.com", - "name": "Dwellir node" - } - ], - "externalApi": { - "history": [ - { - "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-tinkernet" - } - ] - }, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Tinkernet.svg", - "addressPrefix": 117, - "additional": { - "feeViaRuntimeCall": true, - "disabledCheckMetadataHash": true - } - }, { "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", @@ -6925,7 +6455,7 @@ "assetId": 0, "symbol": "AMPE", "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Amplitude.svg" + "icon": "AMPE.svg" }, { "assetId": 1, @@ -6933,7 +6463,7 @@ "precision": 12, "type": "orml", "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "KSM.svg", "typeExtras": { "currencyIdScale": "0x0100", "currencyIdType": "spacewalk_primitives.CurrencyId", @@ -6947,7 +6477,7 @@ "precision": 6, "priceId": "tether", "type": "orml", - "icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/wUSDT.png", + "icon": "USDT.svg", "typeExtras": { "currencyIdScale": "0x0101", "currencyIdType": "spacewalk_primitives.CurrencyId", @@ -6961,7 +6491,7 @@ "precision": 12, "priceId": "usdc", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDC.svg", + "icon": "USDC.svg", "typeExtras": { "currencyIdScale": "0x0201555344433b9911380efe988ba0a8900eb1cfe44f366f7dbe946bed077240f7f624df15c5", "currencyIdType": "spacewalk_primitives.CurrencyId", @@ -6975,7 +6505,7 @@ "precision": 12, "priceId": "stellar", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/XLM.svg", + "icon": "XLM.svg", "typeExtras": { "currencyIdScale": "0x0200", "currencyIdType": "spacewalk_primitives.CurrencyId", @@ -6988,7 +6518,7 @@ "symbol": "TZS.s", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TZS.svg", + "icon": "TZS.svg", "typeExtras": { "currencyIdScale": "0x0201545a530034c94b2a4ba9e8b57b22547dcbb30f443c4cb02da3829a89aa1bd4780e4466ba", "currencyIdType": "spacewalk_primitives.CurrencyId", @@ -7001,7 +6531,7 @@ "symbol": "BRL.s", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BRL.svg", + "icon": "BRL.svg", "typeExtras": { "currencyIdScale": "0x020142524c00eaac68d4d0e37b4c24c2536916e830735f032d0d6b2a1c8fca3bc5a25e083e3a", "currencyIdType": "spacewalk_primitives.CurrencyId", @@ -7015,7 +6545,7 @@ "precision": 12, "priceId": "novatti-australian-digital-dollar", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUDD.svg", + "icon": "AUDD.svg", "typeExtras": { "currencyIdScale": "0x020141554444c5fbe9979e240552860221f4fe2f2219f35e40458b8b58fc32da520a154a561d", "currencyIdType": "spacewalk_primitives.CurrencyId", @@ -7028,7 +6558,7 @@ "symbol": "EURC.s", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EURM.svg", + "icon": "EURM.svg", "typeExtras": { "currencyIdScale": "0x0201455552432112ee863867e4e219fe254c0918b00bc9ea400775bfc3ab4430971ce505877c", "currencyIdType": "spacewalk_primitives.CurrencyId", @@ -7041,7 +6571,7 @@ "symbol": "NGNC.s", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/NGN.svg", + "icon": "NGNC.svg", "typeExtras": { "currencyIdScale": "0x02014e474e43241afadf31883f79972545fc64f3b5b0c95704c6fb4917474e42b0057841606b", "currencyIdType": "spacewalk_primitives.CurrencyId", @@ -7060,15 +6590,17 @@ "history": [ { "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-amplitude" + "url": "https://subquery-history-amplitude-prod.novasama-tech.org" } ] }, "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Amplitude.svg", - "addressPrefix": 57, + "addressPrefix": 0, "additional": { - "feeViaRuntimeCall": true - } + "feeViaRuntimeCall": true, + "supportsGenericLedgerApp": true + }, + "legacyAddressPrefix": 57 }, { "chainId": "6859c81ca95ef624c9dfe4dc6e3381c33e5d6509e35e147092bfbc780f777c4e", @@ -7082,7 +6614,7 @@ "relaychain" ], "precision": 18, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Ternoa.svg", + "icon": "CAPS.svg", "buyProviders": { "banxa": { "coinType": "CAPS", @@ -7108,13 +6640,19 @@ "staking": [ { "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + "url": "https://subquery-history-ternoa-prod.novasama-tech.org" + } + ], + "staking-rewards": [ + { + "type": "subquery", + "url": "https://subquery-history-ternoa-prod.novasama-tech.org" } ], "history": [ { "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + "url": "https://subquery-history-ternoa-prod.novasama-tech.org" } ] }, @@ -7135,7 +6673,13 @@ "symbol": "POLYX", "precision": 6, "priceId": "polymesh", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polymesh.svg" + "icon": "POLYX.svg", + "buyProviders": { + "banxa": { + "coinType": "POLYX", + "blockchain": "Polymesh" + } + } } ], "nodes": [ @@ -7157,7 +6701,7 @@ "history": [ { "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polymesh" + "url": "https://subquery-history-polymesh-prod.novasama-tech.org" } ] } @@ -7171,7 +6715,7 @@ "assetId": 0, "symbol": "MITO", "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MITO.svg" + "icon": "MITO.svg" } ], "nodes": [ @@ -7184,7 +6728,7 @@ "history": [ { "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-dao-ipci" + "url": "https://subquery-history-dao-ipci-prod.novasama-tech.org" } ] }, @@ -7193,14 +6737,14 @@ }, { "chainId": "74ed91fbc18497f011290f9119a2217908649170337b6414a2d44923ade07063", - "name": "Myriad", + "name": "Myriad (PAUSED)", "assets": [ { "assetId": 0, "symbol": "MYRIA", "precision": 18, "priceId": "myriad-social", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MYRIA.svg" + "icon": "MYRIA.svg" } ], "nodes": [ @@ -7215,14 +6759,6 @@ "account": "https://explorer.mainnet.oct.network/myriad/accounts/{address}" } ], - "externalApi": { - "history": [ - { - "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-myriad" - } - ] - }, "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Myriad.svg", "addressPrefix": 42 }, @@ -7235,14 +6771,10 @@ "symbol": "XX", "precision": 9, "priceId": "xxcoin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/XX.svg" + "icon": "XX.svg" } ], "nodes": [ - { - "url": "wss://xxnetwork-rpc.dwellir.com", - "name": "Dwellir node" - }, { "url": "wss://rpc.xx.network", "name": "xx Foundation 1 node" @@ -7250,10 +6782,6 @@ { "url": "wss://rpc-hetzner.xx.network", "name": "xx Foundation 2 node" - }, - { - "url": "wss://rpc-do.xx.network", - "name": "xx Foundation 3 node" } ], "explorers": [ @@ -7268,14 +6796,6 @@ "account": "https://xx.polkastats.io/account/{address}" } ], - "externalApi": { - "history": [ - { - "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-xx-network" - } - ] - }, "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/XX_network.svg", "addressPrefix": 55, "additional": { @@ -7292,7 +6812,7 @@ "symbol": "PEN", "precision": 12, "priceId": "pendulum-chain", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PEN.svg" + "icon": "PEN.svg" }, { "assetId": 1, @@ -7300,7 +6820,7 @@ "precision": 10, "priceId": "polkadot", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "icon": "DOT.svg", "typeExtras": { "currencyIdScale": "0x0100", "currencyIdType": "spacewalk_primitives.CurrencyId", @@ -7314,7 +6834,7 @@ "precision": 6, "priceId": "tether", "type": "orml", - "icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/wUSDT.png", + "icon": "USDT.svg", "typeExtras": { "currencyIdScale": "0x0101", "currencyIdType": "spacewalk_primitives.CurrencyId", @@ -7328,7 +6848,7 @@ "precision": 6, "priceId": "usd-coin", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDC.svg", + "icon": "USDC.svg", "typeExtras": { "currencyIdScale": "0x0102", "currencyIdType": "spacewalk_primitives.CurrencyId", @@ -7342,7 +6862,7 @@ "precision": 12, "priceId": "usdc", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDC.svg", + "icon": "USDC.svg", "typeExtras": { "currencyIdScale": "0x0201555344433b9911380efe988ba0a8900eb1cfe44f366f7dbe946bed077240f7f624df15c5", "currencyIdType": "spacewalk_primitives.CurrencyId", @@ -7356,7 +6876,7 @@ "precision": 12, "priceId": "stellar", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/XLM.svg", + "icon": "XLM.svg", "typeExtras": { "currencyIdScale": "0x0200", "currencyIdType": "spacewalk_primitives.CurrencyId", @@ -7369,7 +6889,7 @@ "symbol": "TZS.s", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TZS.svg", + "icon": "TZS.svg", "typeExtras": { "currencyIdScale": "0x0201545a530034c94b2a4ba9e8b57b22547dcbb30f443c4cb02da3829a89aa1bd4780e4466ba", "currencyIdType": "spacewalk_primitives.CurrencyId", @@ -7382,7 +6902,7 @@ "symbol": "BRL.s", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BRL.svg", + "icon": "BRL.svg", "typeExtras": { "currencyIdScale": "0x020142524c00eaac68d4d0e37b4c24c2536916e830735f032d0d6b2a1c8fca3bc5a25e083e3a", "currencyIdType": "spacewalk_primitives.CurrencyId", @@ -7396,7 +6916,7 @@ "precision": 12, "priceId": "novatti-australian-digital-dollar", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUDD.svg", + "icon": "AUDD.svg", "typeExtras": { "currencyIdScale": "0x020141554444c5fbe9979e240552860221f4fe2f2219f35e40458b8b58fc32da520a154a561d", "currencyIdType": "spacewalk_primitives.CurrencyId", @@ -7409,7 +6929,8 @@ "symbol": "EURC.s", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EURM.svg", + "icon": "EURM.svg", + "priceId": "euro-coin", "typeExtras": { "currencyIdScale": "0x0201455552432112ee863867e4e219fe254c0918b00bc9ea400775bfc3ab4430971ce505877c", "currencyIdType": "spacewalk_primitives.CurrencyId", @@ -7422,7 +6943,7 @@ "symbol": "NGNC.s", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/NGN.svg", + "icon": "NGNC.svg", "typeExtras": { "currencyIdScale": "0x02014e474e43241afadf31883f79972545fc64f3b5b0c95704c6fb4917474e42b0057841606b", "currencyIdType": "spacewalk_primitives.CurrencyId", @@ -7436,7 +6957,7 @@ "precision": 18, "priceId": "moonbeam", "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GLMR.svg", + "icon": "GLMR.svg", "typeExtras": { "currencyIdScale": "0x0106", "currencyIdType": "spacewalk_primitives.CurrencyId", @@ -7449,7 +6970,7 @@ "symbol": "PINK", "precision": 10, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PINK.svg", + "icon": "PINK.svg", "typeExtras": { "currencyIdScale": "0x0107", "currencyIdType": "spacewalk_primitives.CurrencyId", @@ -7463,7 +6984,7 @@ "precision": 12, "type": "orml", "priceId": "hydradx", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HDX.svg", + "icon": "HDX.svg", "typeExtras": { "currencyIdScale": "0x0108", "currencyIdType": "spacewalk_primitives.CurrencyId", @@ -7477,7 +6998,7 @@ "precision": 18, "type": "orml", "priceId": "astar", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "icon": "ASTR.svg", "typeExtras": { "currencyIdScale": "0x0109", "currencyIdType": "spacewalk_primitives.CurrencyId", @@ -7491,7 +7012,7 @@ "precision": 10, "type": "orml", "priceId": "voucher-dot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vDOT.svg", + "icon": "vDOT.svg", "typeExtras": { "currencyIdScale": "0x010a", "currencyIdType": "spacewalk_primitives.CurrencyId", @@ -7505,7 +7026,7 @@ "precision": 12, "type": "orml", "priceId": "bifrost-native-coin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "icon": "BNC.svg", "typeExtras": { "currencyIdScale": "0x010b", "currencyIdType": "spacewalk_primitives.CurrencyId", @@ -7519,7 +7040,7 @@ "precision": 6, "type": "orml", "priceId": "axlusdc", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDCaxl.svg", + "icon": "USDCaxl.svg", "typeExtras": { "currencyIdScale": "0x010c", "currencyIdType": "spacewalk_primitives.CurrencyId", @@ -7533,7 +7054,7 @@ "precision": 12, "type": "orml", "priceId": "euro-coin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EURC.svg", + "icon": "EURC.svg", "typeExtras": { "currencyIdScale": "0x020145555243cf4f5a26e2090bb3adcf02c7a9d73dbfe6659cc690461475b86437fa49c71136", "currencyIdType": "spacewalk_primitives.CurrencyId", @@ -7559,12 +7080,19 @@ "history": [ { "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-pendulum" + "url": "https://subquery-history-pendulum-prod.novasama-tech.org" } ] }, "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Pendulum.svg", - "addressPrefix": 56 + "addressPrefix": 0, + "options": [ + "governance-v1" + ], + "additional": { + "supportsGenericLedgerApp": true + }, + "legacyAddressPrefix": 56 }, { "chainId": "4319cc49ee79495b57a1fec4d2bd43f59052dcc690276de566c2691d6df4f7b8", @@ -7576,7 +7104,7 @@ "symbol": "CRU", "precision": 12, "priceId": "crust-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CRU.svg" + "icon": "CRU.svg" } ], "nodes": [ @@ -7596,15 +7124,16 @@ "history": [ { "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-crust" + "url": "https://subquery-history-crust-prod.novasama-tech.org" } ] }, "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust_Parachain.svg", - "addressPrefix": 88, + "addressPrefix": 0, "additional": { "feeViaRuntimeCall": true - } + }, + "legacyAddressPrefix": 88 }, { "chainId": "8b5c955b5c8fd7112562327e3859473df4e3dff49bd72a113dbb668d2cfa20d7", @@ -7616,13 +7145,17 @@ "symbol": "AVT", "precision": 18, "priceId": "aventus", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AVT.svg" + "icon": "AVT.svg" } ], "nodes": [ { - "url": "wss://public-rpc.mainnet.aventus.network", - "name": "Aventus node" + "url": "wss://avn-parachain.mainnet.aventus.io", + "name": "Aventus node 1" + }, + { + "url": "wss://public-rpc.mainnet.aventus.io", + "name": "Aventus node 2" } ], "explorers": [ @@ -7636,7 +7169,7 @@ "history": [ { "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aventus" + "url": "https://subquery-history-aventus-prod.novasama-tech.org" } ] }, @@ -7646,13 +7179,13 @@ { "chainId": "dce5477cfca571c2cb652f38bbb70429004be3cf9649dd2b4ad9455b2251fe43", "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", - "name": "Hashed Network", + "name": "Hashed Network (PAUSED)", "assets": [ { "assetId": 0, "symbol": "HASH", "precision": 18, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HASH.svg" + "icon": "HASH.svg" } ], "nodes": [ @@ -7661,14 +7194,6 @@ "name": "Hashed systems 1 node" } ], - "externalApi": { - "history": [ - { - "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-hashed-network" - } - ] - }, "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hashed.svg", "addressPrefix": 42 }, @@ -7681,7 +7206,7 @@ "symbol": "SAMA", "priceId": "exosama-network", "type": "evmNative", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg", + "icon": "SAMA.svg", "precision": 18 } ], @@ -7725,10 +7250,18 @@ "symbol": "TAO", "precision": 9, "priceId": "bittensor", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAO_bittensor.svg" + "icon": "TAO_bittensor.svg" } ], "nodes": [ + { + "url": "wss://lite.sub.latent.to:443", + "name": "Latent Holdings (Lite) node" + }, + { + "url": "wss://bittensor-finney.api.onfinality.io/public-ws", + "name": "OnFinality (Archive) node" + }, { "url": "wss://entrypoint-finney.opentensor.ai:443", "name": "Opentensor Fdn node" @@ -7744,7 +7277,7 @@ "history": [ { "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bittensor" + "url": "https://subquery-history-bittensor-prod.novasama-tech.org" } ] }, @@ -7754,73 +7287,6 @@ "supportsGenericLedgerApp": true } }, - { - "chainId": "89d3ec46d2fb43ef5a9713833373d5ea666b092fa8fd68fbc34596036571b907", - "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", - "name": "Equilibrium (PAUSED)", - "assets": [ - { - "assetId": 0, - "symbol": "EQ", - "precision": 9, - "priceId": "equilibrium-token", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", - "type": "equilibrium", - "typeExtras": { - "assetId": "25969" - } - }, - { - "assetId": 1, - "symbol": "DOT", - "precision": 10, - "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", - "type": "equilibrium", - "typeExtras": { - "assetId": "6582132" - } - }, - { - "assetId": 2, - "symbol": "EQD", - "precision": 9, - "priceId": "tether", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", - "type": "equilibrium", - "typeExtras": { - "assetId": "6648164" - } - } - ], - "nodes": [ - { - "url": "wss://node.pol.equilibrium.io", - "name": "Equilibrium node" - }, - { - "url": "wss://equilibrium-rpc.dwellir.com", - "name": "Dwellir node" - } - ], - "explorers": [ - { - "name": "Subscan", - "extrinsic": "https://equilibrium.subscan.io/extrinsic/{hash}", - "account": "https://equilibrium.subscan.io/account/{address}" - } - ], - "externalApi": { - "history": [ - { - "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-equilibrium" - } - ] - }, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Equilibrium.svg", - "addressPrefix": 68 - }, { "chainId": "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee", "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", @@ -7830,7 +7296,8 @@ "assetId": 0, "symbol": "AJUN", "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AJUN.svg" + "priceId": "ajuna-network-2", + "icon": "AJUN.svg" } ], "nodes": [ @@ -7845,24 +7312,21 @@ { "url": "wss://ajuna.dotters.network", "name": "IBP2 node" - }, - { - "url": "wss://ajuna.public.curie.radiumblock.co/ws", - "name": "RadiumBlock node" } ], "explorers": [ { - "name": "Subscan", - "extrinsic": "https://ajuna.subscan.io/extrinsic/{hash}", - "account": "https://ajuna.subscan.io/account/{address}" + "name": "Statescan", + "account": "https://ajuna.statescan.io/#/accounts/{address}", + "extrinsic": "https://ajuna.statescan.io/#/extrinsics/{hash}", + "event": "https://ajuna.statescan.io/#/events/{event}" } ], "externalApi": { "history": [ { "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---ajuna" + "url": "https://subquery-history-ajuna-prod.novasama-tech.org" } ] }, @@ -7878,13 +7342,17 @@ "symbol": "P3D", "precision": 12, "priceId": "3dpass", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/P3D.svg" + "icon": "P3D.svg" } ], "nodes": [ { - "url": "wss://rpc.3dpscan.io", + "url": "wss://rpc.3dpass.org", "name": "3DPass node" + }, + { + "url": "wss://rpc.p3d.top", + "name": "Lzmz node" } ], "explorers": [ @@ -7898,7 +7366,7 @@ "history": [ { "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-3dpass" + "url": "https://subquery-history-3dpass-prod.novasama-tech.org" } ] }, @@ -7915,16 +7383,17 @@ "symbol": "RING", "precision": 18, "priceId": "darwinia-network-native-token", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RING.svg" + "icon": "RING.svg" }, { "assetId": 1, "symbol": "KTON", "precision": 18, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KTON.svg", + "icon": "KTON.svg", "typeExtras": { - "assetId": "1026" + "assetId": "1026", + "isSufficient": true } } ], @@ -7941,14 +7410,6 @@ "account": "https://darwinia.subscan.io/account/{address}" } ], - "externalApi": { - "history": [ - { - "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---darwinia" - } - ] - }, "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Darwinia.svg", "addressPrefix": 18, "options": [ @@ -7965,16 +7426,17 @@ "symbol": "CRAB", "precision": 18, "priceId": "darwinia-network-native-token", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg" + "icon": "CRAB.svg" }, { "assetId": 1, "symbol": "CKTON", "precision": 18, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CKTON.svg", + "icon": "CKTON.svg", "typeExtras": { - "assetId": "1026" + "assetId": "1026", + "isSufficient": true } } ], @@ -7982,10 +7444,6 @@ { "url": "wss://crab-rpc.darwinia.network/", "name": "Darwinia node" - }, - { - "url": "wss://darwiniacrab-rpc.dwellir.com", - "name": "Dwellir node" } ], "explorers": [ @@ -7999,7 +7457,7 @@ "history": [ { "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-darwinia" + "url": "https://subquery-history-crab-prod.novasama-tech.org" } ] }, @@ -8018,7 +7476,7 @@ "assetId": 0, "symbol": "FRQCY", "precision": 8, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FRQCY.svg" + "icon": "FRQCY.svg" } ], "nodes": [ @@ -8035,7 +7493,7 @@ "history": [ { "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/frequency" + "url": "https://subquery-history-frequency-prod.novasama-tech.org" } ] }, @@ -8059,7 +7517,7 @@ "relaychain", "nomination-pools" ], - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/VARA.svg", + "icon": "VARA.svg", "buyProviders": { "banxa": { "coinType": "VARA", @@ -8098,13 +7556,20 @@ "type": "subquery", "url": "https://subquery-history-vara-prod.novasama-tech.org" } + ], + "staking-rewards": [ + { + "type": "subquery", + "url": "https://subquery-history-vara-prod.novasama-tech.org" + } ] }, "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Vara.svg", "addressPrefix": 137, "additional": { "themeColor": "#10B6B1", - "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/vara-vara-staking" + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/vara-vara-staking", + "supportsGenericLedgerApp": true }, "options": [ "pushSupport" @@ -8118,7 +7583,7 @@ "assetId": 0, "symbol": "GIANT", "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Giant.svg" + "icon": "GIANT.svg" } ], "nodes": [ @@ -8135,7 +7600,7 @@ "history": [ { "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---giant" + "url": "https://subquery-history-giant-prod.novasama-tech.org" } ] }, @@ -8155,7 +7620,7 @@ "symbol": "DOT", "precision": 10, "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + "icon": "DOT.svg" } ], "nodes": [ @@ -8177,18 +7642,27 @@ "name": "Subscan", "extrinsic": "https://bridgehub-polkadot.subscan.io/extrinsic/{hash}", "account": "https://bridgehub-polkadot.subscan.io/account/{address}" + }, + { + "name": "Statescan", + "account": "https://bridgehub-polkadot.statescan.io/#/accounts/{address}", + "extrinsic": "https://bridgehub-polkadot.statescan.io/#/extrinsics/{hash}", + "event": "https://bridgehub-polkadot.statescan.io/#/events/{event}" } ], "externalApi": { "history": [ { "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/polkadot-bridgehub" + "url": "https://subquery-history-polkadot-bh-prod.novasama-tech.org" } ] }, "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot_Bridge_Hub.svg", - "addressPrefix": 0 + "addressPrefix": 0, + "additional": { + "identityChain": "67fa177a097bfa18f77ea95ab56e9bcdfeb0e5b8a40e46298bb93e16b6fc5008" + } }, { "chainId": "00dcb981df86429de8bbacf9803401f09485366c44efbf53af9ecfab03adc7e5", @@ -8200,7 +7674,7 @@ "symbol": "KSM", "precision": 12, "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + "icon": "KSM.svg" } ], "nodes": [ @@ -8222,18 +7696,27 @@ "name": "Subscan", "extrinsic": "https://bridgehub-kusama.subscan.io/extrinsic/{hash}", "account": "https://bridgehub-kusama.subscan.io/account/{address}" + }, + { + "name": "Statescan", + "account": "https://bridgehub-kusama.statescan.io/#/accounts/{address}", + "extrinsic": "https://bridgehub-kusama.statescan.io/#/extrinsics/{hash}", + "event": "https://bridgehub-kusama.statescan.io/#/events/{event}" } ], "externalApi": { "history": [ { "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---kusama-bridgehub" + "url": "https://subquery-history-kusama-bh-prod.novasama-tech.org" } ] }, "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama_Bridge_Hub.svg", - "addressPrefix": 2 + "addressPrefix": 2, + "additional": { + "identityChain": "c1af4cb4eb3918e5db15086c0cc5ec17fb334f728b7c65dd44bfe1e174ff8b3f" + } }, { "chainId": "46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2", @@ -8245,7 +7728,7 @@ "symbol": "DOT", "precision": 10, "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + "icon": "DOT.svg" } ], "nodes": [ @@ -8264,10 +7747,6 @@ { "url": "wss://dot-rpc.stakeworld.io/collectives", "name": "Stakeworld node" - }, - { - "url": "wss://collectives.api.onfinality.io/public-ws", - "name": "Onfinality node" } ], "explorers": [ @@ -8287,7 +7766,7 @@ "history": [ { "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/polkadot-collectives" + "url": "https://subquery-history-polkadot-col-prod.novasama-tech.org" } ] }, @@ -8304,13 +7783,13 @@ "symbol": "KREST", "precision": 18, "priceId": "krest", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KREST.svg" + "icon": "KREST.svg" } ], "nodes": [ { - "url": "wss://krest.api.onfinality.io/public-ws", - "name": "Onfinality node" + "url": "wss://krest.api.onfinality.io/public-ws'", + "name": "OnFinality node" } ], "explorers": [ @@ -8320,14 +7799,6 @@ "account": "https://krest.subscan.io/account/{address}" } ], - "externalApi": { - "history": [ - { - "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---krest" - } - ] - }, "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/krest.svg", "addressPrefix": 42 }, @@ -8340,17 +7811,13 @@ "symbol": "ENJ", "precision": 18, "priceId": "enjincoin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ENJ.svg" + "icon": "ENJ.svg" } ], "nodes": [ { "url": "wss://rpc.matrix.blockchain.enjin.io", "name": "Enjin node" - }, - { - "url": "wss://enjin-matrix-rpc-1.dwellir.com", - "name": "Dwellir node" } ], "explorers": [ @@ -8364,7 +7831,7 @@ "history": [ { "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/enjin-matrixchain" + "url": "https://subquery-history-enjin-matrixc-prod.novasama-tech.org" } ] }, @@ -8383,7 +7850,7 @@ "symbol": "JOY", "priceId": "joystream", "precision": 10, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/JOY.svg" + "icon": "JOY.svg" } ], "nodes": [ @@ -8403,7 +7870,7 @@ "history": [ { "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---joystream" + "url": "https://subquery-history-joystream-prod.novasama-tech.org" } ] }, @@ -8412,14 +7879,14 @@ }, { "chainId": "6bfe24dca2a3be10f22212678ac13a6446ec764103c0f3471c71609eac384aae", - "name": "Dock", + "name": "Dock (PAUSED)", "assets": [ { "assetId": 0, "symbol": "DOCK", "priceId": "dock", "precision": 6, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOCK.svg" + "icon": "DOCK.svg" } ], "nodes": [ @@ -8447,7 +7914,7 @@ "symbol": "EWT", "priceId": "energy-web-token", "type": "evmNative", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/EWT.svg", + "icon": "EWT.svg", "precision": 18 } ], @@ -8505,7 +7972,7 @@ "symbol": "EWT", "priceId": "energy-web-token", "precision": 18, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/EWT.svg" + "icon": "EWT.svg" } ], "nodes": [ @@ -8525,7 +7992,7 @@ "history": [ { "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---energy-web-x" + "url": "https://subquery-history-energywebx-prod.novasama-tech.org" } ] }, @@ -8535,19 +8002,23 @@ { "chainId": "31a7d8914fb31c249b972f18c115f1e22b4b039abbcb03c73b6774c5642f9efe", "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", - "name": "InvArch", + "name": "InvArch (PAUSED)", "assets": [ { "assetId": 0, "symbol": "VARCH", "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/VARCH.svg" + "icon": "VARCH.svg" } ], "nodes": [ { - "url": "wss://invarch-rpc.dwellir.com", - "name": "Dwellir node" + "url": "wss://invarch.ibp.network", + "name": "IBP1 node" + }, + { + "url": "wss://invarch.dotters.network", + "name": "IBP2 node" } ], "explorers": [ @@ -8558,111 +8029,10 @@ "extrinsic": "https://invarch.statescan.io/#/extrinsics/{hash}" } ], - "externalApi": { - "history": [ - { - "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---invarch" - } - ] - }, "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/InvArch.svg", - "addressPrefix": 117 - }, - { - "chainId": "7eb9354488318e7549c722669dcbdcdc526f1fef1420e7944667212f3601fdbd", - "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", - "name": "Polimec", - "assets": [ - { - "assetId": 0, - "symbol": "PLMC", - "priceId": "polimec", - "precision": 10, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PLMC.svg", - "staking": [ - "parachain" - ] - }, - { - "assetId": 1, - "symbol": "DOT", - "precision": 10, - "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", - "type": "statemine", - "typeExtras": { - "assetId": "10", - "palletName": "ForeignAssets" - } - }, - { - "assetId": 2, - "symbol": "USDT", - "precision": 6, - "priceId": "tether", - "icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/wUSDT.png", - "type": "statemine", - "typeExtras": { - "assetId": "1984", - "palletName": "ForeignAssets" - } - }, - { - "assetId": 3, - "symbol": "USDC", - "precision": 6, - "priceId": "usd-coin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDC.svg", - "type": "statemine", - "typeExtras": { - "assetId": "1337", - "palletName": "ForeignAssets" - } - } - ], - "nodes": [ - { - "url": "wss://rpc.polimec.org", - "name": "Polimec node" - }, - { - "url": "wss://polimec.ibp.network", - "name": "IBP1 node" - }, - { - "url": "wss://polimec.dotters.network", - "name": "IBP2 node" - } - ], - "explorers": [ - { - "name": "Polimec explorer", - "account": "https://explorer.polimec.org/polimec/account/{address}", - "event": "https://explorer.polimec.org/polimec/event/{event}", - "extrinsic": "https://explorer.polimec.org/polimec/extrinsic/{hash}" - } - ], - "externalApi": { - "history": [ - { - "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---polymec" - } - ], - "staking": [ - { - "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---polymec" - } - ] - }, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polimec.svg", - "addressPrefix": 41, + "addressPrefix": 117, "additional": { - "themeColor": "#96CC5A", - "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/polimec-plmc-staking", - "defaultBlockTime": 12000 + "supportsGenericLedgerApp": true } }, { @@ -8675,7 +8045,7 @@ "symbol": "MANTA", "precision": 18, "priceId": "manta-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MANTA.svg", + "icon": "MANTA.svg", "staking": [ "parachain" ] @@ -8686,9 +8056,10 @@ "precision": 10, "priceId": "polkadot", "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "icon": "DOT.svg", "typeExtras": { - "assetId": "8" + "assetId": "8", + "isSufficient": true } } ], @@ -8702,13 +8073,19 @@ "history": [ { "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---manta" + "url": "https://subquery-history-manta-prod.novasama-tech.org" } ], "staking": [ { "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---manta" + "url": "https://subquery-history-manta-prod.novasama-tech.org" + } + ], + "staking-rewards": [ + { + "type": "subquery", + "url": "https://subquery-history-manta-prod.novasama-tech.org" } ] }, @@ -8737,7 +8114,7 @@ "symbol": "ETH", "priceId": "ethereum", "type": "evmNative", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "icon": "ETH.svg", "precision": 18 } ], @@ -8786,43 +8163,6 @@ "noSubstrateRuntime" ] }, - { - "chainId": "ae1ca86c936aa252cdc45f4f436220567b2bbbcc4834f5b8f4191462baf19dfb", - "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", - "name": "Continuum", - "assets": [ - { - "assetId": 0, - "symbol": "NUUM", - "priceId": "mnet-continuum", - "precision": 18, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/NUUM.svg" - } - ], - "nodes": [ - { - "url": "wss://continuum-rpc-1.metaverse.network/wss", - "name": "MNet node" - } - ], - "explorers": [ - { - "name": "Subscan", - "extrinsic": "https://continuum.subscan.io/extrinsic/{hash}", - "account": "https://continuum.subscan.io/account/{address}" - } - ], - "externalApi": { - "history": [ - { - "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-continuum" - } - ] - }, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Continuum.svg", - "addressPrefix": 268 - }, { "chainId": "d8761d3c88f26dc12875c00d3165f7d67243d56fc85b4cf19937601a7916e5a9", "name": "Enjin Relay", @@ -8832,17 +8172,13 @@ "symbol": "ENJ", "precision": 18, "priceId": "enjincoin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ENJ.svg" + "icon": "ENJ.svg" } ], "nodes": [ { "url": "wss://rpc.relay.blockchain.enjin.io", "name": "Enjin node" - }, - { - "url": "wss://enjin-relay-rpc.dwellir.com", - "name": "Dwellir node" } ], "explorers": [ @@ -8858,7 +8194,7 @@ "history": [ { "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-enjin-relay" + "url": "https://subquery-history-enjin-relaychain-prod.novasama-tech.org" } ] }, @@ -8876,7 +8212,7 @@ "symbol": "CGT", "precision": 18, "priceId": "curio-governance", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CGT.svg" + "icon": "CGT.svg" } ], "nodes": [ @@ -8893,7 +8229,7 @@ "history": [ { "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-curio" + "url": "https://subquery-history-curio-prod.novasama-tech.org" } ] }, @@ -8910,7 +8246,10 @@ "symbol": "MYTH", "precision": 18, "priceId": "mythos", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MYTH.svg" + "icon": "MYTH.svg", + "staking": [ + "mythos" + ] } ], "nodes": [ @@ -8933,15 +8272,38 @@ "history": [ { "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-mythos" + "url": "https://subquery-history-mythos-prod.novasama-tech.org" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://subquery-history-mythos-prod.novasama-tech.org" + } + ], + "staking-rewards": [ + { + "type": "subquery", + "url": "https://subquery-history-mythos-prod.novasama-tech.org" } ] }, "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Mythos.svg", "addressPrefix": 29972, "options": [ - "ethereumBased" - ] + "ethereumBased", + "governance-v1", + "proxy", + "multisig" + ], + "additional": { + "themeColor": "#ED3A47", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/mythos-myth-staking", + "feeViaRuntimeCall": true, + "sessionLength": 14400, + "defaultBlockTime": 6000, + "supportsGenericLedgerApp": true + } }, { "chainId": "ce7681fb12aa8f7265d229a9074be0ea1d5e99b53eedcec2deade43857901808", @@ -8952,12 +8314,12 @@ "assetId": 0, "symbol": "cACU", "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cACU.svg" + "icon": "cACU.svg" } ], "nodes": [ { - "url": "wss://acurast-canarynet-ws.prod.gke.papers.tech", + "url": "wss://public-rpc.canary.acurast.com", "name": "Acurast node" } ], @@ -8970,7 +8332,7 @@ "history": [ { "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-acurast" + "url": "https://subquery-history-acurast-prod.novasama-tech.org" } ] } @@ -8985,14 +8347,10 @@ "symbol": "KSM", "precision": 12, "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + "icon": "KSM.svg" } ], "nodes": [ - { - "url": "wss://kreivo.io/", - "name": "Virto node" - }, { "url": "wss://kreivo.kippu.rocks/", "name": "Kippu node" @@ -9002,7 +8360,7 @@ "history": [ { "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kreivo" + "url": "https://subquery-history-kreivo-prod.novasama-tech.org" } ] }, @@ -9020,9 +8378,10 @@ "assets": [ { "assetId": 0, - "symbol": "NAND", + "symbol": "BRIDGE", "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/NAND.svg" + "priceId": "hyperbridge-2", + "icon": "BRIDGE.svg" } ], "nodes": [ @@ -9039,16 +8398,20 @@ "name": "BlockOps node" } ], - "externalApi": { - "history": [ - { - "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-hyperbridge" - } - ] - }, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hyperbridge.svg", - "addressPrefix": 42 + "explorers": [ + { + "name": "Statescan", + "account": "https://nexus.statescan.io/#/accounts/{address}", + "event": "https://nexus.statescan.io/#/events/{event}", + "extrinsic": "https://nexus.statescan.io/#/extrinsics/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hyperbridge_Nexus.svg", + "addressPrefix": 0, + "legacyAddressPrefix": 42, + "additional": { + "supportsGenericLedgerApp": true + } }, { "chainId": "81443836a9a24caaa23f1241897d1235717535711d1d3fe24eae4fdc942c092c", @@ -9059,7 +8422,7 @@ "symbol": "CERE", "precision": 10, "priceId": "cere-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CERE.svg" + "icon": "CERE.svg" } ], "nodes": [ @@ -9068,8 +8431,19 @@ "name": "Cere node" } ], + "explorers": [ + { + "name": "Statescan", + "account": "https://cere.statescan.io/#/accounts/{address}", + "event": "https://cere.statescan.io/#/events/{event}", + "extrinsic": "https://cere.statescan.io/#/extrinsics/{hash}" + } + ], "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Cere.svg", - "addressPrefix": 54 + "addressPrefix": 54, + "additional": { + "disabledCheckMetadataHash": true + } }, { "chainId": "b91746b45e0346cc2f815a520b9c6cb4d5c0902af848db0a80f85932d2e8276a", @@ -9080,7 +8454,7 @@ "symbol": "AVAIL", "precision": 18, "priceId": "avail", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AVL.svg", + "icon": "AVAIL.svg", "staking": [ "relaychain", "nomination-pools" @@ -9089,28 +8463,12 @@ ], "nodes": [ { - "url": "wss://avail-mainnet.public.blastapi.io/", - "name": "Bware node" + "url": "wss://avail.api.onfinality.io/public-ws", + "name": "Avail primary node" }, { - "url": "wss://avail-rpc.rubynodes.io/", - "name": "RubyNode node" - }, - { - "url": "wss://avail-us.brightlystake.com", - "name": "BrightlyStake node" - }, - { - "url": "wss://rpc-avail.globalstake.io", - "name": "GlobalStake node" - }, - { - "url": "wss://avail.rpc.bountyblok.io", - "name": "Bountyblok node" - }, - { - "url": "wss://avail.public.curie.radiumblock.co/ws", - "name": "RadiumBlock node" + "url": "wss://mainnet.avail-rpc.com/", + "name": "Avail secondary node" } ], "explorers": [ @@ -9128,25 +8486,31 @@ "staking": [ { "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-avail" + "url": "https://subquery-history-avail-prod.novasama-tech.org" + } + ], + "staking-rewards": [ + { + "type": "subquery", + "url": "https://subquery-history-avail-prod.novasama-tech.org" } ], "history": [ { "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-avail" + "url": "https://subquery-history-avail-prod.novasama-tech.org" } ] }, "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Avail.svg", "addressPrefix": 42, "options": [ - "pushSupport" + "pushSupport", + "multisig" ], "additional": { "themeColor": "#58C8F6", - "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/avail-avail-staking", - "supportsGenericLedgerApp": false + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/avail-avail-staking" } }, { @@ -9157,7 +8521,7 @@ "assetId": 0, "symbol": "DENTX", "precision": 18, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DENTX.svg" + "icon": "DENTX.svg" } ], "nodes": [ @@ -9175,6 +8539,63 @@ "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DENTNet.svg", "addressPrefix": 9807 }, + { + "chainId": "eip155:8453", + "name": "Base", + "assets": [ + { + "assetId": 0, + "symbol": "ETH", + "priceId": "ethereum", + "type": "evmNative", + "icon": "ETH.svg", + "precision": 18 + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "https://base-rpc.publicnode.com", + "name": "Base http node" + }, + { + "url": "https://base-pokt.nodies.app", + "name": "Pokt node" + }, + { + "url": "wss://base-rpc.publicnode.com", + "name": "Base public node" + }, + { + "url": "wss://base-mainnet.infura.io/ws/v3/82fd5b2925e341719f10b7ed4376a646", + "name": "Ifura node" + } + ], + "explorers": [ + { + "name": "Basescan", + "extrinsic": "https://basescan.org/tx/{hash}", + "account": "https://basescan.org/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api.basescan.org/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Base.svg", + "addressPrefix": 8453, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, { "chainId": "eip155:324", "name": "ZKsync Era", @@ -9184,7 +8605,7 @@ "symbol": "ETH", "priceId": "ethereum", "type": "evmNative", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "icon": "ETH.svg", "precision": 18 } ], @@ -9246,7 +8667,7 @@ "symbol": "CTC", "precision": 18, "priceId": "creditcoin-2", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CTC.svg" + "icon": "CTC.svg" } ], "nodes": [ @@ -9274,7 +8695,7 @@ "symbol": "CTC", "precision": 18, "priceId": "creditcoin-2", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CTC.svg" + "icon": "CTC.svg" } ], "nodes": [ @@ -9302,7 +8723,7 @@ "symbol": "HMND", "precision": 18, "priceId": "humanode", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HMND.svg" + "icon": "HMND.svg" } ], "nodes": [ @@ -9322,7 +8743,7 @@ "addressPrefix": 5234 }, { - "chainId": "d523fa2e0581f069b4f0c7b5944c21e9abc72305a08067868c91b898d1bf1dff", + "chainId": "03aa6b475a03f8baf7f83e448513b00eaab03aefa4ed64bd1d31160dce028add", "name": "DeepBrain", "assets": [ { @@ -9330,7 +8751,7 @@ "symbol": "DBC", "precision": 15, "priceId": "deepbrain-chain", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DBC.svg" + "icon": "DBC.svg" } ], "nodes": [ @@ -9359,21 +8780,13 @@ "symbol": "PEAQ", "precision": 18, "priceId": "peaq-2", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/PEAQ.svg" + "icon": "PEAQ.svg" } ], "nodes": [ - { - "url": "wss://peaq.api.onfinality.io/public", - "name": "Onfinality node" - }, { "url": "wss://peaq-rpc.publicnode.com", "name": "Peaq node" - }, - { - "url": "wss://peaq-rpc.dwellir.com", - "name": "Dwellir node" } ], "explorers": [ @@ -9385,5 +8798,478 @@ ], "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/peaq.svg", "addressPrefix": 42 + }, + { + "chainId": "e8aecc950e82f1a375cf650fa72d07e0ad9bef7118f49b92283b63e88b1de88b", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Laos", + "assets": [ + { + "assetId": 0, + "symbol": "LAOS", + "precision": 18, + "priceId": "laos-network", + "icon": "LAOS.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.laos.laosfoundation.io", + "name": "freeverse.io node" + } + ], + "explorers": [ + { + "name": "Statescan", + "account": "https://laos.statescan.io/#/accounts/{address}", + "event": "https://laos.statescan.io/#/events/{event}" + }, + { + "name": "LAOS explorer", + "account": "https://explorer.laosnetwork.io/address/{address}", + "extrinsic": "https://explorer.laosnetwork.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/LAOS.svg", + "addressPrefix": 42, + "options": [ + "ethereumBased" + ] + }, + { + "chainId": "28cc1df52619f4edd9f0389a7e910a636276075ecc429600f1dd434e281a04e9", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Xode (PAUSED)", + "assets": [ + { + "assetId": 0, + "symbol": "XON", + "precision": 12, + "icon": "XON.svg" + }, + { + "assetId": 1, + "symbol": "XGM", + "precision": 12, + "icon": "XGM.svg", + "type": "statemine", + "typeExtras": { + "assetId": "1" + } + }, + { + "assetId": 2, + "symbol": "XAV", + "precision": 12, + "icon": "XAV.svg", + "type": "statemine", + "typeExtras": { + "assetId": "2" + } + }, + { + "assetId": 3, + "symbol": "AZK", + "precision": 12, + "icon": "AZK.png", + "type": "statemine", + "typeExtras": { + "assetId": "3" + } + }, + { + "assetId": 4, + "symbol": "IXON", + "precision": 12, + "icon": "IXON.svg", + "type": "statemine", + "typeExtras": { + "assetId": "4" + } + }, + { + "assetId": 5, + "symbol": "IXAV", + "precision": 12, + "icon": "IXAV.svg", + "type": "statemine", + "typeExtras": { + "assetId": "5" + } + }, + { + "assetId": 6, + "symbol": "IDON", + "precision": 12, + "icon": "IDON.png", + "type": "statemine", + "typeExtras": { + "assetId": "6" + } + }, + { + "assetId": 7, + "symbol": "MPC", + "precision": 12, + "icon": "MPC.png", + "type": "statemine", + "typeExtras": { + "assetId": "7" + } + }, + { + "assetId": 8, + "symbol": "IMPC", + "precision": 12, + "icon": "IMPC.png", + "type": "statemine", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 9, + "symbol": "DON", + "precision": 12, + "icon": "DON.png", + "type": "statemine", + "typeExtras": { + "assetId": "9" + } + } + ], + "nodes": [ + { + "url": "wss://rpc-kr.xode.net", + "name": "Xode archive node" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Xode.svg", + "addressPrefix": 42 + }, + { + "chainId": "bb9233e202ec014707f82ddb90e84ee9efece8fefee287ad4ad646d869a6c24a", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "JAMTON", + "assets": [ + { + "assetId": 0, + "symbol": "DOTON", + "precision": 18, + "icon": "DOTON.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.jamton.network", + "name": "Jamton node" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Jamton.svg", + "addressPrefix": 5589, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/jamton.json", + "overridesCommon": true + } + }, + { + "chainId": "eip155:41455", + "name": "Aleph Zero EVM (PAUSED)", + "assets": [ + { + "assetId": 0, + "symbol": "AZERO", + "priceId": "aleph-zero", + "type": "evmNative", + "icon": "AZERO.svg", + "precision": 18 + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "https://rpc.alephzero.raas.gelato.cloud", + "name": "Aleph Zero EVM rpc node" + }, + { + "url": "wss://ws.alephzero.raas.gelato.cloud", + "name": "Aleph Zero EVM wss node" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://evm-explorer.alephzero.org/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "explorers": [ + { + "name": "Aleph Zero EVM Explorer", + "extrinsic": "https://evm-explorer.alephzero.org/tx/{hash}", + "account": "https://evm-explorer.alephzero.org/address/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg", + "addressPrefix": 41455, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "44f68476df71ebf765b630bf08dc1e0fedb2bf614a1aa0563b3f74f20e47b3e0", + "name": "Tangle", + "assets": [ + { + "assetId": 0, + "symbol": "TNT", + "precision": 18, + "priceId": "tangle-network", + "icon": "TNT.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.tangle.tools", + "name": "Parity node" + } + ], + "explorers": [ + { + "name": "Statescan", + "account": "https://tangle.statescan.io/#/accounts/{address}", + "event": "https://tangle.statescan.io/#/events/{event}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Tangle.svg", + "addressPrefix": 5845, + "additional": { + "disabledCheckMetadataHash": true + } + }, + { + "chainId": "efb56e30d9b4a24099f88820987d0f45fb645992416535d87650d98e00f46fc4", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot Coretime", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "DOT.svg" + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/coretime-polkadot", + "name": "IBP1 node" + }, + { + "url": "wss://coretime-polkadot.dotters.network", + "name": "IBP2 node" + }, + { + "url": "wss://rpc-coretime-polkadot.luckyfriday.io", + "name": "LuckyFriday node" + }, + { + "url": "wss://polkadot-coretime-rpc.polkadot.io", + "name": "Parity node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://coretime-polkadot.subscan.io/extrinsic/{hash}", + "account": "https://coretime-polkadot.subscan.io/account/{address}" + }, + { + "name": "Statescan", + "account": "https://coretime-polkadot.statescan.io/#/accounts/{address}", + "extrinsic": "https://coretime-polkadot.statescan.io/#/extrinsics/{hash}", + "event": "https://coretime-polkadot.statescan.io/#/events/{event}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot_Coretime.svg", + "addressPrefix": 0, + "additional": { + "supportsGenericLedgerApp": true, + "identityChain": "67fa177a097bfa18f77ea95ab56e9bcdfeb0e5b8a40e46298bb93e16b6fc5008" + }, + "options": [ + "multisig" + ] + }, + { + "chainId": "638cd2b9af4b3bb54b8c1f0d22711fc89924ca93300f0caf25a580432b29d050", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama Coretime", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "KSM.svg" + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/coretime-kusama", + "name": "IBP1 node" + }, + { + "url": "wss://coretime-kusama.dotters.network", + "name": "IBP2 node" + }, + { + "url": "wss://rpc-coretime-kusama.luckyfriday.io", + "name": "LuckyFriday node" + }, + { + "url": "wss://kusama-coretime-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://ksm-rpc.stakeworld.io/coretime", + "name": "Stakeworld node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://coretime-kusama.subscan.io/extrinsic/{hash}", + "account": "https://coretime-kusama.subscan.io/account/{address}" + }, + { + "name": "Statescan", + "account": "https://coretime-kusama.statescan.io/#/accounts/{address}", + "extrinsic": "https://coretime-kusama.statescan.io/#/extrinsics/{hash}", + "event": "https://coretime-kusama.statescan.io/#/events/{event}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama_Coretime.svg", + "addressPrefix": 2, + "additional": { + "supportsGenericLedgerApp": true, + "identityChain": "c1af4cb4eb3918e5db15086c0cc5ec17fb334f728b7c65dd44bfe1e174ff8b3f" + }, + "options": [ + "multisig" + ] + }, + { + "chainId": "dffb39a66d80b9adb6bdbd7564a9215a1606596062578bf536480de6cc780c2d", + "name": "Argochain (PAUSED)", + "assets": [ + { + "assetId": 0, + "symbol": "AGC", + "precision": 18, + "priceId": "argocoin-2", + "icon": "AGC.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.devolvedai.com", + "name": "ArgoChain node" + } + ], + "explorers": [ + { + "name": "Argochain Scanner", + "account": "https://scanner.argoscan.net/address/{address}", + "extrinsic": "https://scanner.argoscan.net/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Argochain.svg", + "addressPrefix": 42 + }, + { + "chainId": "dd6d086f75ec041b66e20c4186d327b23c8af244c534a2418de6574e8c041a60", + "name": "Tanssi", + "assets": [ + { + "assetId": 0, + "symbol": "TANSSI", + "precision": 12, + "priceId": "tanssi", + "icon": "TANSSI.svg" + } + ], + "nodes": [ + { + "url": "wss://services.tanssi-mainnet.network/tanssi", + "name": "Tanssi Foundation node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://tanssi.subscan.io/extrinsic/{hash}", + "account": "https://tanssi.subscan.io/account/account/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Tanssi.svg", + "addressPrefix": 42, + "additional": { + "supportsGenericLedgerApp": true + } + }, + { + "chainId": "eip155:420420422", + "name": "Polkadot Hub TestNet", + "assets": [ + { + "assetId": 0, + "symbol": "PAS", + "type": "evmNative", + "icon": "PAS.svg", + "precision": 18 + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "https://testnet-passet-hub-eth-rpc.polkadot.io", + "name": "Polkadot Hub rpc node" + }, + { + "url": "wss://passet-hub-paseo.ibp.network", + "name": "Polkadot Hub wss node" + } + ], + "explorers": [ + { + "name": "Blockscan", + "extrinsic": "https://blockscout-passet-hub.parity-testnet.parity.io/tx/{hash}", + "account": "https://blockscout-passet-hub.parity-testnet.parity.io/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://blockscout-passet-hub.parity-testnet.parity.io/api/v2/", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Paseo_Testnet.svg", + "addressPrefix": 420420422, + "options": [ + "ethereumBased", + "noSubstrateRuntime", + "testnet" + ] } -] \ No newline at end of file +] diff --git a/runtime/build.gradle b/runtime/build.gradle index a34193c..207a852 100644 --- a/runtime/build.gradle +++ b/runtime/build.gradle @@ -8,9 +8,9 @@ android { buildConfigField "String", "CHAINS_URL", "\"https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/chains/v22/android/chains.json\"" - buildConfigField "String", "EVM_ASSETS_URL", "\"https://wallet.pezkuwichain.io/evm_assets.json\"" - buildConfigField "String", "PRE_CONFIGURED_CHAINS_URL", "\"https://wallet.pezkuwichain.io/pre_configured_chains.json\"" - buildConfigField "String", "PRE_CONFIGURED_CHAIN_DETAILS_URL", "\"https://wallet.pezkuwichain.io/chain_details\"" + buildConfigField "String", "EVM_ASSETS_URL", "\"https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/assets/evm/v3/assets.json\"" + buildConfigField "String", "PRE_CONFIGURED_CHAINS_URL", "\"https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/chains/v22/preConfigured/chains.json\"" + buildConfigField "String", "PRE_CONFIGURED_CHAIN_DETAILS_URL", "\"https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/chains/v22/preConfigured/details\"" buildConfigField "String", "TEST_CHAINS_URL", "\"https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/tests/chains_for_testBalance.json\"" @@ -28,9 +28,9 @@ android { proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' buildConfigField "String", "CHAINS_URL", "\"https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/chains/v22/android/chains.json\"" - buildConfigField "String", "EVM_ASSETS_URL", "\"https://wallet.pezkuwichain.io/evm_assets.json\"" - buildConfigField "String", "PRE_CONFIGURED_CHAINS_URL", "\"https://wallet.pezkuwichain.io/pre_configured_chains.json\"" - buildConfigField "String", "PRE_CONFIGURED_CHAIN_DETAILS_URL", "\"https://wallet.pezkuwichain.io/chain_details\"" + buildConfigField "String", "EVM_ASSETS_URL", "\"https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/assets/evm/v3/assets.json\"" + buildConfigField "String", "PRE_CONFIGURED_CHAINS_URL", "\"https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/chains/v22/preConfigured/chains.json\"" + buildConfigField "String", "PRE_CONFIGURED_CHAIN_DETAILS_URL", "\"https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/master/chains/v22/preConfigured/details\"" } } namespace 'io.novafoundation.nova.runtime' diff --git a/version.properties b/version.properties index 4b465c9..012a755 100644 --- a/version.properties +++ b/version.properties @@ -1 +1 @@ -VERSION_CODE=103 \ No newline at end of file +VERSION_CODE=159 \ No newline at end of file