diff --git a/src/renderer/entities/asset/ui/AssetBalance/AssetBalance.stories.tsx b/src/renderer/entities/asset/ui/AssetBalance/AssetBalance.stories.tsx index 5ed2cd444c..2ab291b12f 100644 --- a/src/renderer/entities/asset/ui/AssetBalance/AssetBalance.stories.tsx +++ b/src/renderer/entities/asset/ui/AssetBalance/AssetBalance.stories.tsx @@ -1,6 +1,6 @@ import { type Meta, type StoryFn } from '@storybook/react'; -import { AssetType } from '@/shared/core'; +import { dotAsset } from '@/shared/mocks'; import { AssetBalance } from './AssetBalance'; @@ -10,21 +10,11 @@ export default { parameters: { actions: { argTypesRegex: '^on.*' } }, } as Meta; -const assetDot = { - assetId: 3, - symbol: 'DOT', - precision: 10, - priceId: 'polkadot', - type: AssetType.NATIVE, - icon: 'https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg', - name: 'Polkadot', -}; - const Template: StoryFn = (args) => ; export const Default = Template.bind({}); Default.args = { - asset: assetDot, + asset: dotAsset, value: '10000000', showIcon: true, }; diff --git a/src/renderer/entities/asset/ui/AssetBalance/AssetBalance.tsx b/src/renderer/entities/asset/ui/AssetBalance/AssetBalance.tsx index 4d0d14d8cc..2003c5149d 100644 --- a/src/renderer/entities/asset/ui/AssetBalance/AssetBalance.tsx +++ b/src/renderer/entities/asset/ui/AssetBalance/AssetBalance.tsx @@ -3,34 +3,25 @@ import { type BN } from '@polkadot/util'; import { type Asset, type AssetByChains } from '@/shared/core'; import { useI18n } from '@/shared/i18n'; import { cnTw, formatBalance } from '@/shared/lib/utils'; -import { AssetIcon } from '../AssetIcon/AssetIcon'; +import { AssetIcon } from '@/shared/ui-entities'; type Props = { value: BN | string; asset?: Asset | AssetByChains; // maybe change type to Asset | number to allow pass just asset id and then get asset by id className?: string; showIcon?: boolean; - imgClassName?: string; wrapperClassName?: string; showSymbol?: boolean; }; -export const AssetBalance = ({ - value, - asset, - className, - showIcon, - imgClassName, - wrapperClassName, - showSymbol = true, -}: Props) => { +export const AssetBalance = ({ value, asset, className, showIcon, wrapperClassName, showSymbol = true }: Props) => { const { t } = useI18n(); if (!asset) { return null; } - const { precision, symbol, icon, name } = asset; + const { precision, symbol } = asset; const { value: formattedValue, decimalPlaces, suffix } = formatBalance(value, precision); const balanceValue = t('assetBalance.number', { @@ -50,7 +41,7 @@ export const AssetBalance = ({ return (

- + {balance}

); diff --git a/src/renderer/entities/asset/ui/AssetIcon/AssetIcon.test.tsx b/src/renderer/entities/asset/ui/AssetIcon/AssetIcon.test.tsx deleted file mode 100644 index 8db9a7ee8b..0000000000 --- a/src/renderer/entities/asset/ui/AssetIcon/AssetIcon.test.tsx +++ /dev/null @@ -1,25 +0,0 @@ -import { act, render, screen } from '@testing-library/react'; - -import { TEST_CHAIN_ICON } from '@/shared/lib/utils'; - -import { AssetIcon } from './AssetIcon'; - -describe('ui/ChainIcon', () => { - test('should render component', async () => { - await act(async () => { - render(); - }); - - const chainImage = screen.getByRole('img'); - expect(chainImage).toBeInTheDocument(); - }); - - test('should not show img element if image not loaded', async () => { - await act(async () => { - render(); - }); - - const img = screen.getByRole('img'); - expect(img).toHaveClass('opacity-0'); - }); -}); diff --git a/src/renderer/entities/asset/ui/AssetIcon/AssetIcon.tsx b/src/renderer/entities/asset/ui/AssetIcon/AssetIcon.tsx deleted file mode 100644 index bcd8350c42..0000000000 --- a/src/renderer/entities/asset/ui/AssetIcon/AssetIcon.tsx +++ /dev/null @@ -1,34 +0,0 @@ -import { useToggle } from '@/shared/lib/hooks'; -import { cnTw } from '@/shared/lib/utils'; - -type Props = { - src?: string; - name?: string; - size?: number; - className?: string; -}; - -// TODO add currency support -export const AssetIcon = ({ src, name, size = 32, className }: Props) => { - const [isImgLoaded, toggleImgLoaded] = useToggle(); - - return ( -
- {name} -
- ); -}; diff --git a/src/renderer/entities/asset/ui/index.ts b/src/renderer/entities/asset/ui/index.ts index faac6f82cf..fee7203823 100644 --- a/src/renderer/entities/asset/ui/index.ts +++ b/src/renderer/entities/asset/ui/index.ts @@ -1,5 +1,5 @@ export { AssetBalance } from './AssetBalance/AssetBalance'; export { AssetDetails } from './AssetDetails/AssetDetails'; -export { AssetIcon } from './AssetIcon/AssetIcon'; +export { AssetIcon } from '@/shared/ui-entities'; export { AssetLinks } from './AssetLinks/AssetLinks'; export { EmptyAssetsState } from './EmptyAssetsState/EmptyAssetsState'; diff --git a/src/renderer/features/assets-balances/components/AmountInput.tsx b/src/renderer/features/assets-balances/components/AmountInput.tsx index 528bb3e9c5..34a20edd94 100644 --- a/src/renderer/features/assets-balances/components/AmountInput.tsx +++ b/src/renderer/features/assets-balances/components/AmountInput.tsx @@ -159,7 +159,7 @@ export const AmountInput = ({ const prefixElement = (
- + {asset.symbol}
); diff --git a/src/renderer/features/assets/AssetsChainView/ui/AssetCard/AssetCard.tsx b/src/renderer/features/assets/AssetsChainView/ui/AssetCard/AssetCard.tsx index c2c4d8acf3..58fe294f02 100644 --- a/src/renderer/features/assets/AssetsChainView/ui/AssetCard/AssetCard.tsx +++ b/src/renderer/features/assets/AssetsChainView/ui/AssetCard/AssetCard.tsx @@ -47,7 +47,7 @@ export const AssetCard = ({ chainId, asset, balance }: Props) => { >
- +
{asset.name} diff --git a/src/renderer/features/assets/AssetsPortfolioView/model/__tests__/portfolio-model.test.ts b/src/renderer/features/assets/AssetsPortfolioView/model/__tests__/portfolio-model.test.ts index bd5a7f9606..2e43ee526f 100644 --- a/src/renderer/features/assets/AssetsPortfolioView/model/__tests__/portfolio-model.test.ts +++ b/src/renderer/features/assets/AssetsPortfolioView/model/__tests__/portfolio-model.test.ts @@ -10,7 +10,11 @@ const mockTokens: AssetByChains[] = [ name: 'Polkadot', precision: 10, priceId: 'polkadot', - icon: 'https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Polkadot_(DOT).svg', + icon: { + monochrome: + 'https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/DOT.svg', + colored: 'https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/DOT.svg', + }, symbol: 'DOT', chains: [ { @@ -37,7 +41,11 @@ const mockTokens: AssetByChains[] = [ name: 'Kusama', precision: 12, priceId: 'kusama', - icon: 'https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kusama_(KSM).svg', + icon: { + monochrome: + 'https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/DOT.svg', + colored: 'https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/DOT.svg', + }, symbol: 'KSM', chains: [ { diff --git a/src/renderer/features/assets/AssetsPortfolioView/ui/TokenBalance.tsx b/src/renderer/features/assets/AssetsPortfolioView/ui/TokenBalance.tsx index 417ee432c6..ba12cb0e5b 100644 --- a/src/renderer/features/assets/AssetsPortfolioView/ui/TokenBalance.tsx +++ b/src/renderer/features/assets/AssetsPortfolioView/ui/TokenBalance.tsx @@ -24,7 +24,7 @@ export const TokenBalance = ({ asset }: Props) => {
- +
{chain.assetSymbol}
diff --git a/src/renderer/features/assets/AssetsPortfolioView/ui/TokenBalanceList.tsx b/src/renderer/features/assets/AssetsPortfolioView/ui/TokenBalanceList.tsx index 485fd576fa..7599bae2c4 100644 --- a/src/renderer/features/assets/AssetsPortfolioView/ui/TokenBalanceList.tsx +++ b/src/renderer/features/assets/AssetsPortfolioView/ui/TokenBalanceList.tsx @@ -47,7 +47,7 @@ export const TokenBalanceList = ({ asset }: Props) => { >
- +
{asset.symbol}
diff --git a/src/renderer/shared/config/chains/chains.json b/src/renderer/shared/config/chains/chains.json index c653a5a713..ddaa2c7c9b 100644 --- a/src/renderer/shared/config/chains/chains.json +++ b/src/renderer/shared/config/chains/chains.json @@ -58,7 +58,10 @@ "type": "native", "priceId": "polkadot", "staking": "relaychain", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Polkadot_(DOT).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/DOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/DOT.svg" + } } ], "explorers": [ @@ -80,13 +83,13 @@ "staking": [ { "type": "subquery", - "url": "https://gateway.subquery.network/query/0x1a" + "url": "https://subquery-history-polkadot-prod.novasama-tech.org" } ], "history": [ { "type": "subquery", - "url": "https://gateway.subquery.network/query/0x1a" + "url": "https://subquery-history-polkadot-prod.novasama-tech.org" } ], "governance-delegations": [ @@ -162,7 +165,10 @@ "type": "native", "priceId": "kusama", "staking": "relaychain", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kusama_(KSM).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KSM.svg" + } } ], "explorers": [ @@ -184,13 +190,13 @@ "staking": [ { "type": "subquery", - "url": "https://gateway.subquery.network/query/0x1b" + "url": "https://subquery-history-kusama-prod.novasama-tech.org" } ], "history": [ { "type": "subquery", - "url": "https://gateway.subquery.network/query/0x1b" + "url": "https://subquery-history-kusama-prod.novasama-tech.org" } ], "governance-delegations": [ @@ -241,7 +247,10 @@ "precision": 12, "type": "native", "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kusama_(KSM).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KSM.svg" + } }, { "name": "Remark", @@ -250,7 +259,10 @@ "precision": 10, "type": "statemine", "priceId": "rmrk", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/RMRK.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/RMRK.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/RMRK.svg" + }, "typeExtras": { "assetId": "8" } @@ -261,7 +273,10 @@ "symbol": "CHAOS", "precision": 10, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/CHAOS.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/CHAOS.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/CHAOS.svg" + }, "typeExtras": { "assetId": "69420" } @@ -272,7 +287,10 @@ "symbol": "CHRWNA", "precision": 10, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/CHRWNA.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/CHRWNA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/CHRWNA.svg" + }, "typeExtras": { "assetId": "567" } @@ -283,7 +301,10 @@ "symbol": "SHIBATALES", "precision": 0, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Default.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/Default.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/Default.svg" + }, "typeExtras": { "assetId": "88888" } @@ -294,7 +315,10 @@ "symbol": "BILLCOIN", "precision": 8, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/BILLCOIN.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/BILLCOIN.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/BILLCOIN.svg" + }, "typeExtras": { "assetId": "223" } @@ -306,7 +330,10 @@ "precision": 6, "type": "statemine", "priceId": "tether", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDT.svg" + }, "typeExtras": { "assetId": "1984" } @@ -386,7 +413,10 @@ "precision": 10, "type": "native", "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Polkadot_(DOT).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/DOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/DOT.svg" + } } ], "explorers": [ @@ -444,7 +474,10 @@ "precision": 12, "type": "native", "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kusama_(KSM).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KSM.svg" + } } ], "explorers": [ @@ -486,7 +519,10 @@ "precision": 12, "type": "native", "priceId": "karura", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Karura_(KAR).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KAR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KAR.svg" + } }, { "name": "Acala SEED", @@ -495,7 +531,10 @@ "precision": 12, "type": "orml", "priceId": "ausd-seed-karura", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/aSEED-Kusama.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/aSEEDk.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/aSEEDk.svg" + }, "typeExtras": { "currencyIdScale": "0x0081", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -510,7 +549,10 @@ "precision": 12, "type": "orml", "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kusama_(KSM).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KSM.svg" + }, "typeExtras": { "currencyIdScale": "0x0082", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -525,7 +567,10 @@ "precision": 10, "type": "orml", "priceId": "rmrk", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/RMRK.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/RMRK.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/RMRK.svg" + }, "typeExtras": { "currencyIdScale": "0x050000", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -540,7 +585,10 @@ "precision": 12, "type": "orml", "priceId": "bifrost-native-coin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Bifrost_(BNC).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/BNC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/BNC.svg" + }, "typeExtras": { "currencyIdScale": "0x00a8", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -555,7 +603,10 @@ "precision": 12, "type": "orml", "priceId": "liquid-ksm", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/lKSM.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/LKSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/LKSM.svg" + }, "typeExtras": { "currencyIdScale": "0x0083", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -570,7 +621,10 @@ "precision": 12, "type": "orml", "priceId": "pha", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Phala_(PHA).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PHA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PHA.svg" + }, "typeExtras": { "currencyIdScale": "0x00aa", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -585,7 +639,10 @@ "precision": 12, "type": "orml", "priceId": "kintsugi", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kintsugi_(KINT).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KINT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KINT.svg" + }, "typeExtras": { "currencyIdScale": "0x00ab", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -600,7 +657,10 @@ "precision": 8, "type": "orml", "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/kBTC.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/kBTC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/kBTC.svg" + }, "typeExtras": { "currencyIdScale": "0x00ac", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -614,7 +674,10 @@ "symbol": "TAI", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Taiga_(TAI).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/TAI.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/TAI.svg" + }, "typeExtras": { "currencyIdScale": "0x0084", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -628,7 +691,10 @@ "symbol": "vsKSM", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vsKSM.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vsKSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vsKSM.svg" + }, "typeExtras": { "currencyIdScale": "0x00a9", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -642,7 +708,10 @@ "symbol": "taiKSM", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/taiKSM.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/taiKSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/taiKSM.svg" + }, "typeExtras": { "currencyIdScale": "0x0300000000", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -657,7 +726,10 @@ "precision": 18, "type": "orml", "priceId": "quartz", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Quartz_(QTZ).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/QTZ.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/QTZ.svg" + }, "typeExtras": { "currencyIdScale": "0x050200", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -672,7 +744,10 @@ "precision": 18, "type": "orml", "priceId": "moonriver", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Moonriver_(MOVR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/MOVR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/MOVR.svg" + }, "typeExtras": { "currencyIdScale": "0x050300", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -686,7 +761,10 @@ "symbol": "HKO", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/HKO.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/HKO.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/HKO.svg" + }, "typeExtras": { "currencyIdScale": "0x050400", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -701,7 +779,10 @@ "precision": 12, "type": "orml", "priceId": "crust-storage-market", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Crust_Shadow_(CSM).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/CSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/CSM.svg" + }, "typeExtras": { "currencyIdScale": "0x050500", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -716,7 +797,10 @@ "precision": 6, "type": "orml", "priceId": "tether", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDT.svg" + }, "typeExtras": { "currencyIdScale": "0x050700", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -731,7 +815,10 @@ "precision": 12, "type": "orml", "priceId": "calamari-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Calamari_(KMA).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KMA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KMA.svg" + }, "typeExtras": { "currencyIdScale": "0x050a00", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -746,7 +833,10 @@ "precision": 12, "type": "orml", "priceId": "integritee", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Integritee_Parachain_(TEER).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/TEER.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/TEER.svg" + }, "typeExtras": { "currencyIdScale": "0x050800", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -760,7 +850,10 @@ "symbol": "KICO", "precision": 14, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/KICO_(KICO).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KICO.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KICO.svg" + }, "typeExtras": { "currencyIdScale": "0x050600", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -775,7 +868,10 @@ "precision": 18, "type": "orml", "priceId": "metaverse-network-pioneer", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Bit.Country_Pioneer_(NEER).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/NEER.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/NEER.svg" + }, "typeExtras": { "currencyIdScale": "0x050900", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -790,7 +886,10 @@ "precision": 12, "type": "orml", "priceId": "basilisk", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Basilisk_(BSX).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/BSX.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/BSX.svg" + }, "typeExtras": { "currencyIdScale": "0x050b00", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -805,7 +904,10 @@ "precision": 18, "type": "orml", "priceId": "altair", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Altair_(AIR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/AIR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/AIR.svg" + }, "typeExtras": { "currencyIdScale": "0x050c00", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -820,7 +922,10 @@ "precision": 9, "type": "orml", "priceId": "genshiro", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Genshiro_(GENS).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/GENS.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/GENS.svg" + }, "typeExtras": { "currencyIdScale": "0x050e00", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -835,7 +940,10 @@ "precision": 9, "type": "orml", "priceId": "tether", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/EQD.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/EQD.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/EQD.svg" + }, "typeExtras": { "currencyIdScale": "0x050f00", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -850,7 +958,10 @@ "precision": 18, "type": "orml", "priceId": "darwinia-crab-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Crab_(CRAB).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/CRAB.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/CRAB.svg" + }, "typeExtras": { "currencyIdScale": "0x050d00", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -923,7 +1034,10 @@ "precision": 18, "type": "native", "priceId": "moonbeam", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Moonbeam_(GLMR).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/GLMR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/GLMR.svg" + } }, { "name": "Polkadot", @@ -932,7 +1046,10 @@ "precision": 10, "type": "statemine", "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Polkadot_(DOT).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/DOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/DOT.svg" + }, "typeExtras": { "assetId": "42259045809535163221576417993425387648" } @@ -944,7 +1061,10 @@ "precision": 12, "type": "statemine", "priceId": "ausd-seed-acala", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/aSEED-Polkadot.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/aSEEDp.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/aSEEDp.svg" + }, "typeExtras": { "assetId": "110021739665376159354538090254163045594" } @@ -956,7 +1076,10 @@ "precision": 12, "type": "statemine", "priceId": "acala", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Acala_(ACA).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/ACA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/ACA.svg" + }, "typeExtras": { "assetId": "224821240862170613278369189818311486111" } @@ -967,7 +1090,10 @@ "symbol": "xcPARA", "precision": 12, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/PARA.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PARA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PARA.svg" + }, "typeExtras": { "assetId": "32615670524745285411807346420584982855" } @@ -979,7 +1105,10 @@ "precision": 10, "type": "statemine", "priceId": "interlay", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Interlay_(INTR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/INTR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/INTR.svg" + }, "typeExtras": { "assetId": "101170542313601871197860408087030232491" } @@ -991,7 +1120,10 @@ "precision": 8, "type": "statemine", "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/iBTC.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/iBTC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/iBTC.svg" + }, "typeExtras": { "assetId": "120637696315203257380661607956669368914" } @@ -1003,7 +1135,10 @@ "precision": 18, "type": "statemine", "priceId": "astar", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Astar_(ASTR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/ASTR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/ASTR.svg" + }, "typeExtras": { "assetId": "224077081838586484055667086558292981199" } @@ -1015,7 +1150,10 @@ "precision": 12, "type": "statemine", "priceId": "pha", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Phala_(PHA).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PHA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PHA.svg" + }, "typeExtras": { "assetId": "132685552157663328694213725410064821485" } @@ -1027,7 +1165,10 @@ "precision": 6, "type": "statemine", "priceId": "tether", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDT.svg" + }, "typeExtras": { "assetId": "311091173110107856861649819128533077277" } @@ -1039,7 +1180,10 @@ "precision": 18, "type": "statemine", "priceId": "centrifuge", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Centrifuge_(CFG).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/CFG.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/CFG.svg" + }, "typeExtras": { "assetId": "91372035960551235635465443179559840483" } @@ -1051,7 +1195,10 @@ "precision": 12, "type": "statemine", "priceId": "bifrost-native-coin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Bifrost_(BNC).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/BNC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/BNC.svg" + }, "typeExtras": { "assetId": "165823357460190568952172802245839421906" } @@ -1063,7 +1210,10 @@ "precision": 9, "type": "statemine", "priceId": "equilibrium-token", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Equilibrium_(EQ).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/EQ.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/EQ.svg" + }, "typeExtras": { "assetId": "190590555344745888270686124937537713878" } @@ -1075,7 +1225,10 @@ "precision": 9, "type": "statemine", "priceId": "tether", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/EQD.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/EQD.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/EQD.svg" + }, "typeExtras": { "assetId": "187224307232923873519830480073807488153" } @@ -1087,7 +1240,10 @@ "precision": 12, "type": "statemine", "priceId": "hydradx", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/HydraDX_(HDX).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/HDX.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/HDX.svg" + }, "typeExtras": { "assetId": "69606720909260275826784788104880799692" } @@ -1099,7 +1255,10 @@ "precision": 11, "type": "statemine", "priceId": "nodle-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Nodle_(NODL).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/NODL.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/NODL.svg" + }, "typeExtras": { "assetId": "309163521958167876851250718453738106865" } @@ -1111,7 +1270,10 @@ "precision": 18, "type": "statemine", "priceId": "darwinia-network-native-token", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Darwinia_(RING).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/RING.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/RING.svg" + }, "typeExtras": { "assetId": "125699734534028342599692732320197985871" } @@ -1122,7 +1284,10 @@ "symbol": "xcOTP", "precision": 12, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/OriginTrail_(OTP).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/OTP.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/OTP.svg" + }, "typeExtras": { "assetId": "238111524681612888331172110363070489924" } @@ -1134,7 +1299,10 @@ "precision": 10, "type": "statemine", "priceId": "voucher-dot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vDOT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vDOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vDOT.svg" + }, "typeExtras": { "assetId": "29085784439601774464560083082574142143" } @@ -1145,7 +1313,10 @@ "symbol": "xcvFIL", "precision": 18, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vFIL.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vFIL.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vFIL.svg" + }, "typeExtras": { "assetId": "272547899416482196831721420898811311297" } @@ -1157,7 +1328,10 @@ "precision": 18, "type": "statemine", "priceId": "voucher-glmr", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vGLMR.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vGLMR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vGLMR.svg" + }, "typeExtras": { "assetId": "204507659831918931608354793288110796652" } @@ -1169,7 +1343,10 @@ "precision": 18, "type": "statemine", "priceId": "manta-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Manta_(MANTA).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/MANTA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/MANTA.svg" + }, "typeExtras": { "assetId": "166446646689194205559791995948102903873" } @@ -1181,7 +1358,10 @@ "precision": 6, "type": "statemine", "priceId": "usd-coin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDC.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDC.svg" + }, "typeExtras": { "assetId": "166377000701797186346254371275954761085" } @@ -1273,7 +1453,10 @@ "precision": 18, "type": "native", "priceId": "moonriver", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Moonriver_(MOVR).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/MOVR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/MOVR.svg" + } }, { "name": "Remark", @@ -1282,7 +1465,10 @@ "precision": 10, "type": "statemine", "priceId": "rmrk", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/RMRK.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/RMRK.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/RMRK.svg" + }, "typeExtras": { "assetId": "182365888117048807484804376330534607370" } @@ -1294,7 +1480,10 @@ "precision": 12, "type": "statemine", "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kusama_(KSM).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KSM.svg" + }, "typeExtras": { "assetId": "42259045809535163221576417993425387648" } @@ -1306,7 +1495,10 @@ "precision": 12, "type": "statemine", "priceId": "kintsugi", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kintsugi_(KINT).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KINT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KINT.svg" + }, "typeExtras": { "assetId": "175400718394635817552109270754364440562" } @@ -1318,7 +1510,10 @@ "precision": 12, "type": "statemine", "priceId": "karura", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Karura_(KAR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KAR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KAR.svg" + }, "typeExtras": { "assetId": "10810581592933651521121702237638664357" } @@ -1330,7 +1525,10 @@ "precision": 12, "type": "statemine", "priceId": "bifrost-native-coin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Bifrost_(BNC).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/BNC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/BNC.svg" + }, "typeExtras": { "assetId": "319623561105283008236062145480775032445" } @@ -1342,7 +1540,10 @@ "precision": 8, "type": "statemine", "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/kBTC.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/kBTC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/kBTC.svg" + }, "typeExtras": { "assetId": "328179947973504579459046439826496046832" } @@ -1354,7 +1555,10 @@ "precision": 6, "type": "statemine", "priceId": "tether", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDT.svg" + }, "typeExtras": { "assetId": "311091173110107856861649819128533077277" } @@ -1366,7 +1570,10 @@ "precision": 12, "type": "statemine", "priceId": "ausd-seed-karura", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/aSEED-Kusama.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/aSEEDk.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/aSEEDk.svg" + }, "typeExtras": { "assetId": "214920334981412447805621250067209749032" } @@ -1378,7 +1585,10 @@ "precision": 12, "type": "statemine", "priceId": "crust-storage-market", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Crust_Shadow_(CSM).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/CSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/CSM.svg" + }, "typeExtras": { "assetId": "108457044225666871745333730479173774551" } @@ -1390,7 +1600,10 @@ "precision": 12, "type": "statemine", "priceId": "pha", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Phala_(PHA).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PHA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PHA.svg" + }, "typeExtras": { "assetId": "189307976387032586987344677431204943363" } @@ -1401,7 +1614,10 @@ "symbol": "xcHKO", "precision": 12, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/HKO.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/HKO.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/HKO.svg" + }, "typeExtras": { "assetId": "76100021443485661246318545281171740067" } @@ -1413,7 +1629,10 @@ "precision": 12, "type": "statemine", "priceId": "calamari-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Calamari_(KMA).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KMA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KMA.svg" + }, "typeExtras": { "assetId": "213357169630950964874127107356898319277" } @@ -1425,7 +1644,10 @@ "precision": 18, "type": "statemine", "priceId": "darwinia-crab-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Crab_(CRAB).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/CRAB.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/CRAB.svg" + }, "typeExtras": { "assetId": "173481220575862801646329923366065693029" } @@ -1437,7 +1659,10 @@ "precision": 12, "type": "statemine", "priceId": "integritee", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Integritee_Parachain_(TEER).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/TEER.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/TEER.svg" + }, "typeExtras": { "assetId": "105075627293246237499203909093923548958" } @@ -1449,7 +1674,10 @@ "precision": 12, "type": "statemine", "priceId": "litentry", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Litentry_(LIT).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/LIT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/LIT.svg" + }, "typeExtras": { "assetId": "65216491554813189869575508812319036608" } @@ -1461,7 +1689,10 @@ "precision": 18, "type": "statemine", "priceId": "shiden", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Shiden_(SDN).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/SDN.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/SDN.svg" + }, "typeExtras": { "assetId": "16797826370226091782818345603793389938" } @@ -1473,7 +1704,10 @@ "precision": 9, "type": "statemine", "priceId": "robonomics-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Robonomics_(XRT).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/XRT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/XRT.svg" + }, "typeExtras": { "assetId": "108036400430056508975016746969135344601" } @@ -1485,7 +1719,10 @@ "precision": 12, "type": "statemine", "priceId": "voucher-ksm", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vKSM.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vKSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vKSM.svg" + }, "typeExtras": { "assetId": "264344629840762281112027368930249420542" } @@ -1496,7 +1733,10 @@ "symbol": "xcvBNC", "precision": 12, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vBNC.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vBNC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vBNC.svg" + }, "typeExtras": { "assetId": "72145018963825376852137222787619937732" } @@ -1507,7 +1747,10 @@ "symbol": "xcvMOVR", "precision": 18, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vMOVR.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vMOVR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vMOVR.svg" + }, "typeExtras": { "assetId": "203223821023327994093278529517083736593" } @@ -1519,7 +1762,10 @@ "precision": 18, "type": "statemine", "priceId": "mangata-x", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Mangata_X_(MGX).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/MGX.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/MGX.svg" + }, "typeExtras": { "assetId": "118095707745084482624853002839493125353" } @@ -1531,7 +1777,10 @@ "precision": 10, "type": "statemine", "priceId": "turing-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Turing_(TUR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/TUR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/TUR.svg" + }, "typeExtras": { "assetId": "133300872918374599700079037156071917454" } @@ -1618,7 +1867,10 @@ "precision": 18, "type": "native", "priceId": "shiden", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Shiden_(SDN).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/SDN.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/SDN.svg" + } }, { "name": "Phala", @@ -1627,7 +1879,10 @@ "precision": 12, "type": "statemine", "priceId": "pha", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Phala_(PHA).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PHA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PHA.svg" + }, "typeExtras": { "assetId": "18446744073709551623" } @@ -1639,7 +1894,10 @@ "precision": 12, "type": "statemine", "priceId": "liquid-ksm", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/lKSM.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/LKSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/LKSM.svg" + }, "typeExtras": { "assetId": "18446744073709551619" } @@ -1651,7 +1909,10 @@ "precision": 18, "type": "statemine", "priceId": "moonriver", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Moonriver_(MOVR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/MOVR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/MOVR.svg" + }, "typeExtras": { "assetId": "18446744073709551620" } @@ -1663,7 +1924,10 @@ "precision": 8, "type": "statemine", "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/kBTC.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/kBTC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/kBTC.svg" + }, "typeExtras": { "assetId": "18446744073709551621" } @@ -1675,7 +1939,10 @@ "precision": 12, "type": "statemine", "priceId": "kintsugi", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kintsugi_(KINT).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KINT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KINT.svg" + }, "typeExtras": { "assetId": "18446744073709551622" } @@ -1687,7 +1954,10 @@ "precision": 12, "type": "statemine", "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kusama_(KSM).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KSM.svg" + }, "typeExtras": { "assetId": "340282366920938463463374607431768211455" } @@ -1699,7 +1969,10 @@ "precision": 12, "type": "statemine", "priceId": "ausd-seed-karura", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/aSEED-Kusama.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/aSEEDk.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/aSEEDk.svg" + }, "typeExtras": { "assetId": "18446744073709551616" } @@ -1711,7 +1984,10 @@ "precision": 12, "type": "statemine", "priceId": "crust-storage-market", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Crust_Shadow_(CSM).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/CSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/CSM.svg" + }, "typeExtras": { "assetId": "18446744073709551624" } @@ -1723,7 +1999,10 @@ "precision": 12, "type": "statemine", "priceId": "karura", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Karura_(KAR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KAR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KAR.svg" + }, "typeExtras": { "assetId": "18446744073709551618" } @@ -1735,7 +2014,10 @@ "precision": 6, "type": "statemine", "priceId": "tether", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDT.svg" + }, "typeExtras": { "assetId": "4294969280" } @@ -1747,7 +2029,10 @@ "precision": 12, "type": "statemine", "priceId": "voucher-ksm", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vKSM.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vKSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vKSM.svg" + }, "typeExtras": { "assetId": "18446744073709551628" } @@ -1759,7 +2044,10 @@ "precision": 12, "type": "statemine", "priceId": "bifrost-native-coin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Bifrost_(BNC).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/BNC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/BNC.svg" + }, "typeExtras": { "assetId": "18446744073709551627" } @@ -1812,7 +2100,10 @@ "precision": 12, "type": "native", "priceId": "bifrost-native-coin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Bifrost_(BNC).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/BNC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/BNC.svg" + } }, { "name": "Kusama", @@ -1821,7 +2112,10 @@ "precision": 12, "type": "orml", "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kusama_(KSM).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KSM.svg" + }, "typeExtras": { "currencyIdScale": "0x0204", "currencyIdType": "BifrostPrimitivesCurrencyCurrencyId", @@ -1836,7 +2130,10 @@ "precision": 10, "type": "orml", "priceId": "rmrk", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/RMRK.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/RMRK.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/RMRK.svg" + }, "typeExtras": { "currencyIdScale": "0x0209", "currencyIdType": "BifrostPrimitivesCurrencyCurrencyId", @@ -1851,7 +2148,10 @@ "precision": 18, "type": "orml", "priceId": "zenlink-network-token", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Zenlink_(ZLK).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/ZLK.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/ZLK.svg" + }, "typeExtras": { "currencyIdScale": "0x0207", "currencyIdType": "BifrostPrimitivesCurrencyCurrencyId", @@ -1866,7 +2166,10 @@ "precision": 12, "type": "orml", "priceId": "karura", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Karura_(KAR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KAR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KAR.svg" + }, "typeExtras": { "currencyIdScale": "0x0206", "currencyIdType": "BifrostPrimitivesCurrencyCurrencyId", @@ -1881,7 +2184,10 @@ "precision": 12, "type": "orml", "priceId": "ausd-seed-karura", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/aSEED-Kusama.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/aSEEDk.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/aSEEDk.svg" + }, "typeExtras": { "currencyIdScale": "0x0302", "currencyIdType": "BifrostPrimitivesCurrencyCurrencyId", @@ -1895,7 +2201,10 @@ "symbol": "vsKSM", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vsKSM.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vsKSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vsKSM.svg" + }, "typeExtras": { "currencyIdScale": "0x0404", "currencyIdType": "BifrostPrimitivesCurrencyCurrencyId", @@ -1910,7 +2219,10 @@ "precision": 6, "type": "orml", "priceId": "tether", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDT.svg" + }, "typeExtras": { "currencyIdScale": "0x0800", "currencyIdType": "BifrostPrimitivesCurrencyCurrencyId", @@ -1925,7 +2237,10 @@ "precision": 18, "type": "orml", "priceId": "moonriver", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Moonriver_(MOVR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/MOVR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/MOVR.svg" + }, "typeExtras": { "currencyIdScale": "0x020a", "currencyIdType": "BifrostPrimitivesCurrencyCurrencyId", @@ -1940,7 +2255,10 @@ "precision": 12, "type": "orml", "priceId": "pha", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Phala_(PHA).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PHA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PHA.svg" + }, "typeExtras": { "currencyIdScale": "0x0208", "currencyIdType": "BifrostPrimitivesCurrencyCurrencyId", @@ -1955,7 +2273,10 @@ "precision": 12, "type": "orml", "priceId": "voucher-ksm", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vKSM.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vKSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vKSM.svg" + }, "typeExtras": { "currencyIdScale": "0x0104", "currencyIdType": "BifrostPrimitivesCurrencyCurrencyId", @@ -1970,7 +2291,10 @@ "precision": 8, "type": "orml", "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/kBTC.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/kBTC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/kBTC.svg" + }, "typeExtras": { "currencyIdScale": "0x0802", "currencyIdType": "BifrostPrimitivesCurrencyCurrencyId", @@ -1984,7 +2308,10 @@ "symbol": "vBNC", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vBNC.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vBNC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vBNC.svg" + }, "typeExtras": { "currencyIdScale": "0x0101", "currencyIdType": "BifrostPrimitivesCurrencyCurrencyId", @@ -1998,7 +2325,10 @@ "symbol": "vMOVR", "precision": 18, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vMOVR.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vMOVR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vMOVR.svg" + }, "typeExtras": { "currencyIdScale": "0x010a", "currencyIdType": "BifrostPrimitivesCurrencyCurrencyId", @@ -2054,7 +2384,10 @@ "precision": 12, "type": "native", "priceId": "basilisk", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Basilisk_(BSX).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/BSX.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/BSX.svg" + } }, { "name": "Kusama", @@ -2063,7 +2396,10 @@ "precision": 12, "type": "orml", "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kusama_(KSM).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KSM.svg" + }, "typeExtras": { "currencyIdScale": "0x01000000", "currencyIdType": "u32", @@ -2078,7 +2414,10 @@ "precision": 12, "type": "orml", "priceId": "ausd-seed-karura", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/aSEED-Kusama.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/aSEEDk.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/aSEEDk.svg" + }, "typeExtras": { "currencyIdScale": "0x02000000", "currencyIdType": "u32", @@ -2092,7 +2431,10 @@ "symbol": "TNKR", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Tinkernet_(TNKR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/TNKR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/TNKR.svg" + }, "typeExtras": { "currencyIdScale": "0x06000000", "currencyIdType": "u32", @@ -2107,7 +2449,10 @@ "precision": 6, "type": "orml", "priceId": "tether", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDT.svg" + }, "typeExtras": { "currencyIdScale": "0x0e000000", "currencyIdType": "u32", @@ -2122,7 +2467,10 @@ "precision": 9, "type": "orml", "priceId": "robonomics-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Robonomics_(XRT).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/XRT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/XRT.svg" + }, "typeExtras": { "currencyIdScale": "0x10000000", "currencyIdType": "u32", @@ -2174,7 +2522,10 @@ "precision": 18, "type": "native", "priceId": "altair", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Altair_(AIR).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/AIR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/AIR.svg" + } } ], "explorers": [ @@ -2219,7 +2570,10 @@ "symbol": "HKO", "precision": 12, "type": "native", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/HKO.svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/HKO.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/HKO.svg" + } }, { "name": "Kusama", @@ -2228,7 +2582,10 @@ "precision": 12, "type": "statemine", "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kusama_(KSM).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KSM.svg" + }, "typeExtras": { "assetId": "100" } @@ -2240,7 +2597,10 @@ "precision": 12, "type": "statemine", "priceId": "ausd-seed-karura", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/aSEED-Kusama.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/aSEEDk.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/aSEEDk.svg" + }, "typeExtras": { "assetId": "103" } @@ -2252,7 +2612,10 @@ "precision": 12, "type": "statemine", "priceId": "liquid-ksm", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/lKSM.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/LKSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/LKSM.svg" + }, "typeExtras": { "assetId": "109" } @@ -2263,7 +2626,10 @@ "symbol": "sKSM", "precision": 12, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/sKSM.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/sKSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/sKSM.svg" + }, "typeExtras": { "assetId": "1000" } @@ -2275,7 +2641,10 @@ "precision": 12, "type": "statemine", "priceId": "karura", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Karura_(KAR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KAR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KAR.svg" + }, "typeExtras": { "assetId": "107" } @@ -2287,7 +2656,10 @@ "precision": 18, "type": "statemine", "priceId": "moonriver", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Moonriver_(MOVR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/MOVR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/MOVR.svg" + }, "typeExtras": { "assetId": "113" } @@ -2299,7 +2671,10 @@ "precision": 12, "type": "statemine", "priceId": "pha", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Phala_(PHA).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PHA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PHA.svg" + }, "typeExtras": { "assetId": "115" } @@ -2311,7 +2686,10 @@ "precision": 9, "type": "statemine", "priceId": "genshiro", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Genshiro_(GENS).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/GENS.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/GENS.svg" + }, "typeExtras": { "assetId": "123" } @@ -2323,7 +2701,10 @@ "precision": 6, "type": "statemine", "priceId": "tether", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDT.svg" + }, "typeExtras": { "assetId": "102" } @@ -2335,7 +2716,10 @@ "precision": 12, "type": "statemine", "priceId": "kintsugi", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kintsugi_(KINT).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KINT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KINT.svg" + }, "typeExtras": { "assetId": "119" } @@ -2347,7 +2731,10 @@ "precision": 8, "type": "statemine", "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/kBTC.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/kBTC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/kBTC.svg" + }, "typeExtras": { "assetId": "121" } @@ -2383,21 +2770,25 @@ "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/chains/Khala.svg", "options": [], "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://rpc.helikon.io/khala", + "name": "Helikon node" }, { "url": "wss://khala.api.onfinality.io/public-ws", "name": "OnFinality node" + }, + { + "url": "wss://khala-api.phala.network/ws", + "name": "Phala node" + }, + { + "url": "wss://khala.public.curie.radiumblock.co/ws", + "name": "RadiumBlock node" } ], "assets": [ @@ -2408,7 +2799,10 @@ "precision": 12, "type": "native", "priceId": "pha", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Phala_(PHA).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PHA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PHA.svg" + } }, { "name": "Kusama", @@ -2417,7 +2811,10 @@ "precision": 12, "type": "statemine", "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kusama_(KSM).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KSM.svg" + }, "typeExtras": { "assetId": "0" } @@ -2429,7 +2826,10 @@ "precision": 12, "type": "statemine", "priceId": "karura", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Karura_(KAR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KAR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KAR.svg" + }, "typeExtras": { "assetId": "1" } @@ -2441,7 +2841,10 @@ "precision": 12, "type": "statemine", "priceId": "bifrost-native-coin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Bifrost_(BNC).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/BNC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/BNC.svg" + }, "typeExtras": { "assetId": "2" } @@ -2453,7 +2856,10 @@ "precision": 18, "type": "statemine", "priceId": "zenlink-network-token", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Zenlink_(ZLK).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/ZLK.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/ZLK.svg" + }, "typeExtras": { "assetId": "3" } @@ -2465,7 +2871,10 @@ "precision": 12, "type": "statemine", "priceId": "ausd-seed-karura", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/aSEED-Kusama.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/aSEEDk.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/aSEEDk.svg" + }, "typeExtras": { "assetId": "4" } @@ -2477,7 +2886,10 @@ "precision": 12, "type": "statemine", "priceId": "basilisk", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Basilisk_(BSX).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/BSX.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/BSX.svg" + }, "typeExtras": { "assetId": "9" } @@ -2489,7 +2901,10 @@ "precision": 18, "type": "statemine", "priceId": "moonriver", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Moonriver_(MOVR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/MOVR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/MOVR.svg" + }, "typeExtras": { "assetId": "6" } @@ -2500,7 +2915,10 @@ "symbol": "HKO", "precision": 12, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/HKO.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/HKO.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/HKO.svg" + }, "typeExtras": { "assetId": "7" } @@ -2512,7 +2930,10 @@ "precision": 12, "type": "statemine", "priceId": "calamari-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Calamari_(KMA).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KMA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KMA.svg" + }, "typeExtras": { "assetId": "8" } @@ -2524,7 +2945,10 @@ "precision": 10, "type": "statemine", "priceId": "turing-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Turing_(TUR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/TUR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/TUR.svg" + }, "typeExtras": { "assetId": "10" } @@ -2536,7 +2960,10 @@ "precision": 18, "type": "statemine", "priceId": "darwinia-network-native-token", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Crab_(CRAB).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/CRAB.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/CRAB.svg" + }, "typeExtras": { "assetId": "11" } @@ -2548,7 +2975,10 @@ "precision": 18, "type": "statemine", "priceId": "shiden", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Shiden_(SDN).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/SDN.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/SDN.svg" + }, "typeExtras": { "assetId": "12" } @@ -2560,7 +2990,10 @@ "precision": 18, "type": "statemine", "priceId": "metaverse-network-pioneer", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Bit.Country_Pioneer_(NEER).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/NEER.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/NEER.svg" + }, "typeExtras": { "assetId": "13" } @@ -2571,7 +3004,10 @@ "symbol": "BIT", "precision": 18, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/BIT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/BIT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/BIT.svg" + }, "typeExtras": { "assetId": "14" } @@ -2583,7 +3019,10 @@ "precision": 12, "type": "statemine", "priceId": "picasso", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Picasso_(PICA).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PICA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PICA.svg" + }, "typeExtras": { "assetId": "15" } @@ -2644,7 +3083,10 @@ "precision": 15, "type": "native", "priceId": "kilt-protocol", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kilt_(KILT).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KILT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KILT.svg" + } } ], "explorers": [ @@ -2702,7 +3144,10 @@ "precision": 18, "type": "native", "priceId": "quartz", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Quartz_(QTZ).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/QTZ.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/QTZ.svg" + } } ], "explorers": [ @@ -2772,7 +3217,10 @@ "precision": 12, "type": "native", "priceId": "acala", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Acala_(ACA).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/ACA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/ACA.svg" + } }, { "name": "Liquid DOT", @@ -2781,7 +3229,10 @@ "precision": 10, "type": "orml", "priceId": "liquid-staking-dot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/lDOT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/LDOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/LDOT.svg" + }, "typeExtras": { "currencyIdScale": "0x0003", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -2796,7 +3247,10 @@ "precision": 12, "type": "orml", "priceId": "ausd-seed-acala", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/aSEED-Polkadot.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/aSEEDp.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/aSEEDp.svg" + }, "typeExtras": { "currencyIdScale": "0x0001", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -2811,7 +3265,10 @@ "precision": 10, "type": "orml", "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Polkadot_(DOT).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/DOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/DOT.svg" + }, "typeExtras": { "currencyIdScale": "0x0002", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -2826,7 +3283,10 @@ "precision": 10, "type": "orml", "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/lcDOT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/lcDOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/lcDOT.svg" + }, "typeExtras": { "currencyIdScale": "0x040d000000", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -2841,7 +3301,10 @@ "precision": 18, "type": "orml", "priceId": "moonbeam", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Moonbeam_(GLMR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/GLMR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/GLMR.svg" + }, "typeExtras": { "currencyIdScale": "0x050000", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -2855,7 +3318,10 @@ "symbol": "PARA", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/PARA.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PARA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PARA.svg" + }, "typeExtras": { "currencyIdScale": "0x050100", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -2869,7 +3335,10 @@ "symbol": "TAP", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Tapio_(TAP).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/TAP.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/TAP.svg" + }, "typeExtras": { "currencyIdScale": "0x0004", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -2883,7 +3352,10 @@ "symbol": "tDOT", "precision": 10, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/tDOT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/tDOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/tDOT.svg" + }, "typeExtras": { "currencyIdScale": "0x0300000000", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -2898,7 +3370,10 @@ "precision": 10, "type": "orml", "priceId": "interlay", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Interlay_(INTR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/INTR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/INTR.svg" + }, "typeExtras": { "currencyIdScale": "0x050400", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -2913,7 +3388,10 @@ "precision": 18, "type": "orml", "priceId": "astar", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Astar_(ASTR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/ASTR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/ASTR.svg" + }, "typeExtras": { "currencyIdScale": "0x050200", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -2928,7 +3406,10 @@ "precision": 9, "type": "orml", "priceId": "equilibrium-token", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Equilibrium_(EQ).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/EQ.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/EQ.svg" + }, "typeExtras": { "currencyIdScale": "0x050700", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -2943,7 +3424,10 @@ "precision": 8, "type": "orml", "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/iBTC.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/iBTC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/iBTC.svg" + }, "typeExtras": { "currencyIdScale": "0x050300", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -2958,7 +3442,10 @@ "precision": 18, "type": "orml", "priceId": "dai", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/DAI.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/DAI.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/DAI.svg" + }, "typeExtras": { "currencyIdScale": "0x0254a37a01cd75b616d63e0ab665bffdb0143c52ae", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -2973,7 +3460,10 @@ "precision": 6, "type": "orml", "priceId": "tether", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDT.svg" + }, "typeExtras": { "currencyIdScale": "0x050c00", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -2987,7 +3477,10 @@ "symbol": "PINK", "precision": 10, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Pink.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PINK.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PINK.svg" + }, "typeExtras": { "currencyIdScale": "0x050d00", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -3051,7 +3544,10 @@ "precision": 18, "type": "native", "priceId": "astar", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Astar_(ASTR).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/ASTR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/ASTR.svg" + } }, { "name": "Polkadot", @@ -3060,7 +3556,10 @@ "precision": 10, "type": "statemine", "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Polkadot_(DOT).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/DOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/DOT.svg" + }, "typeExtras": { "assetId": "340282366920938463463374607431768211455" } @@ -3072,7 +3571,10 @@ "precision": 18, "type": "statemine", "priceId": "moonbeam", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Moonbeam_(GLMR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/GLMR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/GLMR.svg" + }, "typeExtras": { "assetId": "18446744073709551619" } @@ -3084,7 +3586,10 @@ "precision": 8, "type": "statemine", "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/iBTC.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/iBTC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/iBTC.svg" + }, "typeExtras": { "assetId": "18446744073709551620" } @@ -3096,7 +3601,10 @@ "precision": 10, "type": "statemine", "priceId": "interlay", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Interlay_(INTR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/INTR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/INTR.svg" + }, "typeExtras": { "assetId": "18446744073709551621" } @@ -3108,7 +3616,10 @@ "precision": 12, "type": "statemine", "priceId": "pha", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Phala_(PHA).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PHA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PHA.svg" + }, "typeExtras": { "assetId": "18446744073709551622" } @@ -3120,7 +3631,10 @@ "precision": 12, "type": "statemine", "priceId": "acala", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Acala_(ACA).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/ACA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/ACA.svg" + }, "typeExtras": { "assetId": "18446744073709551616" } @@ -3132,7 +3646,10 @@ "precision": 10, "type": "statemine", "priceId": "liquid-staking-dot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/lDOT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/LDOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/LDOT.svg" + }, "typeExtras": { "assetId": "18446744073709551618" } @@ -3144,7 +3661,10 @@ "precision": 12, "type": "statemine", "priceId": "ausd-seed-acala", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/aSEED-Polkadot.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/aSEEDp.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/aSEEDp.svg" + }, "typeExtras": { "assetId": "18446744073709551617" } @@ -3156,7 +3676,10 @@ "precision": 6, "type": "statemine", "priceId": "tether", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDT.svg" + }, "typeExtras": { "assetId": "4294969280" } @@ -3168,7 +3691,10 @@ "precision": 12, "type": "statemine", "priceId": "bifrost-native-coin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Bifrost_(BNC).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/BNC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/BNC.svg" + }, "typeExtras": { "assetId": "18446744073709551623" } @@ -3180,7 +3706,10 @@ "precision": 18, "type": "statemine", "priceId": "unique-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Unique_(UNQ).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/UNQ.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/UNQ.svg" + }, "typeExtras": { "assetId": "18446744073709551631" } @@ -3192,7 +3721,10 @@ "precision": 10, "type": "statemine", "priceId": "voucher-dot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vDOT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vDOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vDOT.svg" + }, "typeExtras": { "assetId": "18446744073709551624" } @@ -3204,7 +3736,10 @@ "precision": 9, "type": "statemine", "priceId": "tether", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/EQD.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/EQD.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/EQD.svg" + }, "typeExtras": { "assetId": "18446744073709551629" } @@ -3252,7 +3787,10 @@ "symbol": "PARA", "precision": 12, "type": "native", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/PARA.svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PARA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PARA.svg" + } }, { "name": "Polkadot", @@ -3261,7 +3799,10 @@ "precision": 10, "type": "statemine", "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Polkadot_(DOT).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/DOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/DOT.svg" + }, "typeExtras": { "assetId": "101" } @@ -3273,7 +3814,10 @@ "precision": 10, "type": "statemine", "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/sDOT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/sDOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/sDOT.svg" + }, "typeExtras": { "assetId": "1001" } @@ -3285,7 +3829,10 @@ "precision": 12, "type": "statemine", "priceId": "acala", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Acala_(ACA).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/ACA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/ACA.svg" + }, "typeExtras": { "assetId": "108" } @@ -3297,7 +3844,10 @@ "precision": 12, "type": "statemine", "priceId": "ausd-seed-acala", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/aSEED-Polkadot.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/aSEEDp.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/aSEEDp.svg" + }, "typeExtras": { "assetId": "104" } @@ -3309,7 +3859,10 @@ "precision": 10, "type": "statemine", "priceId": "liquid-staking-dot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/lDOT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/LDOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/LDOT.svg" + }, "typeExtras": { "assetId": "110" } @@ -3321,7 +3874,10 @@ "precision": 18, "type": "statemine", "priceId": "moonbeam", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Moonbeam_(GLMR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/GLMR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/GLMR.svg" + }, "typeExtras": { "assetId": "114" } @@ -3333,7 +3889,10 @@ "precision": 10, "type": "statemine", "priceId": "interlay", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Interlay_(INTR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/INTR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/INTR.svg" + }, "typeExtras": { "assetId": "120" } @@ -3345,7 +3904,10 @@ "precision": 8, "type": "statemine", "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/iBTC.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/iBTC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/iBTC.svg" + }, "typeExtras": { "assetId": "122" } @@ -3357,7 +3919,10 @@ "precision": 6, "type": "statemine", "priceId": "tether", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDT.svg" + }, "typeExtras": { "assetId": "102" } @@ -3368,7 +3933,10 @@ "symbol": "CLV", "precision": 18, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/CLV_(CLV).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/CLV.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/CLV.svg" + }, "typeExtras": { "assetId": "130" } @@ -3380,7 +3948,10 @@ "precision": 18, "type": "statemine", "priceId": "astar", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Astar_(ASTR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/ASTR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/ASTR.svg" + }, "typeExtras": { "assetId": "112" } @@ -3392,7 +3963,10 @@ "precision": 12, "type": "statemine", "priceId": "pha", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Phala_(PHA).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PHA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PHA.svg" + }, "typeExtras": { "assetId": "115" } @@ -3457,7 +4031,10 @@ "precision": 10, "type": "native", "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Polkadot_(DOT).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/DOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/DOT.svg" + } }, { "name": "USD Tether", @@ -3466,7 +4043,10 @@ "precision": 6, "type": "statemine", "priceId": "tether", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDT.svg" + }, "typeExtras": { "assetId": "1984" } @@ -3478,7 +4058,10 @@ "precision": 6, "type": "statemine", "priceId": "usd-coin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDC.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDC.svg" + }, "typeExtras": { "assetId": "1337" } @@ -3490,7 +4073,10 @@ "precision": 10, "type": "statemine", "priceId": "dot-is-ded", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/DED.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/DED.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/DED.svg" + }, "typeExtras": { "assetId": "30" } @@ -3501,7 +4087,10 @@ "symbol": "PINK", "precision": 10, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Pink.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PINK.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PINK.svg" + }, "typeExtras": { "assetId": "23" } @@ -3512,7 +4101,10 @@ "symbol": "DOTA", "precision": 4, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/DOTA.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/DOTA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/DOTA.svg" + }, "typeExtras": { "assetId": "18" } @@ -3523,7 +4115,10 @@ "symbol": "STINK", "precision": 10, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/STINK.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/STINK.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/STINK.svg" + }, "typeExtras": { "assetId": "42069" } @@ -3534,7 +4129,10 @@ "symbol": "GABE", "precision": 20, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/GABE.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/GABE.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/GABE.svg" + }, "typeExtras": { "assetId": "69420" } @@ -3545,7 +4143,10 @@ "symbol": "WUD", "precision": 10, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/WUD.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/WUD.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/WUD.svg" + }, "typeExtras": { "assetId": "31337" } @@ -3556,7 +4157,10 @@ "symbol": "WIFD", "precision": 10, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/WIFD.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/WIFD.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/WIFD.svg" + }, "typeExtras": { "assetId": "17" } @@ -3567,7 +4171,10 @@ "symbol": "BORK", "precision": 10, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/BORK.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/BORK.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/BORK.svg" + }, "typeExtras": { "assetId": "690" } @@ -3578,7 +4185,10 @@ "symbol": "BUNS", "precision": 10, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/BUNS.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/BUNS.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/BUNS.svg" + }, "typeExtras": { "assetId": "1234" } @@ -3589,7 +4199,10 @@ "symbol": "KOL", "precision": 12, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/KOL.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KOL.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KOL.svg" + }, "typeExtras": { "assetId": "86" } @@ -3645,7 +4258,10 @@ "precision": 9, "type": "native", "priceId": "robonomics-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Robonomics_(XRT).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/XRT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/XRT.svg" + } } ], "explorers": [ @@ -3691,7 +4307,10 @@ "precision": 12, "type": "orml", "priceId": "kintsugi", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kintsugi_(KINT).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KINT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KINT.svg" + }, "typeExtras": { "currencyIdScale": "0x000c", "currencyIdType": "InterbtcPrimitivesCurrencyId", @@ -3706,7 +4325,10 @@ "precision": 8, "type": "orml", "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/kBTC.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/kBTC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/kBTC.svg" + }, "typeExtras": { "currencyIdScale": "0x000b", "currencyIdType": "InterbtcPrimitivesCurrencyId", @@ -3721,7 +4343,10 @@ "precision": 12, "type": "orml", "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kusama_(KSM).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KSM.svg" + }, "typeExtras": { "currencyIdScale": "0x000a", "currencyIdType": "InterbtcPrimitivesCurrencyId", @@ -3736,7 +4361,10 @@ "precision": 12, "type": "orml", "priceId": "liquid-ksm", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/lKSM.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/LKSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/LKSM.svg" + }, "typeExtras": { "currencyIdScale": "0x0102000000", "currencyIdType": "InterbtcPrimitivesCurrencyId", @@ -3751,7 +4379,10 @@ "precision": 6, "type": "orml", "priceId": "tether", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDT.svg" + }, "typeExtras": { "currencyIdScale": "0x0103000000", "currencyIdType": "InterbtcPrimitivesCurrencyId", @@ -3766,7 +4397,10 @@ "precision": 12, "type": "orml", "priceId": "ausd-seed-karura", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/aSEED-Kusama.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/aSEEDk.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/aSEEDk.svg" + }, "typeExtras": { "currencyIdScale": "0x0101000000", "currencyIdType": "InterbtcPrimitivesCurrencyId", @@ -3780,7 +4414,10 @@ "symbol": "qkBTC", "precision": 8, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/kBTC.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/qkBTC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/qkBTC.svg" + }, "typeExtras": { "currencyIdScale": "0x0201000000", "currencyIdType": "InterbtcPrimitivesCurrencyId", @@ -3794,7 +4431,10 @@ "symbol": "qKSM", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kusama_(KSM).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/qKSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/qKSM.svg" + }, "typeExtras": { "currencyIdScale": "0x0202000000", "currencyIdType": "InterbtcPrimitivesCurrencyId", @@ -3808,7 +4448,10 @@ "symbol": "qUSDT", "precision": 6, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/qUSDT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/qUSDT.svg" + }, "typeExtras": { "currencyIdScale": "0x0203000000", "currencyIdType": "InterbtcPrimitivesCurrencyId", @@ -3864,7 +4507,10 @@ "precision": 10, "type": "native", "priceId": "zeitgeist", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Zeitgeist_(ZTG).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/ZTG.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/ZTG.svg" + } } ], "explorers": [ @@ -3924,7 +4570,10 @@ "precision": 10, "type": "native", "priceId": "subsocial", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Subsocial_(SUB).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/SUB.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/SUB.svg" + } } ], "explorers": [ @@ -3968,7 +4617,10 @@ "precision": 12, "type": "native", "priceId": "integritee", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Integritee_Parachain_(TEER).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/TEER.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/TEER.svg" + } } ], "explorers": [ @@ -4018,7 +4670,10 @@ "precision": 18, "type": "native", "priceId": "centrifuge", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Centrifuge_(CFG).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/CFG.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/CFG.svg" + } } ], "explorers": [ @@ -4055,6 +4710,10 @@ "pure_proxy" ], "nodes": [ + { + "url": "wss://rpc.hydradx.cloud", + "name": "Galactic Council node" + }, { "url": "wss://hydration.ibp.network", "name": "IBP1 node" @@ -4066,10 +4725,6 @@ { "url": "wss://hydradx-rpc.dwellir.com", "name": "Dwellir node" - }, - { - "url": "wss://rpc.hydradx.cloud", - "name": "Galactic Council node" } ], "assets": [ @@ -4080,7 +4735,10 @@ "precision": 12, "type": "native", "priceId": "hydradx", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/HydraDX_(HDX).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/HDX.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/HDX.svg" + } }, { "name": "Polkadot", @@ -4089,7 +4747,10 @@ "precision": 10, "type": "orml", "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Polkadot_(DOT).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/DOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/DOT.svg" + }, "typeExtras": { "currencyIdScale": "0x05000000", "currencyIdType": "u32", @@ -4104,7 +4765,10 @@ "precision": 18, "type": "orml", "priceId": "dai", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/DAI-Acala.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/DAI-Acala.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/DAI-Acala.svg" + }, "typeExtras": { "currencyIdScale": "0x02000000", "currencyIdType": "u32", @@ -4118,7 +4782,10 @@ "symbol": "LRNA", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Lerna_(LRNA).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/LRNA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/LRNA.svg" + }, "typeExtras": { "currencyIdScale": "0x01000000", "currencyIdType": "u32", @@ -4133,7 +4800,10 @@ "precision": 18, "type": "orml", "priceId": "ethereum-wormhole", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/WETH-Acala.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/WETH-Acala.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/WETH-Acala.svg" + }, "typeExtras": { "currencyIdScale": "0x04000000", "currencyIdType": "u32", @@ -4148,7 +4818,10 @@ "precision": 8, "type": "orml", "priceId": "wrapped-bitcoin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/WBTC-Acala.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/WBTC-Acala.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/WBTC-Acala.svg" + }, "typeExtras": { "currencyIdScale": "0x03000000", "currencyIdType": "u32", @@ -4163,7 +4836,10 @@ "precision": 8, "type": "orml", "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/iBTC.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/iBTC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/iBTC.svg" + }, "typeExtras": { "currencyIdScale": "0x0b000000", "currencyIdType": "u32", @@ -4178,7 +4854,10 @@ "precision": 10, "type": "orml", "priceId": "zeitgeist", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Zeitgeist_(ZTG).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/ZTG.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/ZTG.svg" + }, "typeExtras": { "currencyIdScale": "0x0c000000", "currencyIdType": "u32", @@ -4193,7 +4872,10 @@ "precision": 18, "type": "orml", "priceId": "astar", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Astar_(ASTR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/ASTR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/ASTR.svg" + }, "typeExtras": { "currencyIdScale": "0x09000000", "currencyIdType": "u32", @@ -4208,7 +4890,10 @@ "precision": 6, "type": "orml", "priceId": "tether", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDT.svg" + }, "typeExtras": { "currencyIdScale": "0x0a000000", "currencyIdType": "u32", @@ -4223,7 +4908,10 @@ "precision": 18, "type": "orml", "priceId": "centrifuge", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Centrifuge_(CFG).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/CFG.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/CFG.svg" + }, "typeExtras": { "currencyIdScale": "0x0d000000", "currencyIdType": "u32", @@ -4238,7 +4926,10 @@ "precision": 12, "type": "orml", "priceId": "bifrost-native-coin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Bifrost_(BNC).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/BNC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/BNC.svg" + }, "typeExtras": { "currencyIdScale": "0x0e000000", "currencyIdType": "u32", @@ -4253,7 +4944,10 @@ "precision": 18, "type": "orml", "priceId": "dai", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/DAI-Moonbeam.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/DAI-Moonbeam.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/DAI-Moonbeam.svg" + }, "typeExtras": { "currencyIdScale": "0x12000000", "currencyIdType": "u32", @@ -4268,7 +4962,10 @@ "precision": 8, "type": "orml", "priceId": "wrapped-bitcoin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/WBTC-Moonbeam.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/WBTC-Moonbeam.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/WBTC-Moonbeam.svg" + }, "typeExtras": { "currencyIdScale": "0x13000000", "currencyIdType": "u32", @@ -4283,7 +4980,10 @@ "precision": 18, "type": "orml", "priceId": "ethereum-wormhole", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/WETH-Moonbeam.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/WETH-Moonbeam.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/WETH-Moonbeam.svg" + }, "typeExtras": { "currencyIdScale": "0x14000000", "currencyIdType": "u32", @@ -4298,7 +4998,10 @@ "precision": 6, "type": "orml", "priceId": "usd-coin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDC.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDC.svg" + }, "typeExtras": { "currencyIdScale": "0x16000000", "currencyIdType": "u32", @@ -4313,7 +5016,10 @@ "precision": 18, "type": "orml", "priceId": "moonbeam", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Moonbeam_(GLMR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/GLMR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/GLMR.svg" + }, "typeExtras": { "currencyIdScale": "0x10000000", "currencyIdType": "u32", @@ -4328,7 +5034,10 @@ "precision": 10, "type": "orml", "priceId": "interlay", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Interlay_(INTR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/INTR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/INTR.svg" + }, "typeExtras": { "currencyIdScale": "0x11000000", "currencyIdType": "u32", @@ -4343,7 +5052,10 @@ "precision": 10, "type": "orml", "priceId": "subsocial", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Subsocial_(SUB).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/SUB.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/SUB.svg" + }, "typeExtras": { "currencyIdScale": "0x18000000", "currencyIdType": "u32", @@ -4358,7 +5070,10 @@ "precision": 10, "type": "orml", "priceId": "voucher-dot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vDOT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vDOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vDOT.svg" + }, "typeExtras": { "currencyIdScale": "0x0f000000", "currencyIdType": "u32", @@ -4373,7 +5088,10 @@ "precision": 12, "type": "orml", "priceId": "pha", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Phala_(PHA).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PHA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PHA.svg" + }, "typeExtras": { "currencyIdScale": "0x08000000", "currencyIdType": "u32", @@ -4388,7 +5106,10 @@ "precision": 6, "type": "orml", "priceId": "usd-coin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDC.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDC-Moonbeam.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDC-Moonbeam.svg" + }, "typeExtras": { "currencyIdScale": "0x15000000", "currencyIdType": "u32", @@ -4403,7 +5124,10 @@ "precision": 18, "type": "orml", "priceId": "unique-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Unique_(UNQ).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/UNQ.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/UNQ.svg" + }, "typeExtras": { "currencyIdScale": "0x19000000", "currencyIdType": "u32", @@ -4418,7 +5142,10 @@ "precision": 11, "type": "orml", "priceId": "nodle-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Nodle_(NODL).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/NODL.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/NODL.svg" + }, "typeExtras": { "currencyIdScale": "0x1a000000", "currencyIdType": "u32", @@ -4433,7 +5160,10 @@ "precision": 12, "type": "orml", "priceId": "crust-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Crust_(CRU).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/CRU.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/CRU.svg" + }, "typeExtras": { "currencyIdScale": "0x1b000000", "currencyIdType": "u32", @@ -4448,7 +5178,10 @@ "precision": 6, "type": "orml", "priceId": "tether", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDT-Moonbeam.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDT-Moonbeam.svg" + }, "typeExtras": { "currencyIdScale": "0x17000000", "currencyIdType": "u32", @@ -4463,7 +5196,10 @@ "precision": 10, "type": "orml", "priceId": "dot-is-ded", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/DED.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/DED.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/DED.svg" + }, "typeExtras": { "currencyIdScale": "0x53420f00", "currencyIdType": "u32", @@ -4477,7 +5213,10 @@ "symbol": "PINK", "precision": 10, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Pink.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PINK.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PINK.svg" + }, "typeExtras": { "currencyIdScale": "0x55420f00", "currencyIdType": "u32", @@ -4491,7 +5230,10 @@ "symbol": "STINK", "precision": 10, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/STINK.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/STINK.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/STINK.svg" + }, "typeExtras": { "currencyIdScale": "0x62420f00", "currencyIdType": "u32", @@ -4505,7 +5247,10 @@ "symbol": "DOTA", "precision": 4, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/DOTA.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/DOTA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/DOTA.svg" + }, "typeExtras": { "currencyIdScale": "0x66420f00", "currencyIdType": "u32", @@ -4519,7 +5264,10 @@ "symbol": "GABE", "precision": 20, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/GABE.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/GABE.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/GABE.svg" + }, "typeExtras": { "currencyIdScale": "0x7e420f00", "currencyIdType": "u32", @@ -4534,7 +5282,10 @@ "precision": 15, "type": "orml", "priceId": "kilt-protocol", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kilt_(KILT).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KILT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KILT.svg" + }, "typeExtras": { "currencyIdScale": "0x1c000000", "currencyIdType": "u32", @@ -4548,7 +5299,10 @@ "symbol": "WUD", "precision": 10, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/WUD.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/WUD.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/WUD.svg" + }, "typeExtras": { "currencyIdScale": "0x95420f00", "currencyIdType": "u32", @@ -4563,7 +5317,10 @@ "precision": 18, "type": "orml", "priceId": "mythos", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/MYTH.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/MYTH.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/MYTH.svg" + }, "typeExtras": { "currencyIdScale": "0x1e000000", "currencyIdType": "u32", @@ -4577,7 +5334,10 @@ "symbol": "WIFD", "precision": 10, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/WIFD.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/WIFD.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/WIFD.svg" + }, "typeExtras": { "currencyIdScale": "0x92420f00", "currencyIdType": "u32", @@ -4591,7 +5351,10 @@ "symbol": "BORK", "precision": 10, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/BORK.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/BORK.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/BORK.svg" + }, "typeExtras": { "currencyIdScale": "0xd4420f00", "currencyIdType": "u32", @@ -4605,7 +5368,10 @@ "symbol": "BUNS", "precision": 10, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/BUNS.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/BUNS.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/BUNS.svg" + }, "typeExtras": { "currencyIdScale": "0xf1420f00", "currencyIdType": "u32", @@ -4619,7 +5385,10 @@ "symbol": "KOL", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/KOL.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KOL.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KOL.svg" + }, "typeExtras": { "currencyIdScale": "0x07430f00", "currencyIdType": "u32", @@ -4633,13 +5402,34 @@ "symbol": "vASTR", "precision": 18, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vASTR.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vASTR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vASTR.svg" + }, "typeExtras": { "currencyIdScale": "0x21000000", "currencyIdType": "u32", "existentialDeposit": "133689839572193000", "transfersEnabled": true } + }, + { + "name": "Ajuna", + "assetId": 44, + "symbol": "AJUN", + "precision": 12, + "type": "orml", + "priceId": "ajuna-network-2", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/AJUN.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/AJUN.svg" + }, + "typeExtras": { + "currencyIdScale": "0x20000000", + "currencyIdType": "u32", + "existentialDeposit": "100786131828", + "transfersEnabled": true + } } ], "explorers": [ @@ -4695,7 +5485,10 @@ "precision": 10, "type": "orml", "priceId": "interlay", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Interlay_(INTR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/INTR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/INTR.svg" + }, "typeExtras": { "currencyIdScale": "0x0002", "currencyIdType": "InterbtcPrimitivesCurrencyId", @@ -4710,7 +5503,10 @@ "precision": 8, "type": "orml", "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/iBTC.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/iBTC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/iBTC.svg" + }, "typeExtras": { "currencyIdScale": "0x0001", "currencyIdType": "InterbtcPrimitivesCurrencyId", @@ -4725,7 +5521,10 @@ "precision": 10, "type": "orml", "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Polkadot_(DOT).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/DOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/DOT.svg" + }, "typeExtras": { "currencyIdScale": "0x0000", "currencyIdType": "InterbtcPrimitivesCurrencyId", @@ -4740,7 +5539,10 @@ "precision": 12, "type": "orml", "priceId": "kintsugi", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kintsugi_(KINT).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KINT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KINT.svg" + }, "typeExtras": { "currencyIdScale": "0x000c", "currencyIdType": "InterbtcPrimitivesCurrencyId", @@ -4755,7 +5557,10 @@ "precision": 8, "type": "orml", "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/kBTC.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/kBTC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/kBTC.svg" + }, "typeExtras": { "currencyIdScale": "0x000b", "currencyIdType": "InterbtcPrimitivesCurrencyId", @@ -4770,7 +5575,10 @@ "precision": 12, "type": "orml", "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kusama_(KSM).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KSM.svg" + }, "typeExtras": { "currencyIdScale": "0x000a", "currencyIdType": "InterbtcPrimitivesCurrencyId", @@ -4785,7 +5593,10 @@ "precision": 10, "type": "orml", "priceId": "liquid-staking-dot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/lDOT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/LDOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/LDOT.svg" + }, "typeExtras": { "currencyIdScale": "0x0101000000", "currencyIdType": "InterbtcPrimitivesCurrencyId", @@ -4800,7 +5611,10 @@ "precision": 6, "type": "orml", "priceId": "tether", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDT.svg" + }, "typeExtras": { "currencyIdScale": "0x0102000000", "currencyIdType": "InterbtcPrimitivesCurrencyId", @@ -4814,7 +5628,10 @@ "symbol": "qiBTC", "precision": 8, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/iBTC.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/qiBTC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/qiBTC.svg" + }, "typeExtras": { "currencyIdScale": "0x0201000000", "currencyIdType": "InterbtcPrimitivesCurrencyId", @@ -4828,7 +5645,10 @@ "symbol": "qUSDT", "precision": 6, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/qUSDT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/qUSDT.svg" + }, "typeExtras": { "currencyIdScale": "0x0203000000", "currencyIdType": "InterbtcPrimitivesCurrencyId", @@ -4842,7 +5662,10 @@ "symbol": "qDOT", "precision": 10, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Polkadot_(DOT).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/qDOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/qDOT.svg" + }, "typeExtras": { "currencyIdScale": "0x0202000000", "currencyIdType": "InterbtcPrimitivesCurrencyId", @@ -4881,6 +5704,14 @@ "url": "wss://phala-rpc.dwellir.com", "name": "Dwellir node" }, + { + "url": "wss://rpc.helikon.io/phala", + "name": "Helikon node" + }, + { + "url": "wss://phala.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, { "url": "wss://api.phala.network/ws", "name": "Phala node" @@ -4888,10 +5719,6 @@ { "url": "wss://phala.public.curie.radiumblock.co/ws", "name": "RadiumBlock node" - }, - { - "url": "wss://phala.api.onfinality.io/public-ws", - "name": "OnFinality node" } ], "assets": [ @@ -4902,7 +5729,10 @@ "precision": 12, "type": "native", "priceId": "pha", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Phala_(PHA).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PHA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PHA.svg" + } } ], "explorers": [ @@ -4948,7 +5778,10 @@ "precision": 10, "type": "native", "priceId": "turing-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Turing_(TUR).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/TUR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/TUR.svg" + } }, { "name": "Kusama", @@ -4957,7 +5790,10 @@ "precision": 12, "type": "orml", "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kusama_(KSM).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KSM.svg" + }, "typeExtras": { "currencyIdScale": "0x01000000", "currencyIdType": "u32", @@ -4972,7 +5808,10 @@ "precision": 12, "type": "orml", "priceId": "ausd-seed-karura", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/aSEED-Kusama.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/aSEEDk.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/aSEEDk.svg" + }, "typeExtras": { "currencyIdScale": "0x02000000", "currencyIdType": "u32", @@ -4987,7 +5826,10 @@ "precision": 12, "type": "orml", "priceId": "karura", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Karura_(KAR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KAR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KAR.svg" + }, "typeExtras": { "currencyIdScale": "0x03000000", "currencyIdType": "u32", @@ -5002,7 +5844,10 @@ "precision": 12, "type": "orml", "priceId": "liquid-ksm", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/lKSM.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/LKSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/LKSM.svg" + }, "typeExtras": { "currencyIdScale": "0x04000000", "currencyIdType": "u32", @@ -5016,7 +5861,10 @@ "symbol": "HKO", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/HKO.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/HKO.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/HKO.svg" + }, "typeExtras": { "currencyIdScale": "0x05000000", "currencyIdType": "u32", @@ -5030,7 +5878,10 @@ "symbol": "sKSM", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/sKSM.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/sKSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/sKSM.svg" + }, "typeExtras": { "currencyIdScale": "0x06000000", "currencyIdType": "u32", @@ -5045,7 +5896,10 @@ "precision": 12, "type": "orml", "priceId": "pha", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Phala_(PHA).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PHA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PHA.svg" + }, "typeExtras": { "currencyIdScale": "0x07000000", "currencyIdType": "u32", @@ -5102,7 +5956,10 @@ "precision": 12, "type": "native", "priceId": "aleph-zero", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Aleph_Zero_(AZERO).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/AZERO.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/AZERO.svg" + } } ], "explorers": [ @@ -5164,7 +6021,10 @@ "precision": 12, "type": "native", "priceId": "bifrost-native-coin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Bifrost_(BNC).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/BNC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/BNC.svg" + } }, { "name": "Moonbeam", @@ -5173,7 +6033,10 @@ "precision": 18, "type": "orml", "priceId": "moonbeam", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Moonbeam_(GLMR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/GLMR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/GLMR.svg" + }, "typeExtras": { "currencyIdScale": "0x0801", "currencyIdType": "BifrostPrimitivesCurrencyCurrencyId", @@ -5188,7 +6051,10 @@ "precision": 10, "type": "orml", "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Polkadot_(DOT).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/DOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/DOT.svg" + }, "typeExtras": { "currencyIdScale": "0x0800", "currencyIdType": "BifrostPrimitivesCurrencyCurrencyId", @@ -5203,7 +6069,10 @@ "precision": 6, "type": "orml", "priceId": "tether", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDT.svg" + }, "typeExtras": { "currencyIdScale": "0x0802", "currencyIdType": "BifrostPrimitivesCurrencyCurrencyId", @@ -5218,7 +6087,10 @@ "precision": 18, "type": "orml", "priceId": "astar", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Astar_(ASTR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/ASTR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/ASTR.svg" + }, "typeExtras": { "currencyIdScale": "0x0803", "currencyIdType": "BifrostPrimitivesCurrencyCurrencyId", @@ -5233,7 +6105,10 @@ "precision": 10, "type": "orml", "priceId": "voucher-dot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vDOT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vDOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vDOT.svg" + }, "typeExtras": { "currencyIdScale": "0x0900", "currencyIdType": "BifrostPrimitivesCurrencyCurrencyId", @@ -5248,7 +6123,10 @@ "precision": 18, "type": "orml", "priceId": "voucher-glmr", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vGLMR.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vGLMR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vGLMR.svg" + }, "typeExtras": { "currencyIdScale": "0x0901", "currencyIdType": "BifrostPrimitivesCurrencyCurrencyId", @@ -5262,7 +6140,10 @@ "symbol": "vFIL", "precision": 18, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vFIL.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vFIL.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vFIL.svg" + }, "typeExtras": { "currencyIdScale": "0x0904", "currencyIdType": "BifrostPrimitivesCurrencyCurrencyId", @@ -5276,7 +6157,10 @@ "symbol": "vASTR", "precision": 18, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vASTR.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vASTR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vASTR.svg" + }, "typeExtras": { "currencyIdScale": "0x0903", "currencyIdType": "BifrostPrimitivesCurrencyCurrencyId", @@ -5290,7 +6174,10 @@ "symbol": "vsDOT", "precision": 10, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vsDOT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vsDOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vsDOT.svg" + }, "typeExtras": { "currencyIdScale": "0x0a00", "currencyIdType": "BifrostPrimitivesCurrencyCurrencyId", @@ -5305,7 +6192,10 @@ "precision": 18, "type": "orml", "priceId": "manta-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Manta_(MANTA).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/MANTA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/MANTA.svg" + }, "typeExtras": { "currencyIdScale": "0x0808", "currencyIdType": "BifrostPrimitivesCurrencyCurrencyId", @@ -5319,7 +6209,10 @@ "symbol": "vMANTA", "precision": 18, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vMANTA.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vMANTA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vMANTA.svg" + }, "typeExtras": { "currencyIdScale": "0x0908", "currencyIdType": "BifrostPrimitivesCurrencyCurrencyId", @@ -5371,7 +6264,10 @@ "precision": 18, "type": "native", "priceId": "litentry", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Litentry_(LIT).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/LIT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/LIT.svg" + } } ], "explorers": [ @@ -5417,7 +6313,10 @@ "precision": 18, "type": "orml", "priceId": "mangata-x", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Mangata_X_(MGX).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/MGX.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/MGX.svg" + }, "typeExtras": { "currencyIdScale": "0x00000000", "currencyIdType": "u32", @@ -5432,7 +6331,10 @@ "precision": 12, "type": "orml", "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kusama_(KSM).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KSM.svg" + }, "typeExtras": { "currencyIdScale": "0x04000000", "currencyIdType": "u32", @@ -5447,7 +6349,10 @@ "precision": 18, "type": "orml", "priceId": "ethereum", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Ethereum_(ETH).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/ETH.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/ETH.svg" + }, "typeExtras": { "currencyIdScale": "0x01000000", "currencyIdType": "u32", @@ -5462,7 +6367,10 @@ "precision": 10, "type": "orml", "priceId": "turing-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Turing_(TUR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/TUR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/TUR.svg" + }, "typeExtras": { "currencyIdScale": "0x07000000", "currencyIdType": "u32", @@ -5477,7 +6385,10 @@ "precision": 12, "type": "orml", "priceId": "bifrost-native-coin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Bifrost_(BNC).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/BNC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/BNC.svg" + }, "typeExtras": { "currencyIdScale": "0x0e000000", "currencyIdType": "u32", @@ -5492,7 +6403,10 @@ "precision": 10, "type": "orml", "priceId": "rmrk", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/RMRK.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/RMRK.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/RMRK.svg" + }, "typeExtras": { "currencyIdScale": "0x1f000000", "currencyIdType": "u32", @@ -5507,7 +6421,10 @@ "precision": 18, "type": "orml", "priceId": "zenlink-network-token", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Zenlink_(ZLK).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/ZLK.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/ZLK.svg" + }, "typeExtras": { "currencyIdScale": "0x1a000000", "currencyIdType": "u32", @@ -5521,7 +6438,10 @@ "symbol": "vsKSM", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vsKSM.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vsKSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vsKSM.svg" + }, "typeExtras": { "currencyIdScale": "0x10000000", "currencyIdType": "u32", @@ -5536,7 +6456,10 @@ "precision": 12, "type": "orml", "priceId": "voucher-ksm", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vKSM.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vKSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vKSM.svg" + }, "typeExtras": { "currencyIdScale": "0x0f000000", "currencyIdType": "u32", @@ -5575,7 +6498,10 @@ "symbol": "IMBU", "precision": 12, "type": "native", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Imbue_(IMBU).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/IMBU.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/IMBU.svg" + } } ], "externalApi": { @@ -5608,7 +6534,10 @@ "symbol": "TNKR", "precision": 12, "type": "native", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Tinkernet_(TNKR).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/TNKR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/TNKR.svg" + } } ], "externalApi": { @@ -5641,7 +6570,10 @@ "symbol": "AMPE", "precision": 12, "type": "native", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Amplitude_(AMPE).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/AMPE.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/AMPE.svg" + } }, { "name": "Kusama", @@ -5650,7 +6582,10 @@ "precision": 12, "type": "orml", "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kusama_(KSM).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KSM.svg" + }, "typeExtras": { "currencyIdScale": "0x0100", "currencyIdType": "SpacewalkPrimitivesCurrencyId", @@ -5665,7 +6600,10 @@ "precision": 6, "type": "orml", "priceId": "tether", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDT.svg" + }, "typeExtras": { "currencyIdScale": "0x0101", "currencyIdType": "SpacewalkPrimitivesCurrencyId", @@ -5705,7 +6643,10 @@ "precision": 12, "type": "native", "priceId": "pendulum-chain", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Pendulum_(PEN).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PEN.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PEN.svg" + } }, { "name": "Polkadot", @@ -5714,7 +6655,10 @@ "precision": 10, "type": "orml", "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Polkadot_(DOT).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/DOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/DOT.svg" + }, "typeExtras": { "currencyIdScale": "0x0100", "currencyIdType": "SpacewalkPrimitivesCurrencyId", @@ -5729,7 +6673,10 @@ "precision": 6, "type": "orml", "priceId": "tether", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDT.svg" + }, "typeExtras": { "currencyIdScale": "0x0101", "currencyIdType": "SpacewalkPrimitivesCurrencyId", @@ -5744,7 +6691,10 @@ "precision": 6, "type": "orml", "priceId": "usd-coin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDC.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDC.svg" + }, "typeExtras": { "currencyIdScale": "0x0102", "currencyIdType": "SpacewalkPrimitivesCurrencyId", @@ -5759,7 +6709,10 @@ "precision": 18, "type": "orml", "priceId": "moonbeam", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Moonbeam_(GLMR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/GLMR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/GLMR.svg" + }, "typeExtras": { "currencyIdScale": "0x0106", "currencyIdType": "SpacewalkPrimitivesCurrencyId", @@ -5773,7 +6726,10 @@ "symbol": "PINK", "precision": 10, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Pink.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PINK.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PINK.svg" + }, "typeExtras": { "currencyIdScale": "0x0107", "currencyIdType": "SpacewalkPrimitivesCurrencyId", @@ -5788,13 +6744,88 @@ "precision": 12, "type": "orml", "priceId": "hydradx", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/HydraDX_(HDX).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/HDX.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/HDX.svg" + }, "typeExtras": { "currencyIdScale": "0x0108", "currencyIdType": "SpacewalkPrimitivesCurrencyId", "existentialDeposit": "1000", "transfersEnabled": true } + }, + { + "name": "Astar", + "assetId": 14, + "symbol": "ASTR", + "precision": 18, + "type": "orml", + "priceId": "astar", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/ASTR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/ASTR.svg" + }, + "typeExtras": { + "currencyIdScale": "0x0109", + "currencyIdType": "SpacewalkPrimitivesCurrencyId", + "existentialDeposit": "1000000", + "transfersEnabled": true + } + }, + { + "name": "vDOT", + "assetId": 15, + "symbol": "vDOT", + "precision": 10, + "type": "orml", + "priceId": "voucher-dot", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vDOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vDOT.svg" + }, + "typeExtras": { + "currencyIdScale": "0x010a", + "currencyIdType": "SpacewalkPrimitivesCurrencyId", + "existentialDeposit": "1000000", + "transfersEnabled": true + } + }, + { + "name": "Bifrost", + "assetId": 16, + "symbol": "BNC", + "precision": 12, + "type": "orml", + "priceId": "bifrost-native-coin", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/BNC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/BNC.svg" + }, + "typeExtras": { + "currencyIdScale": "0x010b", + "currencyIdType": "SpacewalkPrimitivesCurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "name": "Should be included in scripts/data/assetsNameMap", + "assetId": 17, + "symbol": "USDC.axl", + "precision": 6, + "type": "orml", + "priceId": "axlusdc", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDCaxl.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDCaxl.svg" + }, + "typeExtras": { + "currencyIdScale": "0x010c", + "currencyIdType": "SpacewalkPrimitivesCurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } } ], "explorers": [ @@ -5839,7 +6870,10 @@ "precision": 9, "type": "native", "priceId": "bittensor", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Bittensor_(TAO).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/TAO_bittensor.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/TAO_bittensor.svg" + } } ], "explorers": [ @@ -5884,7 +6918,10 @@ "precision": 12, "type": "native", "priceId": "vara-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Vara.svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/VARA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/VARA.svg" + } } ], "explorers": [ @@ -5945,7 +6982,10 @@ "precision": 10, "type": "native", "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Polkadot_(DOT).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/DOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/DOT.svg" + } } ], "explorers": [ @@ -5995,7 +7035,10 @@ "precision": 12, "type": "native", "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kusama_(KSM).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KSM.svg" + } } ], "explorers": [ @@ -6053,7 +7096,10 @@ "precision": 10, "type": "native", "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Polkadot_(DOT).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/DOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/DOT.svg" + } } ], "explorers": [ @@ -6109,7 +7155,10 @@ "precision": 10, "type": "native", "priceId": "polimec", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/PLMC.svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PLMC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PLMC.svg" + } } ], "explorers": [ @@ -6148,28 +7197,16 @@ ], "nodes": [ { - "url": "wss://avail-mainnet.public.blastapi.io/", - "name": "Bware node" - }, - { - "url": "wss://avail-rpc.rubynodes.io/", - "name": "RubyNode node" - }, - { - "url": "wss://avail-us.brightlystake.com", - "name": "BrightlyStake node" + "url": "wss://zeref-api.slowops.xyz/ws", + "name": "Turing node" }, { - "url": "wss://rpc-avail.globalstake.io", - "name": "GlobalStake node" + "url": "wss://avail-mainnet.public.blastapi.io/", + "name": "Blastapi node" }, { "url": "wss://avail.rpc.bountyblok.io", "name": "Bountyblok node" - }, - { - "url": "wss://avail.public.curie.radiumblock.co/ws", - "name": "RadiumBlock node" } ], "assets": [ @@ -6180,7 +7217,10 @@ "precision": 18, "type": "native", "priceId": "avail", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Avail_(AVAIL).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/AVAIL.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/AVAIL.svg" + } } ], "explorers": [ @@ -6255,7 +7295,10 @@ "precision": 12, "type": "native", "staking": "relaychain", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Westend_(WND).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/WND.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/WND.svg" + } } ], "explorers": [ diff --git a/src/renderer/shared/config/chains/chains_dev.json b/src/renderer/shared/config/chains/chains_dev.json index e89e6b17a2..b588e05028 100644 --- a/src/renderer/shared/config/chains/chains_dev.json +++ b/src/renderer/shared/config/chains/chains_dev.json @@ -58,7 +58,10 @@ "type": "native", "priceId": "polkadot", "staking": "relaychain", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Polkadot_(DOT).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/DOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/DOT.svg" + } } ], "explorers": [ @@ -80,13 +83,13 @@ "staking": [ { "type": "subquery", - "url": "https://gateway.subquery.network/query/0x1a" + "url": "https://subquery-history-polkadot-prod.novasama-tech.org" } ], "history": [ { "type": "subquery", - "url": "https://gateway.subquery.network/query/0x1a" + "url": "https://subquery-history-polkadot-prod.novasama-tech.org" } ], "governance-delegations": [ @@ -162,7 +165,10 @@ "type": "native", "priceId": "kusama", "staking": "relaychain", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kusama_(KSM).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KSM.svg" + } } ], "explorers": [ @@ -184,13 +190,13 @@ "staking": [ { "type": "subquery", - "url": "https://gateway.subquery.network/query/0x1b" + "url": "https://subquery-history-kusama-prod.novasama-tech.org" } ], "history": [ { "type": "subquery", - "url": "https://gateway.subquery.network/query/0x1b" + "url": "https://subquery-history-kusama-prod.novasama-tech.org" } ], "governance-delegations": [ @@ -250,7 +256,10 @@ "precision": 12, "type": "native", "staking": "relaychain", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Westend_(WND).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/WND.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/WND.svg" + } } ], "explorers": [ @@ -312,7 +321,10 @@ "symbol": "WND", "precision": 12, "type": "native", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Westend_(WND).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/WND.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/WND.svg" + } }, { "name": "Siri", @@ -320,7 +332,10 @@ "symbol": "SIRI", "precision": 10, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Default.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/Default.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/Default.svg" + }, "typeExtras": { "assetId": "81" } @@ -331,7 +346,10 @@ "symbol": "JOE", "precision": 3, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Default.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/Default.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/Default.svg" + }, "typeExtras": { "assetId": "8", "isSufficient": true @@ -388,7 +406,10 @@ "precision": 12, "type": "native", "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kusama_(KSM).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KSM.svg" + } }, { "name": "Remark", @@ -397,7 +418,10 @@ "precision": 10, "type": "statemine", "priceId": "rmrk", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/RMRK.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/RMRK.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/RMRK.svg" + }, "typeExtras": { "assetId": "8", "isSufficient": true @@ -409,7 +433,10 @@ "symbol": "CHAOS", "precision": 10, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/CHAOS.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/CHAOS.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/CHAOS.svg" + }, "typeExtras": { "assetId": "69420" } @@ -420,7 +447,10 @@ "symbol": "CHRWNA", "precision": 10, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/CHRWNA.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/CHRWNA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/CHRWNA.svg" + }, "typeExtras": { "assetId": "567" } @@ -431,7 +461,10 @@ "symbol": "SHIBATALES", "precision": 0, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Default.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/Default.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/Default.svg" + }, "typeExtras": { "assetId": "88888" } @@ -442,7 +475,10 @@ "symbol": "BILLCOIN", "precision": 8, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/BILLCOIN.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/BILLCOIN.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/BILLCOIN.svg" + }, "typeExtras": { "assetId": "223" } @@ -454,7 +490,10 @@ "precision": 6, "type": "statemine", "priceId": "tether", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDT.svg" + }, "typeExtras": { "assetId": "1984", "isSufficient": true @@ -531,7 +570,10 @@ "precision": 12, "type": "native", "priceId": "karura", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Karura_(KAR).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KAR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KAR.svg" + } }, { "name": "Acala SEED", @@ -540,7 +582,10 @@ "precision": 12, "type": "orml", "priceId": "ausd-seed-karura", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/aSEED-Kusama.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/aSEEDk.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/aSEEDk.svg" + }, "typeExtras": { "currencyIdScale": "0x0081", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -555,7 +600,10 @@ "precision": 12, "type": "orml", "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kusama_(KSM).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KSM.svg" + }, "typeExtras": { "currencyIdScale": "0x0082", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -570,7 +618,10 @@ "precision": 10, "type": "orml", "priceId": "rmrk", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/RMRK.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/RMRK.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/RMRK.svg" + }, "typeExtras": { "currencyIdScale": "0x050000", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -585,7 +636,10 @@ "precision": 12, "type": "orml", "priceId": "bifrost-native-coin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Bifrost_(BNC).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/BNC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/BNC.svg" + }, "typeExtras": { "currencyIdScale": "0x00a8", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -600,7 +654,10 @@ "precision": 12, "type": "orml", "priceId": "liquid-ksm", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/lKSM.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/LKSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/LKSM.svg" + }, "typeExtras": { "currencyIdScale": "0x0083", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -615,7 +672,10 @@ "precision": 12, "type": "orml", "priceId": "pha", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Phala_(PHA).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PHA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PHA.svg" + }, "typeExtras": { "currencyIdScale": "0x00aa", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -630,7 +690,10 @@ "precision": 12, "type": "orml", "priceId": "kintsugi", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kintsugi_(KINT).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KINT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KINT.svg" + }, "typeExtras": { "currencyIdScale": "0x00ab", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -645,7 +708,10 @@ "precision": 8, "type": "orml", "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/kBTC.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/kBTC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/kBTC.svg" + }, "typeExtras": { "currencyIdScale": "0x00ac", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -659,7 +725,10 @@ "symbol": "TAI", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Taiga_(TAI).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/TAI.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/TAI.svg" + }, "typeExtras": { "currencyIdScale": "0x0084", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -673,7 +742,10 @@ "symbol": "vsKSM", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vsKSM.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vsKSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vsKSM.svg" + }, "typeExtras": { "currencyIdScale": "0x00a9", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -687,7 +759,10 @@ "symbol": "taiKSM", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/taiKSM.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/taiKSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/taiKSM.svg" + }, "typeExtras": { "currencyIdScale": "0x0300000000", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -702,7 +777,10 @@ "precision": 18, "type": "orml", "priceId": "quartz", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Quartz_(QTZ).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/QTZ.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/QTZ.svg" + }, "typeExtras": { "currencyIdScale": "0x050200", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -717,7 +795,10 @@ "precision": 18, "type": "orml", "priceId": "moonriver", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Moonriver_(MOVR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/MOVR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/MOVR.svg" + }, "typeExtras": { "currencyIdScale": "0x050300", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -731,7 +812,10 @@ "symbol": "HKO", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/HKO.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/HKO.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/HKO.svg" + }, "typeExtras": { "currencyIdScale": "0x050400", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -746,7 +830,10 @@ "precision": 12, "type": "orml", "priceId": "crust-storage-market", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Crust_Shadow_(CSM).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/CSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/CSM.svg" + }, "typeExtras": { "currencyIdScale": "0x050500", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -761,7 +848,10 @@ "precision": 6, "type": "orml", "priceId": "tether", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDT.svg" + }, "typeExtras": { "currencyIdScale": "0x050700", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -776,7 +866,10 @@ "precision": 12, "type": "orml", "priceId": "calamari-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Calamari_(KMA).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KMA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KMA.svg" + }, "typeExtras": { "currencyIdScale": "0x050a00", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -791,7 +884,10 @@ "precision": 12, "type": "orml", "priceId": "integritee", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Integritee_Parachain_(TEER).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/TEER.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/TEER.svg" + }, "typeExtras": { "currencyIdScale": "0x050800", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -805,7 +901,10 @@ "symbol": "KICO", "precision": 14, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/KICO_(KICO).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KICO.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KICO.svg" + }, "typeExtras": { "currencyIdScale": "0x050600", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -820,7 +919,10 @@ "precision": 18, "type": "orml", "priceId": "metaverse-network-pioneer", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Bit.Country_Pioneer_(NEER).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/NEER.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/NEER.svg" + }, "typeExtras": { "currencyIdScale": "0x050900", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -835,7 +937,10 @@ "precision": 12, "type": "orml", "priceId": "basilisk", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Basilisk_(BSX).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/BSX.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/BSX.svg" + }, "typeExtras": { "currencyIdScale": "0x050b00", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -850,7 +955,10 @@ "precision": 18, "type": "orml", "priceId": "altair", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Altair_(AIR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/AIR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/AIR.svg" + }, "typeExtras": { "currencyIdScale": "0x050c00", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -865,7 +973,10 @@ "precision": 9, "type": "orml", "priceId": "genshiro", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Genshiro_(GENS).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/GENS.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/GENS.svg" + }, "typeExtras": { "currencyIdScale": "0x050e00", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -880,7 +991,10 @@ "precision": 9, "type": "orml", "priceId": "tether", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/EQD.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/EQD.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/EQD.svg" + }, "typeExtras": { "currencyIdScale": "0x050f00", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -895,7 +1009,10 @@ "precision": 18, "type": "orml", "priceId": "darwinia-crab-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Crab_(CRAB).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/CRAB.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/CRAB.svg" + }, "typeExtras": { "currencyIdScale": "0x050d00", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -964,7 +1081,10 @@ "precision": 18, "type": "native", "priceId": "moonriver", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Moonriver_(MOVR).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/MOVR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/MOVR.svg" + } }, { "name": "Remark", @@ -973,7 +1093,10 @@ "precision": 10, "type": "statemine", "priceId": "rmrk", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/RMRK.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/RMRK.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/RMRK.svg" + }, "typeExtras": { "assetId": "182365888117048807484804376330534607370", "isSufficient": true @@ -986,7 +1109,10 @@ "precision": 12, "type": "statemine", "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kusama_(KSM).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KSM.svg" + }, "typeExtras": { "assetId": "42259045809535163221576417993425387648", "isSufficient": true @@ -999,7 +1125,10 @@ "precision": 12, "type": "statemine", "priceId": "kintsugi", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kintsugi_(KINT).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KINT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KINT.svg" + }, "typeExtras": { "assetId": "175400718394635817552109270754364440562", "isSufficient": true @@ -1012,7 +1141,10 @@ "precision": 12, "type": "statemine", "priceId": "karura", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Karura_(KAR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KAR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KAR.svg" + }, "typeExtras": { "assetId": "10810581592933651521121702237638664357", "isSufficient": true @@ -1025,7 +1157,10 @@ "precision": 12, "type": "statemine", "priceId": "bifrost-native-coin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Bifrost_(BNC).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/BNC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/BNC.svg" + }, "typeExtras": { "assetId": "319623561105283008236062145480775032445", "isSufficient": true @@ -1038,7 +1173,10 @@ "precision": 8, "type": "statemine", "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/kBTC.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/kBTC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/kBTC.svg" + }, "typeExtras": { "assetId": "328179947973504579459046439826496046832", "isSufficient": true @@ -1051,7 +1189,10 @@ "precision": 6, "type": "statemine", "priceId": "tether", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDT.svg" + }, "typeExtras": { "assetId": "311091173110107856861649819128533077277", "isSufficient": true @@ -1064,7 +1205,10 @@ "precision": 12, "type": "statemine", "priceId": "ausd-seed-karura", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/aSEED-Kusama.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/aSEEDk.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/aSEEDk.svg" + }, "typeExtras": { "assetId": "214920334981412447805621250067209749032", "isSufficient": true @@ -1077,7 +1221,10 @@ "precision": 12, "type": "statemine", "priceId": "crust-storage-market", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Crust_Shadow_(CSM).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/CSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/CSM.svg" + }, "typeExtras": { "assetId": "108457044225666871745333730479173774551", "isSufficient": true @@ -1090,7 +1237,10 @@ "precision": 12, "type": "statemine", "priceId": "pha", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Phala_(PHA).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PHA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PHA.svg" + }, "typeExtras": { "assetId": "189307976387032586987344677431204943363", "isSufficient": true @@ -1102,7 +1252,10 @@ "symbol": "xcHKO", "precision": 12, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/HKO.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/HKO.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/HKO.svg" + }, "typeExtras": { "assetId": "76100021443485661246318545281171740067", "isSufficient": true @@ -1115,7 +1268,10 @@ "precision": 12, "type": "statemine", "priceId": "calamari-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Calamari_(KMA).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KMA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KMA.svg" + }, "typeExtras": { "assetId": "213357169630950964874127107356898319277", "isSufficient": true @@ -1128,7 +1284,10 @@ "precision": 18, "type": "statemine", "priceId": "darwinia-crab-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Crab_(CRAB).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/CRAB.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/CRAB.svg" + }, "typeExtras": { "assetId": "173481220575862801646329923366065693029", "isSufficient": true @@ -1141,7 +1300,10 @@ "precision": 12, "type": "statemine", "priceId": "integritee", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Integritee_Parachain_(TEER).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/TEER.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/TEER.svg" + }, "typeExtras": { "assetId": "105075627293246237499203909093923548958", "isSufficient": true @@ -1154,7 +1316,10 @@ "precision": 12, "type": "statemine", "priceId": "litentry", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Litentry_(LIT).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/LIT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/LIT.svg" + }, "typeExtras": { "assetId": "65216491554813189869575508812319036608", "isSufficient": true @@ -1167,7 +1332,10 @@ "precision": 18, "type": "statemine", "priceId": "shiden", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Shiden_(SDN).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/SDN.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/SDN.svg" + }, "typeExtras": { "assetId": "16797826370226091782818345603793389938", "isSufficient": true @@ -1180,7 +1348,10 @@ "precision": 9, "type": "statemine", "priceId": "robonomics-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Robonomics_(XRT).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/XRT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/XRT.svg" + }, "typeExtras": { "assetId": "108036400430056508975016746969135344601", "isSufficient": true @@ -1193,7 +1364,10 @@ "precision": 12, "type": "statemine", "priceId": "voucher-ksm", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vKSM.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vKSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vKSM.svg" + }, "typeExtras": { "assetId": "264344629840762281112027368930249420542", "isSufficient": true @@ -1205,7 +1379,10 @@ "symbol": "xcvBNC", "precision": 12, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vBNC.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vBNC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vBNC.svg" + }, "typeExtras": { "assetId": "72145018963825376852137222787619937732", "isSufficient": true @@ -1217,7 +1394,10 @@ "symbol": "xcvMOVR", "precision": 18, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vMOVR.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vMOVR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vMOVR.svg" + }, "typeExtras": { "assetId": "203223821023327994093278529517083736593", "isSufficient": true @@ -1230,7 +1410,10 @@ "precision": 18, "type": "statemine", "priceId": "mangata-x", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Mangata_X_(MGX).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/MGX.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/MGX.svg" + }, "typeExtras": { "assetId": "118095707745084482624853002839493125353", "isSufficient": true @@ -1243,7 +1426,10 @@ "precision": 10, "type": "statemine", "priceId": "turing-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Turing_(TUR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/TUR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/TUR.svg" + }, "typeExtras": { "assetId": "133300872918374599700079037156071917454", "isSufficient": true @@ -1329,7 +1515,10 @@ "symbol": "DEV", "precision": 18, "type": "native", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Default.svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/Default.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/Default.svg" + } }, { "name": "Test token", @@ -1337,7 +1526,10 @@ "symbol": "xcUNIT", "precision": 12, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Default.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/Default.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/Default.svg" + }, "typeExtras": { "assetId": "42259045809535163221576417993425387648", "isSufficient": true @@ -1387,7 +1579,10 @@ "precision": 18, "type": "native", "priceId": "shiden", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Shiden_(SDN).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/SDN.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/SDN.svg" + } }, { "name": "Phala", @@ -1396,7 +1591,10 @@ "precision": 12, "type": "statemine", "priceId": "pha", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Phala_(PHA).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PHA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PHA.svg" + }, "typeExtras": { "assetId": "18446744073709551623", "isSufficient": true @@ -1409,7 +1607,10 @@ "precision": 12, "type": "statemine", "priceId": "liquid-ksm", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/lKSM.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/LKSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/LKSM.svg" + }, "typeExtras": { "assetId": "18446744073709551619", "isSufficient": true @@ -1422,7 +1623,10 @@ "precision": 18, "type": "statemine", "priceId": "moonriver", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Moonriver_(MOVR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/MOVR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/MOVR.svg" + }, "typeExtras": { "assetId": "18446744073709551620", "isSufficient": true @@ -1435,7 +1639,10 @@ "precision": 8, "type": "statemine", "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/kBTC.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/kBTC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/kBTC.svg" + }, "typeExtras": { "assetId": "18446744073709551621", "isSufficient": true @@ -1448,7 +1655,10 @@ "precision": 12, "type": "statemine", "priceId": "kintsugi", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kintsugi_(KINT).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KINT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KINT.svg" + }, "typeExtras": { "assetId": "18446744073709551622", "isSufficient": true @@ -1461,7 +1671,10 @@ "precision": 12, "type": "statemine", "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kusama_(KSM).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KSM.svg" + }, "typeExtras": { "assetId": "340282366920938463463374607431768211455", "isSufficient": true @@ -1474,7 +1687,10 @@ "precision": 12, "type": "statemine", "priceId": "ausd-seed-karura", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/aSEED-Kusama.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/aSEEDk.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/aSEEDk.svg" + }, "typeExtras": { "assetId": "18446744073709551616", "isSufficient": true @@ -1487,7 +1703,10 @@ "precision": 12, "type": "statemine", "priceId": "crust-storage-market", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Crust_Shadow_(CSM).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/CSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/CSM.svg" + }, "typeExtras": { "assetId": "18446744073709551624", "isSufficient": true @@ -1500,7 +1719,10 @@ "precision": 12, "type": "statemine", "priceId": "karura", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Karura_(KAR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KAR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KAR.svg" + }, "typeExtras": { "assetId": "18446744073709551618", "isSufficient": true @@ -1513,7 +1735,10 @@ "precision": 6, "type": "statemine", "priceId": "tether", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDT.svg" + }, "typeExtras": { "assetId": "4294969280", "isSufficient": true @@ -1526,7 +1751,10 @@ "precision": 12, "type": "statemine", "priceId": "voucher-ksm", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vKSM.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vKSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vKSM.svg" + }, "typeExtras": { "assetId": "18446744073709551628", "isSufficient": true @@ -1539,7 +1767,10 @@ "precision": 12, "type": "statemine", "priceId": "bifrost-native-coin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Bifrost_(BNC).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/BNC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/BNC.svg" + }, "typeExtras": { "assetId": "18446744073709551627", "isSufficient": true @@ -1593,7 +1824,10 @@ "precision": 12, "type": "native", "priceId": "bifrost-native-coin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Bifrost_(BNC).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/BNC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/BNC.svg" + } }, { "name": "Kusama", @@ -1602,7 +1836,10 @@ "precision": 12, "type": "orml", "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kusama_(KSM).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KSM.svg" + }, "typeExtras": { "currencyIdScale": "0x0204", "currencyIdType": "BifrostPrimitivesCurrencyCurrencyId", @@ -1617,7 +1854,10 @@ "precision": 10, "type": "orml", "priceId": "rmrk", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/RMRK.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/RMRK.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/RMRK.svg" + }, "typeExtras": { "currencyIdScale": "0x0209", "currencyIdType": "BifrostPrimitivesCurrencyCurrencyId", @@ -1632,7 +1872,10 @@ "precision": 18, "type": "orml", "priceId": "zenlink-network-token", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Zenlink_(ZLK).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/ZLK.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/ZLK.svg" + }, "typeExtras": { "currencyIdScale": "0x0207", "currencyIdType": "BifrostPrimitivesCurrencyCurrencyId", @@ -1647,7 +1890,10 @@ "precision": 12, "type": "orml", "priceId": "karura", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Karura_(KAR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KAR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KAR.svg" + }, "typeExtras": { "currencyIdScale": "0x0206", "currencyIdType": "BifrostPrimitivesCurrencyCurrencyId", @@ -1662,7 +1908,10 @@ "precision": 12, "type": "orml", "priceId": "ausd-seed-karura", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/aSEED-Kusama.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/aSEEDk.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/aSEEDk.svg" + }, "typeExtras": { "currencyIdScale": "0x0302", "currencyIdType": "BifrostPrimitivesCurrencyCurrencyId", @@ -1676,7 +1925,10 @@ "symbol": "vsKSM", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vsKSM.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vsKSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vsKSM.svg" + }, "typeExtras": { "currencyIdScale": "0x0404", "currencyIdType": "BifrostPrimitivesCurrencyCurrencyId", @@ -1691,7 +1943,10 @@ "precision": 6, "type": "orml", "priceId": "tether", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDT.svg" + }, "typeExtras": { "currencyIdScale": "0x0800", "currencyIdType": "BifrostPrimitivesCurrencyCurrencyId", @@ -1706,7 +1961,10 @@ "precision": 18, "type": "orml", "priceId": "moonriver", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Moonriver_(MOVR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/MOVR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/MOVR.svg" + }, "typeExtras": { "currencyIdScale": "0x020a", "currencyIdType": "BifrostPrimitivesCurrencyCurrencyId", @@ -1721,7 +1979,10 @@ "precision": 12, "type": "orml", "priceId": "pha", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Phala_(PHA).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PHA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PHA.svg" + }, "typeExtras": { "currencyIdScale": "0x0208", "currencyIdType": "BifrostPrimitivesCurrencyCurrencyId", @@ -1736,7 +1997,10 @@ "precision": 12, "type": "orml", "priceId": "voucher-ksm", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vKSM.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vKSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vKSM.svg" + }, "typeExtras": { "currencyIdScale": "0x0104", "currencyIdType": "BifrostPrimitivesCurrencyCurrencyId", @@ -1751,7 +2015,10 @@ "precision": 8, "type": "orml", "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/kBTC.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/kBTC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/kBTC.svg" + }, "typeExtras": { "currencyIdScale": "0x0802", "currencyIdType": "BifrostPrimitivesCurrencyCurrencyId", @@ -1765,7 +2032,10 @@ "symbol": "vBNC", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vBNC.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vBNC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vBNC.svg" + }, "typeExtras": { "currencyIdScale": "0x0101", "currencyIdType": "BifrostPrimitivesCurrencyCurrencyId", @@ -1779,7 +2049,10 @@ "symbol": "vMOVR", "precision": 18, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vMOVR.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vMOVR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vMOVR.svg" + }, "typeExtras": { "currencyIdScale": "0x010a", "currencyIdType": "BifrostPrimitivesCurrencyCurrencyId", @@ -1837,7 +2110,10 @@ "precision": 12, "type": "orml", "priceId": "kintsugi", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kintsugi_(KINT).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KINT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KINT.svg" + }, "typeExtras": { "currencyIdScale": "0x000c", "currencyIdType": "InterbtcPrimitivesCurrencyId", @@ -1852,7 +2128,10 @@ "precision": 8, "type": "orml", "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/kBTC.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/kBTC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/kBTC.svg" + }, "typeExtras": { "currencyIdScale": "0x000b", "currencyIdType": "InterbtcPrimitivesCurrencyId", @@ -1867,7 +2146,10 @@ "precision": 12, "type": "orml", "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kusama_(KSM).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KSM.svg" + }, "typeExtras": { "currencyIdScale": "0x000a", "currencyIdType": "InterbtcPrimitivesCurrencyId", @@ -1882,7 +2164,10 @@ "precision": 12, "type": "orml", "priceId": "liquid-ksm", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/lKSM.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/LKSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/LKSM.svg" + }, "typeExtras": { "currencyIdScale": "0x0102000000", "currencyIdType": "InterbtcPrimitivesCurrencyId", @@ -1897,7 +2182,10 @@ "precision": 6, "type": "orml", "priceId": "tether", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDT.svg" + }, "typeExtras": { "currencyIdScale": "0x0103000000", "currencyIdType": "InterbtcPrimitivesCurrencyId", @@ -1912,7 +2200,10 @@ "precision": 12, "type": "orml", "priceId": "ausd-seed-karura", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/aSEED-Kusama.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/aSEEDk.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/aSEEDk.svg" + }, "typeExtras": { "currencyIdScale": "0x0101000000", "currencyIdType": "InterbtcPrimitivesCurrencyId", @@ -1926,7 +2217,10 @@ "symbol": "qkBTC", "precision": 8, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/kBTC.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/qkBTC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/qkBTC.svg" + }, "typeExtras": { "currencyIdScale": "0x0201000000", "currencyIdType": "InterbtcPrimitivesCurrencyId", @@ -1940,7 +2234,10 @@ "symbol": "qKSM", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kusama_(KSM).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/qKSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/qKSM.svg" + }, "typeExtras": { "currencyIdScale": "0x0202000000", "currencyIdType": "InterbtcPrimitivesCurrencyId", @@ -1954,7 +2251,10 @@ "symbol": "qUSDT", "precision": 6, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/qUSDT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/qUSDT.svg" + }, "typeExtras": { "currencyIdScale": "0x0203000000", "currencyIdType": "InterbtcPrimitivesCurrencyId", @@ -2005,7 +2305,10 @@ "symbol": "HKO", "precision": 12, "type": "native", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/HKO.svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/HKO.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/HKO.svg" + } }, { "name": "Kusama", @@ -2014,7 +2317,10 @@ "precision": 12, "type": "statemine", "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kusama_(KSM).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KSM.svg" + }, "typeExtras": { "assetId": "100", "isSufficient": true @@ -2027,7 +2333,10 @@ "precision": 12, "type": "statemine", "priceId": "ausd-seed-karura", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/aSEED-Kusama.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/aSEEDk.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/aSEEDk.svg" + }, "typeExtras": { "assetId": "103", "isSufficient": true @@ -2040,7 +2349,10 @@ "precision": 12, "type": "statemine", "priceId": "liquid-ksm", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/lKSM.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/LKSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/LKSM.svg" + }, "typeExtras": { "assetId": "109", "isSufficient": true @@ -2052,7 +2364,10 @@ "symbol": "sKSM", "precision": 12, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/sKSM.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/sKSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/sKSM.svg" + }, "typeExtras": { "assetId": "1000", "isSufficient": true @@ -2065,7 +2380,10 @@ "precision": 12, "type": "statemine", "priceId": "karura", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Karura_(KAR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KAR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KAR.svg" + }, "typeExtras": { "assetId": "107", "isSufficient": true @@ -2078,7 +2396,10 @@ "precision": 18, "type": "statemine", "priceId": "moonriver", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Moonriver_(MOVR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/MOVR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/MOVR.svg" + }, "typeExtras": { "assetId": "113", "isSufficient": true @@ -2091,7 +2412,10 @@ "precision": 12, "type": "statemine", "priceId": "pha", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Phala_(PHA).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PHA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PHA.svg" + }, "typeExtras": { "assetId": "115", "isSufficient": true @@ -2104,7 +2428,10 @@ "precision": 9, "type": "statemine", "priceId": "genshiro", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Genshiro_(GENS).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/GENS.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/GENS.svg" + }, "typeExtras": { "assetId": "123" } @@ -2116,7 +2443,10 @@ "precision": 6, "type": "statemine", "priceId": "tether", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDT.svg" + }, "typeExtras": { "assetId": "102", "isSufficient": true @@ -2129,7 +2459,10 @@ "precision": 12, "type": "statemine", "priceId": "kintsugi", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kintsugi_(KINT).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KINT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KINT.svg" + }, "typeExtras": { "assetId": "119", "isSufficient": true @@ -2142,7 +2475,10 @@ "precision": 8, "type": "statemine", "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/kBTC.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/kBTC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/kBTC.svg" + }, "typeExtras": { "assetId": "121", "isSufficient": true @@ -2196,7 +2532,10 @@ "precision": 12, "type": "native", "priceId": "basilisk", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Basilisk_(BSX).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/BSX.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/BSX.svg" + } }, { "name": "Kusama", @@ -2205,7 +2544,10 @@ "precision": 12, "type": "orml", "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kusama_(KSM).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KSM.svg" + }, "typeExtras": { "currencyIdScale": "0x01000000", "currencyIdType": "u32", @@ -2220,7 +2562,10 @@ "precision": 12, "type": "orml", "priceId": "ausd-seed-karura", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/aSEED-Kusama.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/aSEEDk.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/aSEEDk.svg" + }, "typeExtras": { "currencyIdScale": "0x02000000", "currencyIdType": "u32", @@ -2234,7 +2579,10 @@ "symbol": "TNKR", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Tinkernet_(TNKR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/TNKR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/TNKR.svg" + }, "typeExtras": { "currencyIdScale": "0x06000000", "currencyIdType": "u32", @@ -2249,7 +2597,10 @@ "precision": 6, "type": "orml", "priceId": "tether", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDT.svg" + }, "typeExtras": { "currencyIdScale": "0x0e000000", "currencyIdType": "u32", @@ -2264,7 +2615,10 @@ "precision": 9, "type": "orml", "priceId": "robonomics-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Robonomics_(XRT).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/XRT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/XRT.svg" + }, "typeExtras": { "currencyIdScale": "0x10000000", "currencyIdType": "u32", @@ -2316,7 +2670,10 @@ "precision": 18, "type": "native", "priceId": "altair", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Altair_(AIR).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/AIR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/AIR.svg" + } } ], "explorers": [ @@ -2349,21 +2706,25 @@ "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/chains/Khala.svg", "options": [], "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://rpc.helikon.io/khala", + "name": "Helikon node" }, { "url": "wss://khala.api.onfinality.io/public-ws", "name": "OnFinality node" + }, + { + "url": "wss://khala-api.phala.network/ws", + "name": "Phala node" + }, + { + "url": "wss://khala.public.curie.radiumblock.co/ws", + "name": "RadiumBlock node" } ], "assets": [ @@ -2374,7 +2735,10 @@ "precision": 12, "type": "native", "priceId": "pha", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Phala_(PHA).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PHA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PHA.svg" + } }, { "name": "Kusama", @@ -2383,7 +2747,10 @@ "precision": 12, "type": "statemine", "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kusama_(KSM).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KSM.svg" + }, "typeExtras": { "assetId": "0", "isSufficient": true @@ -2396,7 +2763,10 @@ "precision": 12, "type": "statemine", "priceId": "karura", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Karura_(KAR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KAR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KAR.svg" + }, "typeExtras": { "assetId": "1", "isSufficient": true @@ -2409,7 +2779,10 @@ "precision": 12, "type": "statemine", "priceId": "bifrost-native-coin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Bifrost_(BNC).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/BNC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/BNC.svg" + }, "typeExtras": { "assetId": "2", "isSufficient": true @@ -2422,7 +2795,10 @@ "precision": 18, "type": "statemine", "priceId": "zenlink-network-token", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Zenlink_(ZLK).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/ZLK.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/ZLK.svg" + }, "typeExtras": { "assetId": "3", "isSufficient": true @@ -2435,7 +2811,10 @@ "precision": 12, "type": "statemine", "priceId": "ausd-seed-karura", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/aSEED-Kusama.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/aSEEDk.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/aSEEDk.svg" + }, "typeExtras": { "assetId": "4", "isSufficient": true @@ -2448,7 +2827,10 @@ "precision": 12, "type": "statemine", "priceId": "basilisk", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Basilisk_(BSX).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/BSX.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/BSX.svg" + }, "typeExtras": { "assetId": "9", "isSufficient": true @@ -2461,7 +2843,10 @@ "precision": 18, "type": "statemine", "priceId": "moonriver", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Moonriver_(MOVR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/MOVR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/MOVR.svg" + }, "typeExtras": { "assetId": "6", "isSufficient": true @@ -2473,7 +2858,10 @@ "symbol": "HKO", "precision": 12, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/HKO.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/HKO.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/HKO.svg" + }, "typeExtras": { "assetId": "7", "isSufficient": true @@ -2486,7 +2874,10 @@ "precision": 12, "type": "statemine", "priceId": "calamari-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Calamari_(KMA).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KMA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KMA.svg" + }, "typeExtras": { "assetId": "8", "isSufficient": true @@ -2499,7 +2890,10 @@ "precision": 10, "type": "statemine", "priceId": "turing-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Turing_(TUR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/TUR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/TUR.svg" + }, "typeExtras": { "assetId": "10", "isSufficient": true @@ -2512,7 +2906,10 @@ "precision": 18, "type": "statemine", "priceId": "darwinia-network-native-token", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Crab_(CRAB).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/CRAB.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/CRAB.svg" + }, "typeExtras": { "assetId": "11", "isSufficient": true @@ -2525,7 +2922,10 @@ "precision": 18, "type": "statemine", "priceId": "shiden", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Shiden_(SDN).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/SDN.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/SDN.svg" + }, "typeExtras": { "assetId": "12", "isSufficient": true @@ -2538,7 +2938,10 @@ "precision": 18, "type": "statemine", "priceId": "metaverse-network-pioneer", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Bit.Country_Pioneer_(NEER).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/NEER.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/NEER.svg" + }, "typeExtras": { "assetId": "13", "isSufficient": true @@ -2550,7 +2953,10 @@ "symbol": "BIT", "precision": 18, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/BIT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/BIT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/BIT.svg" + }, "typeExtras": { "assetId": "14", "isSufficient": true @@ -2563,7 +2969,10 @@ "precision": 12, "type": "statemine", "priceId": "picasso", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Picasso_(PICA).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PICA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PICA.svg" + }, "typeExtras": { "assetId": "15", "isSufficient": true @@ -2625,7 +3034,10 @@ "precision": 15, "type": "native", "priceId": "kilt-protocol", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kilt_(KILT).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KILT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KILT.svg" + } } ], "explorers": [ @@ -2683,7 +3095,10 @@ "precision": 18, "type": "native", "priceId": "quartz", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Quartz_(QTZ).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/QTZ.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/QTZ.svg" + } } ], "explorers": [ @@ -2753,7 +3168,10 @@ "precision": 12, "type": "native", "priceId": "acala", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Acala_(ACA).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/ACA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/ACA.svg" + } }, { "name": "Liquid DOT", @@ -2762,7 +3180,10 @@ "precision": 10, "type": "orml", "priceId": "liquid-staking-dot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/lDOT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/LDOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/LDOT.svg" + }, "typeExtras": { "currencyIdScale": "0x0003", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -2777,7 +3198,10 @@ "precision": 12, "type": "orml", "priceId": "ausd-seed-acala", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/aSEED-Polkadot.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/aSEEDp.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/aSEEDp.svg" + }, "typeExtras": { "currencyIdScale": "0x0001", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -2792,7 +3216,10 @@ "precision": 10, "type": "orml", "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Polkadot_(DOT).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/DOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/DOT.svg" + }, "typeExtras": { "currencyIdScale": "0x0002", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -2807,7 +3234,10 @@ "precision": 10, "type": "orml", "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/lcDOT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/lcDOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/lcDOT.svg" + }, "typeExtras": { "currencyIdScale": "0x040d000000", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -2822,7 +3252,10 @@ "precision": 18, "type": "orml", "priceId": "moonbeam", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Moonbeam_(GLMR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/GLMR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/GLMR.svg" + }, "typeExtras": { "currencyIdScale": "0x050000", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -2836,7 +3269,10 @@ "symbol": "PARA", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/PARA.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PARA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PARA.svg" + }, "typeExtras": { "currencyIdScale": "0x050100", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -2850,7 +3286,10 @@ "symbol": "TAP", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Tapio_(TAP).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/TAP.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/TAP.svg" + }, "typeExtras": { "currencyIdScale": "0x0004", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -2864,7 +3303,10 @@ "symbol": "tDOT", "precision": 10, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/tDOT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/tDOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/tDOT.svg" + }, "typeExtras": { "currencyIdScale": "0x0300000000", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -2879,7 +3321,10 @@ "precision": 10, "type": "orml", "priceId": "interlay", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Interlay_(INTR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/INTR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/INTR.svg" + }, "typeExtras": { "currencyIdScale": "0x050400", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -2894,7 +3339,10 @@ "precision": 18, "type": "orml", "priceId": "astar", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Astar_(ASTR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/ASTR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/ASTR.svg" + }, "typeExtras": { "currencyIdScale": "0x050200", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -2909,7 +3357,10 @@ "precision": 9, "type": "orml", "priceId": "equilibrium-token", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Equilibrium_(EQ).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/EQ.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/EQ.svg" + }, "typeExtras": { "currencyIdScale": "0x050700", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -2924,7 +3375,10 @@ "precision": 8, "type": "orml", "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/iBTC.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/iBTC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/iBTC.svg" + }, "typeExtras": { "currencyIdScale": "0x050300", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -2939,7 +3393,10 @@ "precision": 18, "type": "orml", "priceId": "dai", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/DAI.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/DAI.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/DAI.svg" + }, "typeExtras": { "currencyIdScale": "0x0254a37a01cd75b616d63e0ab665bffdb0143c52ae", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -2954,7 +3411,10 @@ "precision": 6, "type": "orml", "priceId": "tether", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDT.svg" + }, "typeExtras": { "currencyIdScale": "0x050c00", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -2968,7 +3428,10 @@ "symbol": "PINK", "precision": 10, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Pink.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PINK.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PINK.svg" + }, "typeExtras": { "currencyIdScale": "0x050d00", "currencyIdType": "AcalaPrimitivesCurrencyCurrencyId", @@ -3041,7 +3504,10 @@ "precision": 18, "type": "native", "priceId": "moonbeam", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Moonbeam_(GLMR).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/GLMR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/GLMR.svg" + } }, { "name": "Polkadot", @@ -3050,7 +3516,10 @@ "precision": 10, "type": "statemine", "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Polkadot_(DOT).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/DOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/DOT.svg" + }, "typeExtras": { "assetId": "42259045809535163221576417993425387648", "isSufficient": true @@ -3063,7 +3532,10 @@ "precision": 12, "type": "statemine", "priceId": "ausd-seed-acala", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/aSEED-Polkadot.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/aSEEDp.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/aSEEDp.svg" + }, "typeExtras": { "assetId": "110021739665376159354538090254163045594", "isSufficient": true @@ -3076,7 +3548,10 @@ "precision": 12, "type": "statemine", "priceId": "acala", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Acala_(ACA).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/ACA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/ACA.svg" + }, "typeExtras": { "assetId": "224821240862170613278369189818311486111", "isSufficient": true @@ -3088,7 +3563,10 @@ "symbol": "xcPARA", "precision": 12, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/PARA.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PARA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PARA.svg" + }, "typeExtras": { "assetId": "32615670524745285411807346420584982855", "isSufficient": true @@ -3101,7 +3579,10 @@ "precision": 10, "type": "statemine", "priceId": "interlay", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Interlay_(INTR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/INTR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/INTR.svg" + }, "typeExtras": { "assetId": "101170542313601871197860408087030232491", "isSufficient": true @@ -3114,7 +3595,10 @@ "precision": 8, "type": "statemine", "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/iBTC.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/iBTC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/iBTC.svg" + }, "typeExtras": { "assetId": "120637696315203257380661607956669368914", "isSufficient": true @@ -3127,7 +3611,10 @@ "precision": 18, "type": "statemine", "priceId": "astar", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Astar_(ASTR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/ASTR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/ASTR.svg" + }, "typeExtras": { "assetId": "224077081838586484055667086558292981199", "isSufficient": true @@ -3140,7 +3627,10 @@ "precision": 12, "type": "statemine", "priceId": "pha", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Phala_(PHA).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PHA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PHA.svg" + }, "typeExtras": { "assetId": "132685552157663328694213725410064821485", "isSufficient": true @@ -3153,7 +3643,10 @@ "precision": 6, "type": "statemine", "priceId": "tether", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDT.svg" + }, "typeExtras": { "assetId": "311091173110107856861649819128533077277", "isSufficient": true @@ -3166,7 +3659,10 @@ "precision": 18, "type": "statemine", "priceId": "centrifuge", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Centrifuge_(CFG).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/CFG.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/CFG.svg" + }, "typeExtras": { "assetId": "91372035960551235635465443179559840483", "isSufficient": true @@ -3179,7 +3675,10 @@ "precision": 12, "type": "statemine", "priceId": "bifrost-native-coin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Bifrost_(BNC).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/BNC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/BNC.svg" + }, "typeExtras": { "assetId": "165823357460190568952172802245839421906", "isSufficient": true @@ -3192,7 +3691,10 @@ "precision": 9, "type": "statemine", "priceId": "equilibrium-token", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Equilibrium_(EQ).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/EQ.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/EQ.svg" + }, "typeExtras": { "assetId": "190590555344745888270686124937537713878", "isSufficient": true @@ -3205,7 +3707,10 @@ "precision": 9, "type": "statemine", "priceId": "tether", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/EQD.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/EQD.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/EQD.svg" + }, "typeExtras": { "assetId": "187224307232923873519830480073807488153", "isSufficient": true @@ -3218,7 +3723,10 @@ "precision": 12, "type": "statemine", "priceId": "hydradx", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/HydraDX_(HDX).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/HDX.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/HDX.svg" + }, "typeExtras": { "assetId": "69606720909260275826784788104880799692", "isSufficient": true @@ -3231,7 +3739,10 @@ "precision": 11, "type": "statemine", "priceId": "nodle-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Nodle_(NODL).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/NODL.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/NODL.svg" + }, "typeExtras": { "assetId": "309163521958167876851250718453738106865", "isSufficient": true @@ -3244,7 +3755,10 @@ "precision": 18, "type": "statemine", "priceId": "darwinia-network-native-token", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Darwinia_(RING).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/RING.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/RING.svg" + }, "typeExtras": { "assetId": "125699734534028342599692732320197985871", "isSufficient": true @@ -3256,7 +3770,10 @@ "symbol": "xcOTP", "precision": 12, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/OriginTrail_(OTP).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/OTP.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/OTP.svg" + }, "typeExtras": { "assetId": "238111524681612888331172110363070489924", "isSufficient": true @@ -3269,7 +3786,10 @@ "precision": 10, "type": "statemine", "priceId": "voucher-dot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vDOT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vDOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vDOT.svg" + }, "typeExtras": { "assetId": "29085784439601774464560083082574142143", "isSufficient": true @@ -3281,7 +3801,10 @@ "symbol": "xcvFIL", "precision": 18, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vFIL.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vFIL.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vFIL.svg" + }, "typeExtras": { "assetId": "272547899416482196831721420898811311297", "isSufficient": true @@ -3294,7 +3817,10 @@ "precision": 18, "type": "statemine", "priceId": "voucher-glmr", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vGLMR.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vGLMR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vGLMR.svg" + }, "typeExtras": { "assetId": "204507659831918931608354793288110796652", "isSufficient": true @@ -3307,7 +3833,10 @@ "precision": 18, "type": "statemine", "priceId": "manta-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Manta_(MANTA).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/MANTA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/MANTA.svg" + }, "typeExtras": { "assetId": "166446646689194205559791995948102903873", "isSufficient": true @@ -3320,7 +3849,10 @@ "precision": 6, "type": "statemine", "priceId": "usd-coin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDC.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDC.svg" + }, "typeExtras": { "assetId": "166377000701797186346254371275954761085", "isSufficient": true @@ -3404,7 +3936,10 @@ "precision": 18, "type": "native", "priceId": "astar", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Astar_(ASTR).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/ASTR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/ASTR.svg" + } }, { "name": "Polkadot", @@ -3413,7 +3948,10 @@ "precision": 10, "type": "statemine", "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Polkadot_(DOT).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/DOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/DOT.svg" + }, "typeExtras": { "assetId": "340282366920938463463374607431768211455", "isSufficient": true @@ -3426,7 +3964,10 @@ "precision": 18, "type": "statemine", "priceId": "moonbeam", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Moonbeam_(GLMR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/GLMR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/GLMR.svg" + }, "typeExtras": { "assetId": "18446744073709551619", "isSufficient": true @@ -3439,7 +3980,10 @@ "precision": 8, "type": "statemine", "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/iBTC.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/iBTC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/iBTC.svg" + }, "typeExtras": { "assetId": "18446744073709551620", "isSufficient": true @@ -3452,7 +3996,10 @@ "precision": 10, "type": "statemine", "priceId": "interlay", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Interlay_(INTR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/INTR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/INTR.svg" + }, "typeExtras": { "assetId": "18446744073709551621", "isSufficient": true @@ -3465,7 +4012,10 @@ "precision": 12, "type": "statemine", "priceId": "pha", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Phala_(PHA).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PHA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PHA.svg" + }, "typeExtras": { "assetId": "18446744073709551622", "isSufficient": true @@ -3478,7 +4028,10 @@ "precision": 12, "type": "statemine", "priceId": "acala", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Acala_(ACA).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/ACA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/ACA.svg" + }, "typeExtras": { "assetId": "18446744073709551616", "isSufficient": true @@ -3491,7 +4044,10 @@ "precision": 10, "type": "statemine", "priceId": "liquid-staking-dot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/lDOT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/LDOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/LDOT.svg" + }, "typeExtras": { "assetId": "18446744073709551618", "isSufficient": true @@ -3504,7 +4060,10 @@ "precision": 12, "type": "statemine", "priceId": "ausd-seed-acala", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/aSEED-Polkadot.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/aSEEDp.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/aSEEDp.svg" + }, "typeExtras": { "assetId": "18446744073709551617", "isSufficient": true @@ -3517,7 +4076,10 @@ "precision": 6, "type": "statemine", "priceId": "tether", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDT.svg" + }, "typeExtras": { "assetId": "4294969280", "isSufficient": true @@ -3530,7 +4092,10 @@ "precision": 12, "type": "statemine", "priceId": "bifrost-native-coin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Bifrost_(BNC).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/BNC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/BNC.svg" + }, "typeExtras": { "assetId": "18446744073709551623", "isSufficient": true @@ -3543,7 +4108,10 @@ "precision": 18, "type": "statemine", "priceId": "unique-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Unique_(UNQ).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/UNQ.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/UNQ.svg" + }, "typeExtras": { "assetId": "18446744073709551631", "isSufficient": true @@ -3556,7 +4124,10 @@ "precision": 10, "type": "statemine", "priceId": "voucher-dot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vDOT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vDOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vDOT.svg" + }, "typeExtras": { "assetId": "18446744073709551624", "isSufficient": true @@ -3569,7 +4140,10 @@ "precision": 9, "type": "statemine", "priceId": "tether", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/EQD.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/EQD.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/EQD.svg" + }, "typeExtras": { "assetId": "18446744073709551629", "isSufficient": true @@ -3618,7 +4192,10 @@ "symbol": "PARA", "precision": 12, "type": "native", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/PARA.svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PARA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PARA.svg" + } }, { "name": "Polkadot", @@ -3627,7 +4204,10 @@ "precision": 10, "type": "statemine", "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Polkadot_(DOT).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/DOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/DOT.svg" + }, "typeExtras": { "assetId": "101", "isSufficient": true @@ -3640,7 +4220,10 @@ "precision": 10, "type": "statemine", "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/sDOT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/sDOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/sDOT.svg" + }, "typeExtras": { "assetId": "1001", "isSufficient": true @@ -3653,7 +4236,10 @@ "precision": 12, "type": "statemine", "priceId": "acala", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Acala_(ACA).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/ACA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/ACA.svg" + }, "typeExtras": { "assetId": "108", "isSufficient": true @@ -3666,7 +4252,10 @@ "precision": 12, "type": "statemine", "priceId": "ausd-seed-acala", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/aSEED-Polkadot.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/aSEEDp.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/aSEEDp.svg" + }, "typeExtras": { "assetId": "104", "isSufficient": true @@ -3679,7 +4268,10 @@ "precision": 10, "type": "statemine", "priceId": "liquid-staking-dot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/lDOT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/LDOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/LDOT.svg" + }, "typeExtras": { "assetId": "110", "isSufficient": true @@ -3692,7 +4284,10 @@ "precision": 18, "type": "statemine", "priceId": "moonbeam", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Moonbeam_(GLMR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/GLMR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/GLMR.svg" + }, "typeExtras": { "assetId": "114", "isSufficient": true @@ -3705,7 +4300,10 @@ "precision": 10, "type": "statemine", "priceId": "interlay", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Interlay_(INTR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/INTR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/INTR.svg" + }, "typeExtras": { "assetId": "120", "isSufficient": true @@ -3718,7 +4316,10 @@ "precision": 8, "type": "statemine", "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/iBTC.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/iBTC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/iBTC.svg" + }, "typeExtras": { "assetId": "122", "isSufficient": true @@ -3731,7 +4332,10 @@ "precision": 6, "type": "statemine", "priceId": "tether", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDT.svg" + }, "typeExtras": { "assetId": "102", "isSufficient": true @@ -3743,7 +4347,10 @@ "symbol": "CLV", "precision": 18, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/CLV_(CLV).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/CLV.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/CLV.svg" + }, "typeExtras": { "assetId": "130", "isSufficient": true @@ -3756,7 +4363,10 @@ "precision": 18, "type": "statemine", "priceId": "astar", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Astar_(ASTR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/ASTR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/ASTR.svg" + }, "typeExtras": { "assetId": "112", "isSufficient": true @@ -3769,7 +4379,10 @@ "precision": 12, "type": "statemine", "priceId": "pha", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Phala_(PHA).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PHA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PHA.svg" + }, "typeExtras": { "assetId": "115", "isSufficient": true @@ -3835,7 +4448,10 @@ "precision": 10, "type": "native", "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Polkadot_(DOT).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/DOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/DOT.svg" + } }, { "name": "USD Tether", @@ -3844,7 +4460,10 @@ "precision": 6, "type": "statemine", "priceId": "tether", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDT.svg" + }, "typeExtras": { "assetId": "1984", "isSufficient": true @@ -3857,7 +4476,10 @@ "precision": 6, "type": "statemine", "priceId": "usd-coin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDC.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDC.svg" + }, "typeExtras": { "assetId": "1337", "isSufficient": true @@ -3870,7 +4492,10 @@ "precision": 10, "type": "statemine", "priceId": "dot-is-ded", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/DED.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/DED.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/DED.svg" + }, "typeExtras": { "assetId": "30" } @@ -3881,7 +4506,10 @@ "symbol": "PINK", "precision": 10, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Pink.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PINK.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PINK.svg" + }, "typeExtras": { "assetId": "23" } @@ -3892,7 +4520,10 @@ "symbol": "DOTA", "precision": 4, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/DOTA.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/DOTA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/DOTA.svg" + }, "typeExtras": { "assetId": "18" } @@ -3903,7 +4534,10 @@ "symbol": "STINK", "precision": 10, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/STINK.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/STINK.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/STINK.svg" + }, "typeExtras": { "assetId": "42069" } @@ -3914,7 +4548,10 @@ "symbol": "GABE", "precision": 20, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/GABE.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/GABE.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/GABE.svg" + }, "typeExtras": { "assetId": "69420" } @@ -3925,7 +4562,10 @@ "symbol": "WUD", "precision": 10, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/WUD.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/WUD.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/WUD.svg" + }, "typeExtras": { "assetId": "31337" } @@ -3936,7 +4576,10 @@ "symbol": "WIFD", "precision": 10, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/WIFD.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/WIFD.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/WIFD.svg" + }, "typeExtras": { "assetId": "17" } @@ -3947,7 +4590,10 @@ "symbol": "BORK", "precision": 10, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/BORK.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/BORK.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/BORK.svg" + }, "typeExtras": { "assetId": "690" } @@ -3958,7 +4604,10 @@ "symbol": "BUNS", "precision": 10, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/BUNS.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/BUNS.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/BUNS.svg" + }, "typeExtras": { "assetId": "1234" } @@ -3969,7 +4618,10 @@ "symbol": "KOL", "precision": 12, "type": "statemine", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/KOL.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KOL.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KOL.svg" + }, "typeExtras": { "assetId": "86" } @@ -4025,7 +4677,10 @@ "precision": 9, "type": "native", "priceId": "robonomics-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Robonomics_(XRT).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/XRT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/XRT.svg" + } }, { "name": "Kusama", @@ -4034,7 +4689,10 @@ "precision": 12, "type": "statemine", "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kusama_(KSM).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KSM.svg" + }, "typeExtras": { "assetId": "4294967295", "isSufficient": true @@ -4088,7 +4746,10 @@ "precision": 10, "type": "native", "priceId": "zeitgeist", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Zeitgeist_(ZTG).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/ZTG.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/ZTG.svg" + } } ], "explorers": [ @@ -4148,7 +4809,10 @@ "precision": 10, "type": "native", "priceId": "subsocial", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Subsocial_(SUB).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/SUB.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/SUB.svg" + } } ], "explorers": [ @@ -4192,7 +4856,10 @@ "precision": 12, "type": "native", "priceId": "integritee", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Integritee_Parachain_(TEER).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/TEER.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/TEER.svg" + } } ], "explorers": [ @@ -4242,7 +4909,10 @@ "precision": 18, "type": "native", "priceId": "centrifuge", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Centrifuge_(CFG).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/CFG.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/CFG.svg" + } } ], "explorers": [ @@ -4279,6 +4949,10 @@ "pure_proxy" ], "nodes": [ + { + "url": "wss://rpc.hydradx.cloud", + "name": "Galactic Council node" + }, { "url": "wss://hydration.ibp.network", "name": "IBP1 node" @@ -4290,10 +4964,6 @@ { "url": "wss://hydradx-rpc.dwellir.com", "name": "Dwellir node" - }, - { - "url": "wss://rpc.hydradx.cloud", - "name": "Galactic Council node" } ], "assets": [ @@ -4304,7 +4974,10 @@ "precision": 12, "type": "native", "priceId": "hydradx", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/HydraDX_(HDX).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/HDX.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/HDX.svg" + } }, { "name": "Polkadot", @@ -4313,7 +4986,10 @@ "precision": 10, "type": "orml", "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Polkadot_(DOT).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/DOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/DOT.svg" + }, "typeExtras": { "currencyIdScale": "0x05000000", "currencyIdType": "u32", @@ -4328,7 +5004,10 @@ "precision": 18, "type": "orml", "priceId": "dai", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/DAI-Acala.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/DAI-Acala.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/DAI-Acala.svg" + }, "typeExtras": { "currencyIdScale": "0x02000000", "currencyIdType": "u32", @@ -4342,7 +5021,10 @@ "symbol": "LRNA", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Lerna_(LRNA).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/LRNA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/LRNA.svg" + }, "typeExtras": { "currencyIdScale": "0x01000000", "currencyIdType": "u32", @@ -4357,7 +5039,10 @@ "precision": 18, "type": "orml", "priceId": "ethereum-wormhole", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/WETH-Acala.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/WETH-Acala.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/WETH-Acala.svg" + }, "typeExtras": { "currencyIdScale": "0x04000000", "currencyIdType": "u32", @@ -4372,7 +5057,10 @@ "precision": 8, "type": "orml", "priceId": "wrapped-bitcoin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/WBTC-Acala.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/WBTC-Acala.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/WBTC-Acala.svg" + }, "typeExtras": { "currencyIdScale": "0x03000000", "currencyIdType": "u32", @@ -4387,7 +5075,10 @@ "precision": 8, "type": "orml", "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/iBTC.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/iBTC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/iBTC.svg" + }, "typeExtras": { "currencyIdScale": "0x0b000000", "currencyIdType": "u32", @@ -4402,7 +5093,10 @@ "precision": 10, "type": "orml", "priceId": "zeitgeist", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Zeitgeist_(ZTG).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/ZTG.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/ZTG.svg" + }, "typeExtras": { "currencyIdScale": "0x0c000000", "currencyIdType": "u32", @@ -4417,7 +5111,10 @@ "precision": 18, "type": "orml", "priceId": "astar", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Astar_(ASTR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/ASTR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/ASTR.svg" + }, "typeExtras": { "currencyIdScale": "0x09000000", "currencyIdType": "u32", @@ -4432,7 +5129,10 @@ "precision": 6, "type": "orml", "priceId": "tether", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDT.svg" + }, "typeExtras": { "currencyIdScale": "0x0a000000", "currencyIdType": "u32", @@ -4447,7 +5147,10 @@ "precision": 18, "type": "orml", "priceId": "centrifuge", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Centrifuge_(CFG).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/CFG.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/CFG.svg" + }, "typeExtras": { "currencyIdScale": "0x0d000000", "currencyIdType": "u32", @@ -4462,7 +5165,10 @@ "precision": 12, "type": "orml", "priceId": "bifrost-native-coin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Bifrost_(BNC).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/BNC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/BNC.svg" + }, "typeExtras": { "currencyIdScale": "0x0e000000", "currencyIdType": "u32", @@ -4477,7 +5183,10 @@ "precision": 18, "type": "orml", "priceId": "dai", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/DAI-Moonbeam.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/DAI-Moonbeam.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/DAI-Moonbeam.svg" + }, "typeExtras": { "currencyIdScale": "0x12000000", "currencyIdType": "u32", @@ -4492,7 +5201,10 @@ "precision": 8, "type": "orml", "priceId": "wrapped-bitcoin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/WBTC-Moonbeam.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/WBTC-Moonbeam.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/WBTC-Moonbeam.svg" + }, "typeExtras": { "currencyIdScale": "0x13000000", "currencyIdType": "u32", @@ -4507,7 +5219,10 @@ "precision": 18, "type": "orml", "priceId": "ethereum-wormhole", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/WETH-Moonbeam.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/WETH-Moonbeam.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/WETH-Moonbeam.svg" + }, "typeExtras": { "currencyIdScale": "0x14000000", "currencyIdType": "u32", @@ -4522,7 +5237,10 @@ "precision": 6, "type": "orml", "priceId": "usd-coin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDC.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDC.svg" + }, "typeExtras": { "currencyIdScale": "0x16000000", "currencyIdType": "u32", @@ -4537,7 +5255,10 @@ "precision": 18, "type": "orml", "priceId": "moonbeam", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Moonbeam_(GLMR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/GLMR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/GLMR.svg" + }, "typeExtras": { "currencyIdScale": "0x10000000", "currencyIdType": "u32", @@ -4552,7 +5273,10 @@ "precision": 10, "type": "orml", "priceId": "interlay", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Interlay_(INTR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/INTR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/INTR.svg" + }, "typeExtras": { "currencyIdScale": "0x11000000", "currencyIdType": "u32", @@ -4567,7 +5291,10 @@ "precision": 10, "type": "orml", "priceId": "subsocial", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Subsocial_(SUB).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/SUB.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/SUB.svg" + }, "typeExtras": { "currencyIdScale": "0x18000000", "currencyIdType": "u32", @@ -4582,7 +5309,10 @@ "precision": 10, "type": "orml", "priceId": "voucher-dot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vDOT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vDOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vDOT.svg" + }, "typeExtras": { "currencyIdScale": "0x0f000000", "currencyIdType": "u32", @@ -4597,7 +5327,10 @@ "precision": 12, "type": "orml", "priceId": "pha", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Phala_(PHA).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PHA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PHA.svg" + }, "typeExtras": { "currencyIdScale": "0x08000000", "currencyIdType": "u32", @@ -4612,7 +5345,10 @@ "precision": 6, "type": "orml", "priceId": "usd-coin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDC.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDC-Moonbeam.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDC-Moonbeam.svg" + }, "typeExtras": { "currencyIdScale": "0x15000000", "currencyIdType": "u32", @@ -4627,7 +5363,10 @@ "precision": 18, "type": "orml", "priceId": "unique-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Unique_(UNQ).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/UNQ.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/UNQ.svg" + }, "typeExtras": { "currencyIdScale": "0x19000000", "currencyIdType": "u32", @@ -4642,7 +5381,10 @@ "precision": 11, "type": "orml", "priceId": "nodle-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Nodle_(NODL).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/NODL.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/NODL.svg" + }, "typeExtras": { "currencyIdScale": "0x1a000000", "currencyIdType": "u32", @@ -4657,7 +5399,10 @@ "precision": 12, "type": "orml", "priceId": "crust-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Crust_(CRU).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/CRU.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/CRU.svg" + }, "typeExtras": { "currencyIdScale": "0x1b000000", "currencyIdType": "u32", @@ -4672,7 +5417,10 @@ "precision": 6, "type": "orml", "priceId": "tether", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDT-Moonbeam.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDT-Moonbeam.svg" + }, "typeExtras": { "currencyIdScale": "0x17000000", "currencyIdType": "u32", @@ -4687,7 +5435,10 @@ "precision": 10, "type": "orml", "priceId": "dot-is-ded", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/DED.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/DED.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/DED.svg" + }, "typeExtras": { "currencyIdScale": "0x53420f00", "currencyIdType": "u32", @@ -4701,7 +5452,10 @@ "symbol": "PINK", "precision": 10, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Pink.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PINK.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PINK.svg" + }, "typeExtras": { "currencyIdScale": "0x55420f00", "currencyIdType": "u32", @@ -4715,7 +5469,10 @@ "symbol": "STINK", "precision": 10, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/STINK.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/STINK.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/STINK.svg" + }, "typeExtras": { "currencyIdScale": "0x62420f00", "currencyIdType": "u32", @@ -4729,7 +5486,10 @@ "symbol": "DOTA", "precision": 4, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/DOTA.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/DOTA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/DOTA.svg" + }, "typeExtras": { "currencyIdScale": "0x66420f00", "currencyIdType": "u32", @@ -4743,7 +5503,10 @@ "symbol": "GABE", "precision": 20, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/GABE.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/GABE.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/GABE.svg" + }, "typeExtras": { "currencyIdScale": "0x7e420f00", "currencyIdType": "u32", @@ -4758,7 +5521,10 @@ "precision": 15, "type": "orml", "priceId": "kilt-protocol", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kilt_(KILT).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KILT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KILT.svg" + }, "typeExtras": { "currencyIdScale": "0x1c000000", "currencyIdType": "u32", @@ -4772,7 +5538,10 @@ "symbol": "WUD", "precision": 10, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/WUD.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/WUD.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/WUD.svg" + }, "typeExtras": { "currencyIdScale": "0x95420f00", "currencyIdType": "u32", @@ -4787,7 +5556,10 @@ "precision": 18, "type": "orml", "priceId": "mythos", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/MYTH.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/MYTH.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/MYTH.svg" + }, "typeExtras": { "currencyIdScale": "0x1e000000", "currencyIdType": "u32", @@ -4801,7 +5573,10 @@ "symbol": "WIFD", "precision": 10, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/WIFD.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/WIFD.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/WIFD.svg" + }, "typeExtras": { "currencyIdScale": "0x92420f00", "currencyIdType": "u32", @@ -4815,7 +5590,10 @@ "symbol": "BORK", "precision": 10, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/BORK.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/BORK.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/BORK.svg" + }, "typeExtras": { "currencyIdScale": "0xd4420f00", "currencyIdType": "u32", @@ -4829,7 +5607,10 @@ "symbol": "BUNS", "precision": 10, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/BUNS.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/BUNS.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/BUNS.svg" + }, "typeExtras": { "currencyIdScale": "0xf1420f00", "currencyIdType": "u32", @@ -4843,7 +5624,10 @@ "symbol": "KOL", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/KOL.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KOL.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KOL.svg" + }, "typeExtras": { "currencyIdScale": "0x07430f00", "currencyIdType": "u32", @@ -4857,13 +5641,34 @@ "symbol": "vASTR", "precision": 18, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vASTR.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vASTR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vASTR.svg" + }, "typeExtras": { "currencyIdScale": "0x21000000", "currencyIdType": "u32", "existentialDeposit": "133689839572193000", "transfersEnabled": true } + }, + { + "name": "Ajuna", + "assetId": 44, + "symbol": "AJUN", + "precision": 12, + "type": "orml", + "priceId": "ajuna-network-2", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/AJUN.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/AJUN.svg" + }, + "typeExtras": { + "currencyIdScale": "0x20000000", + "currencyIdType": "u32", + "existentialDeposit": "100786131828", + "transfersEnabled": true + } } ], "explorers": [ @@ -4919,7 +5724,10 @@ "precision": 10, "type": "orml", "priceId": "interlay", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Interlay_(INTR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/INTR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/INTR.svg" + }, "typeExtras": { "currencyIdScale": "0x0002", "currencyIdType": "InterbtcPrimitivesCurrencyId", @@ -4934,7 +5742,10 @@ "precision": 8, "type": "orml", "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/iBTC.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/iBTC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/iBTC.svg" + }, "typeExtras": { "currencyIdScale": "0x0001", "currencyIdType": "InterbtcPrimitivesCurrencyId", @@ -4949,7 +5760,10 @@ "precision": 10, "type": "orml", "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Polkadot_(DOT).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/DOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/DOT.svg" + }, "typeExtras": { "currencyIdScale": "0x0000", "currencyIdType": "InterbtcPrimitivesCurrencyId", @@ -4964,7 +5778,10 @@ "precision": 12, "type": "orml", "priceId": "kintsugi", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kintsugi_(KINT).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KINT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KINT.svg" + }, "typeExtras": { "currencyIdScale": "0x000c", "currencyIdType": "InterbtcPrimitivesCurrencyId", @@ -4979,7 +5796,10 @@ "precision": 8, "type": "orml", "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/kBTC.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/kBTC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/kBTC.svg" + }, "typeExtras": { "currencyIdScale": "0x000b", "currencyIdType": "InterbtcPrimitivesCurrencyId", @@ -4994,7 +5814,10 @@ "precision": 12, "type": "orml", "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kusama_(KSM).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KSM.svg" + }, "typeExtras": { "currencyIdScale": "0x000a", "currencyIdType": "InterbtcPrimitivesCurrencyId", @@ -5009,7 +5832,10 @@ "precision": 10, "type": "orml", "priceId": "liquid-staking-dot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/lDOT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/LDOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/LDOT.svg" + }, "typeExtras": { "currencyIdScale": "0x0101000000", "currencyIdType": "InterbtcPrimitivesCurrencyId", @@ -5024,7 +5850,10 @@ "precision": 6, "type": "orml", "priceId": "tether", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDT.svg" + }, "typeExtras": { "currencyIdScale": "0x0102000000", "currencyIdType": "InterbtcPrimitivesCurrencyId", @@ -5038,7 +5867,10 @@ "symbol": "qiBTC", "precision": 8, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/iBTC.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/qiBTC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/qiBTC.svg" + }, "typeExtras": { "currencyIdScale": "0x0201000000", "currencyIdType": "InterbtcPrimitivesCurrencyId", @@ -5052,7 +5884,10 @@ "symbol": "qUSDT", "precision": 6, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/qUSDT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/qUSDT.svg" + }, "typeExtras": { "currencyIdScale": "0x0203000000", "currencyIdType": "InterbtcPrimitivesCurrencyId", @@ -5066,7 +5901,10 @@ "symbol": "qDOT", "precision": 10, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Polkadot_(DOT).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/qDOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/qDOT.svg" + }, "typeExtras": { "currencyIdScale": "0x0202000000", "currencyIdType": "InterbtcPrimitivesCurrencyId", @@ -5081,7 +5919,10 @@ "precision": 12, "type": "orml", "priceId": "bifrost-native-coin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Bifrost_(BNC).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/BNC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/BNC.svg" + }, "typeExtras": { "currencyIdScale": "0x010b000000", "currencyIdType": "InterbtcPrimitivesCurrencyId", @@ -5120,6 +5961,14 @@ "url": "wss://phala-rpc.dwellir.com", "name": "Dwellir node" }, + { + "url": "wss://rpc.helikon.io/phala", + "name": "Helikon node" + }, + { + "url": "wss://phala.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, { "url": "wss://api.phala.network/ws", "name": "Phala node" @@ -5127,10 +5976,6 @@ { "url": "wss://phala.public.curie.radiumblock.co/ws", "name": "RadiumBlock node" - }, - { - "url": "wss://phala.api.onfinality.io/public-ws", - "name": "OnFinality node" } ], "assets": [ @@ -5141,7 +5986,10 @@ "precision": 12, "type": "native", "priceId": "pha", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Phala_(PHA).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PHA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PHA.svg" + } } ], "explorers": [ @@ -5187,7 +6035,10 @@ "precision": 10, "type": "native", "priceId": "turing-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Turing_(TUR).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/TUR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/TUR.svg" + } }, { "name": "Kusama", @@ -5196,7 +6047,10 @@ "precision": 12, "type": "orml", "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kusama_(KSM).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KSM.svg" + }, "typeExtras": { "currencyIdScale": "0x01000000", "currencyIdType": "u32", @@ -5211,7 +6065,10 @@ "precision": 12, "type": "orml", "priceId": "ausd-seed-karura", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/aSEED-Kusama.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/aSEEDk.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/aSEEDk.svg" + }, "typeExtras": { "currencyIdScale": "0x02000000", "currencyIdType": "u32", @@ -5226,7 +6083,10 @@ "precision": 12, "type": "orml", "priceId": "karura", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Karura_(KAR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KAR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KAR.svg" + }, "typeExtras": { "currencyIdScale": "0x03000000", "currencyIdType": "u32", @@ -5241,7 +6101,10 @@ "precision": 12, "type": "orml", "priceId": "liquid-ksm", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/lKSM.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/LKSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/LKSM.svg" + }, "typeExtras": { "currencyIdScale": "0x04000000", "currencyIdType": "u32", @@ -5255,7 +6118,10 @@ "symbol": "HKO", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/HKO.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/HKO.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/HKO.svg" + }, "typeExtras": { "currencyIdScale": "0x05000000", "currencyIdType": "u32", @@ -5269,7 +6135,10 @@ "symbol": "sKSM", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/sKSM.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/sKSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/sKSM.svg" + }, "typeExtras": { "currencyIdScale": "0x06000000", "currencyIdType": "u32", @@ -5284,7 +6153,10 @@ "precision": 12, "type": "orml", "priceId": "pha", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Phala_(PHA).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PHA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PHA.svg" + }, "typeExtras": { "currencyIdScale": "0x07000000", "currencyIdType": "u32", @@ -5341,7 +6213,10 @@ "precision": 12, "type": "native", "priceId": "aleph-zero", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Aleph_Zero_(AZERO).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/AZERO.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/AZERO.svg" + } } ], "explorers": [ @@ -5403,7 +6278,10 @@ "precision": 12, "type": "native", "priceId": "bifrost-native-coin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Bifrost_(BNC).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/BNC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/BNC.svg" + } }, { "name": "Moonbeam", @@ -5412,7 +6290,10 @@ "precision": 18, "type": "orml", "priceId": "moonbeam", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Moonbeam_(GLMR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/GLMR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/GLMR.svg" + }, "typeExtras": { "currencyIdScale": "0x0801", "currencyIdType": "BifrostPrimitivesCurrencyCurrencyId", @@ -5427,7 +6308,10 @@ "precision": 10, "type": "orml", "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Polkadot_(DOT).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/DOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/DOT.svg" + }, "typeExtras": { "currencyIdScale": "0x0800", "currencyIdType": "BifrostPrimitivesCurrencyCurrencyId", @@ -5442,7 +6326,10 @@ "precision": 6, "type": "orml", "priceId": "tether", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDT.svg" + }, "typeExtras": { "currencyIdScale": "0x0802", "currencyIdType": "BifrostPrimitivesCurrencyCurrencyId", @@ -5457,7 +6344,10 @@ "precision": 18, "type": "orml", "priceId": "astar", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Astar_(ASTR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/ASTR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/ASTR.svg" + }, "typeExtras": { "currencyIdScale": "0x0803", "currencyIdType": "BifrostPrimitivesCurrencyCurrencyId", @@ -5472,7 +6362,10 @@ "precision": 10, "type": "orml", "priceId": "voucher-dot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vDOT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vDOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vDOT.svg" + }, "typeExtras": { "currencyIdScale": "0x0900", "currencyIdType": "BifrostPrimitivesCurrencyCurrencyId", @@ -5487,7 +6380,10 @@ "precision": 18, "type": "orml", "priceId": "voucher-glmr", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vGLMR.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vGLMR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vGLMR.svg" + }, "typeExtras": { "currencyIdScale": "0x0901", "currencyIdType": "BifrostPrimitivesCurrencyCurrencyId", @@ -5501,7 +6397,10 @@ "symbol": "vFIL", "precision": 18, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vFIL.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vFIL.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vFIL.svg" + }, "typeExtras": { "currencyIdScale": "0x0904", "currencyIdType": "BifrostPrimitivesCurrencyCurrencyId", @@ -5515,7 +6414,10 @@ "symbol": "vASTR", "precision": 18, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vASTR.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vASTR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vASTR.svg" + }, "typeExtras": { "currencyIdScale": "0x0903", "currencyIdType": "BifrostPrimitivesCurrencyCurrencyId", @@ -5529,7 +6431,10 @@ "symbol": "vsDOT", "precision": 10, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vsDOT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vsDOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vsDOT.svg" + }, "typeExtras": { "currencyIdScale": "0x0a00", "currencyIdType": "BifrostPrimitivesCurrencyCurrencyId", @@ -5544,7 +6449,10 @@ "precision": 18, "type": "orml", "priceId": "manta-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Manta_(MANTA).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/MANTA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/MANTA.svg" + }, "typeExtras": { "currencyIdScale": "0x0808", "currencyIdType": "BifrostPrimitivesCurrencyCurrencyId", @@ -5558,7 +6466,10 @@ "symbol": "vMANTA", "precision": 18, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vMANTA.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vMANTA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vMANTA.svg" + }, "typeExtras": { "currencyIdScale": "0x0908", "currencyIdType": "BifrostPrimitivesCurrencyCurrencyId", @@ -5610,7 +6521,10 @@ "precision": 18, "type": "native", "priceId": "litentry", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Litentry_(LIT).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/LIT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/LIT.svg" + } } ], "explorers": [ @@ -5656,7 +6570,10 @@ "precision": 18, "type": "orml", "priceId": "mangata-x", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Mangata_X_(MGX).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/MGX.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/MGX.svg" + }, "typeExtras": { "currencyIdScale": "0x00000000", "currencyIdType": "u32", @@ -5671,7 +6588,10 @@ "precision": 12, "type": "orml", "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kusama_(KSM).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KSM.svg" + }, "typeExtras": { "currencyIdScale": "0x04000000", "currencyIdType": "u32", @@ -5686,7 +6606,10 @@ "precision": 18, "type": "orml", "priceId": "ethereum", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Ethereum_(ETH).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/ETH.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/ETH.svg" + }, "typeExtras": { "currencyIdScale": "0x01000000", "currencyIdType": "u32", @@ -5701,7 +6624,10 @@ "precision": 10, "type": "orml", "priceId": "turing-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Turing_(TUR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/TUR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/TUR.svg" + }, "typeExtras": { "currencyIdScale": "0x07000000", "currencyIdType": "u32", @@ -5716,7 +6642,10 @@ "precision": 12, "type": "orml", "priceId": "bifrost-native-coin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Bifrost_(BNC).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/BNC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/BNC.svg" + }, "typeExtras": { "currencyIdScale": "0x0e000000", "currencyIdType": "u32", @@ -5731,7 +6660,10 @@ "precision": 10, "type": "orml", "priceId": "rmrk", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/RMRK.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/RMRK.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/RMRK.svg" + }, "typeExtras": { "currencyIdScale": "0x1f000000", "currencyIdType": "u32", @@ -5746,7 +6678,10 @@ "precision": 18, "type": "orml", "priceId": "zenlink-network-token", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Zenlink_(ZLK).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/ZLK.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/ZLK.svg" + }, "typeExtras": { "currencyIdScale": "0x1a000000", "currencyIdType": "u32", @@ -5760,7 +6695,10 @@ "symbol": "vsKSM", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vsKSM.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vsKSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vsKSM.svg" + }, "typeExtras": { "currencyIdScale": "0x10000000", "currencyIdType": "u32", @@ -5775,7 +6713,10 @@ "precision": 12, "type": "orml", "priceId": "voucher-ksm", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vKSM.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vKSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vKSM.svg" + }, "typeExtras": { "currencyIdScale": "0x0f000000", "currencyIdType": "u32", @@ -5804,8 +6745,8 @@ ], "nodes": [ { - "url": "wss://fro-moon-rpc-1-moonbase-relay-rpc-1.moonbase.ol-infra.network", - "name": "PureStake node" + "url": "wss://relay.api.moonbase.moonbeam.network", + "name": "Moonbase Relay node" } ], "assets": [ @@ -5815,7 +6756,10 @@ "symbol": "UNIT", "precision": 12, "type": "native", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Default.svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/Default.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/Default.svg" + } } ] }, @@ -5840,7 +6784,10 @@ "symbol": "IMBU", "precision": 12, "type": "native", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Imbue_(IMBU).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/IMBU.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/IMBU.svg" + } } ], "externalApi": { @@ -5874,7 +6821,10 @@ "symbol": "ROC", "precision": 12, "type": "native", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Rococo_(ROC).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/ROC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/ROC.svg" + } } ] }, @@ -5899,7 +6849,10 @@ "symbol": "TNKR", "precision": 12, "type": "native", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Tinkernet_(TNKR).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/TNKR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/TNKR.svg" + } } ], "externalApi": { @@ -5932,7 +6885,10 @@ "symbol": "AMPE", "precision": 12, "type": "native", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Amplitude_(AMPE).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/AMPE.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/AMPE.svg" + } }, { "name": "Kusama", @@ -5941,7 +6897,10 @@ "precision": 12, "type": "orml", "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kusama_(KSM).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KSM.svg" + }, "typeExtras": { "currencyIdScale": "0x0100", "currencyIdType": "SpacewalkPrimitivesCurrencyId", @@ -5956,7 +6915,10 @@ "precision": 6, "type": "orml", "priceId": "tether", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDT.svg" + }, "typeExtras": { "currencyIdScale": "0x0101", "currencyIdType": "SpacewalkPrimitivesCurrencyId", @@ -5996,7 +6958,10 @@ "precision": 12, "type": "native", "priceId": "pendulum-chain", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Pendulum_(PEN).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PEN.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PEN.svg" + } }, { "name": "Polkadot", @@ -6005,7 +6970,10 @@ "precision": 10, "type": "orml", "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Polkadot_(DOT).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/DOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/DOT.svg" + }, "typeExtras": { "currencyIdScale": "0x0100", "currencyIdType": "SpacewalkPrimitivesCurrencyId", @@ -6020,7 +6988,10 @@ "precision": 6, "type": "orml", "priceId": "tether", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDT.svg" + }, "typeExtras": { "currencyIdScale": "0x0101", "currencyIdType": "SpacewalkPrimitivesCurrencyId", @@ -6035,7 +7006,10 @@ "precision": 6, "type": "orml", "priceId": "usd-coin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDC.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDC.svg" + }, "typeExtras": { "currencyIdScale": "0x0102", "currencyIdType": "SpacewalkPrimitivesCurrencyId", @@ -6050,7 +7024,10 @@ "precision": 18, "type": "orml", "priceId": "moonbeam", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Moonbeam_(GLMR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/GLMR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/GLMR.svg" + }, "typeExtras": { "currencyIdScale": "0x0106", "currencyIdType": "SpacewalkPrimitivesCurrencyId", @@ -6064,7 +7041,10 @@ "symbol": "PINK", "precision": 10, "type": "orml", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Pink.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PINK.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PINK.svg" + }, "typeExtras": { "currencyIdScale": "0x0107", "currencyIdType": "SpacewalkPrimitivesCurrencyId", @@ -6079,13 +7059,88 @@ "precision": 12, "type": "orml", "priceId": "hydradx", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/HydraDX_(HDX).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/HDX.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/HDX.svg" + }, "typeExtras": { "currencyIdScale": "0x0108", "currencyIdType": "SpacewalkPrimitivesCurrencyId", "existentialDeposit": "1000", "transfersEnabled": true } + }, + { + "name": "Astar", + "assetId": 14, + "symbol": "ASTR", + "precision": 18, + "type": "orml", + "priceId": "astar", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/ASTR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/ASTR.svg" + }, + "typeExtras": { + "currencyIdScale": "0x0109", + "currencyIdType": "SpacewalkPrimitivesCurrencyId", + "existentialDeposit": "1000000", + "transfersEnabled": true + } + }, + { + "name": "vDOT", + "assetId": 15, + "symbol": "vDOT", + "precision": 10, + "type": "orml", + "priceId": "voucher-dot", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vDOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vDOT.svg" + }, + "typeExtras": { + "currencyIdScale": "0x010a", + "currencyIdType": "SpacewalkPrimitivesCurrencyId", + "existentialDeposit": "1000000", + "transfersEnabled": true + } + }, + { + "name": "Bifrost", + "assetId": 16, + "symbol": "BNC", + "precision": 12, + "type": "orml", + "priceId": "bifrost-native-coin", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/BNC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/BNC.svg" + }, + "typeExtras": { + "currencyIdScale": "0x010b", + "currencyIdType": "SpacewalkPrimitivesCurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "name": "Should be included in scripts/data/assetsNameMap", + "assetId": 17, + "symbol": "USDC.axl", + "precision": 6, + "type": "orml", + "priceId": "axlusdc", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDCaxl.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDCaxl.svg" + }, + "typeExtras": { + "currencyIdScale": "0x010c", + "currencyIdType": "SpacewalkPrimitivesCurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } } ], "explorers": [ @@ -6130,7 +7185,10 @@ "precision": 9, "type": "native", "priceId": "bittensor", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Bittensor_(TAO).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/TAO_bittensor.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/TAO_bittensor.svg" + } } ], "explorers": [ @@ -6175,7 +7233,10 @@ "precision": 12, "type": "native", "priceId": "vara-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Vara.svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/VARA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/VARA.svg" + } } ], "explorers": [ @@ -6236,7 +7297,10 @@ "precision": 10, "type": "native", "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Polkadot_(DOT).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/DOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/DOT.svg" + } } ], "explorers": [ @@ -6286,7 +7350,10 @@ "precision": 12, "type": "native", "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kusama_(KSM).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KSM.svg" + } } ], "explorers": [ @@ -6344,7 +7411,10 @@ "precision": 10, "type": "native", "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Polkadot_(DOT).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/DOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/DOT.svg" + } } ], "explorers": [ @@ -6412,7 +7482,10 @@ "precision": 10, "type": "native", "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Polkadot_(DOT).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/DOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/DOT.svg" + } } ], "explorers": [ @@ -6470,7 +7543,10 @@ "precision": 12, "type": "native", "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kusama_(KSM).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KSM.svg" + } } ], "explorers": [ @@ -6520,7 +7596,10 @@ "precision": 10, "type": "native", "priceId": "polimec", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/PLMC.svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PLMC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PLMC.svg" + } } ], "explorers": [ @@ -6585,7 +7664,10 @@ "symbol": "WND", "precision": 12, "type": "native", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Westend_(WND).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/WND.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/WND.svg" + } } ] }, @@ -6602,28 +7684,16 @@ ], "nodes": [ { - "url": "wss://avail-mainnet.public.blastapi.io/", - "name": "Bware node" - }, - { - "url": "wss://avail-rpc.rubynodes.io/", - "name": "RubyNode node" - }, - { - "url": "wss://avail-us.brightlystake.com", - "name": "BrightlyStake node" + "url": "wss://zeref-api.slowops.xyz/ws", + "name": "Turing node" }, { - "url": "wss://rpc-avail.globalstake.io", - "name": "GlobalStake node" + "url": "wss://avail-mainnet.public.blastapi.io/", + "name": "Blastapi node" }, { "url": "wss://avail.rpc.bountyblok.io", "name": "Bountyblok node" - }, - { - "url": "wss://avail.public.curie.radiumblock.co/ws", - "name": "RadiumBlock node" } ], "assets": [ @@ -6634,7 +7704,10 @@ "precision": 18, "type": "native", "priceId": "avail", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Avail_(AVAIL).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/AVAIL.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/AVAIL.svg" + } } ], "explorers": [ @@ -6690,7 +7763,10 @@ "precision": 12, "type": "native", "staking": "relaychain", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Westend_(WND).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/WND.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/WND.svg" + } } ], "externalApi": { @@ -6733,7 +7809,10 @@ "symbol": "WND", "precision": 12, "type": "native", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Westend_(WND).svg" + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/WND.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/WND.svg" + } } ] } diff --git a/src/renderer/shared/config/tokens/tokens.json b/src/renderer/shared/config/tokens/tokens.json index 3537ed860c..164556a3c2 100644 --- a/src/renderer/shared/config/tokens/tokens.json +++ b/src/renderer/shared/config/tokens/tokens.json @@ -3,7 +3,10 @@ "name": "Polkadot", "precision": 10, "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Polkadot_(DOT).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/DOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/DOT.svg" + }, "symbol": "DOT", "isTestToken": false, "chains": [ @@ -166,7 +169,10 @@ "name": "Kusama", "precision": 12, "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kusama_(KSM).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KSM.svg" + }, "symbol": "KSM", "isTestToken": false, "chains": [ @@ -348,7 +354,10 @@ "name": "Remark", "precision": 10, "priceId": "rmrk", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/RMRK.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/RMRK.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/RMRK.svg" + }, "symbol": "RMRK", "isTestToken": false, "chains": [ @@ -416,7 +425,10 @@ { "name": "Chaos", "precision": 10, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/CHAOS.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/CHAOS.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/CHAOS.svg" + }, "symbol": "CHAOS", "isTestToken": false, "chains": [ @@ -435,7 +447,10 @@ { "name": "Chrwna", "precision": 10, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/CHRWNA.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/CHRWNA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/CHRWNA.svg" + }, "symbol": "CHRWNA", "isTestToken": false, "chains": [ @@ -454,7 +469,10 @@ { "name": "Shibatales", "precision": 0, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Default.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/Default.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/Default.svg" + }, "symbol": "SHIBATALES", "isTestToken": false, "chains": [ @@ -473,7 +491,10 @@ { "name": "Bill Coin", "precision": 8, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/BILLCOIN.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/BILLCOIN.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/BILLCOIN.svg" + }, "symbol": "BILLCOIN", "isTestToken": false, "chains": [ @@ -493,7 +514,10 @@ "name": "USD Tether", "precision": 6, "priceId": "tether", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDT.svg" + }, "symbol": "USDT", "isTestToken": false, "chains": [ @@ -726,7 +750,10 @@ "name": "Karura", "precision": 12, "priceId": "karura", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Karura_(KAR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KAR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KAR.svg" + }, "symbol": "KAR", "isTestToken": false, "chains": [ @@ -809,7 +836,10 @@ "name": "Acala SEED", "precision": 12, "priceId": "ausd-seed-karura", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/aSEED-Kusama.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/aSEEDk.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/aSEEDk.svg" + }, "symbol": "aSEEDk", "isTestToken": false, "chains": [ @@ -924,7 +954,10 @@ "name": "Bifrost", "precision": 12, "priceId": "bifrost-native-coin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Bifrost_(BNC).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/BNC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/BNC.svg" + }, "symbol": "BNC", "isTestToken": false, "chains": [ @@ -1030,6 +1063,19 @@ "existentialDeposit": "0", "transfersEnabled": true } + }, + { + "chainId": "0x5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "name": "Pendulum", + "assetId": 16, + "assetSymbol": "BNC", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x010b", + "currencyIdType": "SpacewalkPrimitivesCurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } } ] }, @@ -1037,7 +1083,10 @@ "name": "Liquid KSM", "precision": 12, "priceId": "liquid-ksm", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/lKSM.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/LKSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/LKSM.svg" + }, "symbol": "LKSM", "isTestToken": false, "chains": [ @@ -1106,7 +1155,10 @@ "name": "Phala", "precision": 12, "priceId": "pha", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Phala_(PHA).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PHA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PHA.svg" + }, "symbol": "PHA", "isTestToken": false, "chains": [ @@ -1242,7 +1294,10 @@ "name": "Kintsugi", "precision": 12, "priceId": "kintsugi", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kintsugi_(KINT).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KINT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KINT.svg" + }, "symbol": "KINT", "isTestToken": false, "chains": [ @@ -1321,7 +1376,10 @@ "name": "KINT Bitcoin", "precision": 8, "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/kBTC.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/kBTC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/kBTC.svg" + }, "symbol": "kBTC", "isTestToken": false, "chains": [ @@ -1425,7 +1483,10 @@ { "name": "Taiga", "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Taiga_(TAI).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/TAI.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/TAI.svg" + }, "symbol": "TAI", "isTestToken": false, "chains": [ @@ -1447,7 +1508,10 @@ { "name": "vs Kusama", "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vsKSM.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vsKSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vsKSM.svg" + }, "symbol": "vsKSM", "isTestToken": false, "chains": [ @@ -1495,7 +1559,10 @@ { "name": "tai Kusama", "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/taiKSM.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/taiKSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/taiKSM.svg" + }, "symbol": "taiKSM", "isTestToken": false, "chains": [ @@ -1518,7 +1585,10 @@ "name": "Quartz", "precision": 18, "priceId": "quartz", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Quartz_(QTZ).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/QTZ.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/QTZ.svg" + }, "symbol": "QTZ", "isTestToken": false, "chains": [ @@ -1548,7 +1618,10 @@ "name": "Moonriver", "precision": 18, "priceId": "moonriver", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Moonriver_(MOVR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/MOVR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/MOVR.svg" + }, "symbol": "MOVR", "isTestToken": false, "chains": [ @@ -1620,7 +1693,10 @@ { "name": "Parallel Heiko", "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/HKO.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/HKO.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/HKO.svg" + }, "symbol": "HKO", "isTestToken": false, "chains": [ @@ -1683,7 +1759,10 @@ "name": "Crust Shadow", "precision": 12, "priceId": "crust-storage-market", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Crust_Shadow_(CSM).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/CSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/CSM.svg" + }, "symbol": "CSM", "isTestToken": false, "chains": [ @@ -1726,7 +1805,10 @@ "name": "Calamari Network", "precision": 12, "priceId": "calamari-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Calamari_(KMA).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KMA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KMA.svg" + }, "symbol": "KMA", "isTestToken": false, "chains": [ @@ -1769,7 +1851,10 @@ "name": "Integritee", "precision": 12, "priceId": "integritee", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Integritee_Parachain_(TEER).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/TEER.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/TEER.svg" + }, "symbol": "TEER", "isTestToken": false, "chains": [ @@ -1808,7 +1893,10 @@ { "name": "KICO", "precision": 14, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/KICO_(KICO).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KICO.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KICO.svg" + }, "symbol": "KICO", "isTestToken": false, "chains": [ @@ -1831,7 +1919,10 @@ "name": "Metaverse.Network Pioneer", "precision": 18, "priceId": "metaverse-network-pioneer", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Bit.Country_Pioneer_(NEER).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/NEER.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/NEER.svg" + }, "symbol": "NEER", "isTestToken": false, "chains": [ @@ -1864,7 +1955,10 @@ "name": "Basilisk", "precision": 12, "priceId": "basilisk", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Basilisk_(BSX).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/BSX.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/BSX.svg" + }, "symbol": "BSX", "isTestToken": false, "chains": [ @@ -1904,7 +1998,10 @@ "name": "Altair", "precision": 18, "priceId": "altair", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Altair_(AIR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/AIR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/AIR.svg" + }, "symbol": "AIR", "isTestToken": false, "chains": [ @@ -1934,7 +2031,10 @@ "name": "Genshiro", "precision": 9, "priceId": "genshiro", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Genshiro_(GENS).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/GENS.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/GENS.svg" + }, "symbol": "GENS", "isTestToken": false, "chains": [ @@ -1967,7 +2067,10 @@ "name": "Equilibrium USD", "precision": 9, "priceId": "tether", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/EQD.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/EQD.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/EQD.svg" + }, "symbol": "EQD", "isTestToken": false, "chains": [ @@ -2010,7 +2113,10 @@ "name": "Darwinia Crab", "precision": 18, "priceId": "darwinia-crab-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Crab_(CRAB).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/CRAB.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/CRAB.svg" + }, "symbol": "CRAB", "isTestToken": false, "chains": [ @@ -2043,7 +2149,10 @@ "name": "Moonbeam", "precision": 18, "priceId": "moonbeam", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Moonbeam_(GLMR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/GLMR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/GLMR.svg" + }, "symbol": "GLMR", "isTestToken": false, "chains": [ @@ -2132,7 +2241,10 @@ "name": "Acala SEED", "precision": 12, "priceId": "ausd-seed-acala", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/aSEED-Polkadot.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/aSEEDp.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/aSEEDp.svg" + }, "symbol": "aSEEDp", "isTestToken": false, "chains": [ @@ -2185,7 +2297,10 @@ "name": "Acala", "precision": 12, "priceId": "acala", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Acala_(ACA).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/ACA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/ACA.svg" + }, "symbol": "ACA", "isTestToken": false, "chains": [ @@ -2231,7 +2346,10 @@ { "name": "Parallel Finance", "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/PARA.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PARA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PARA.svg" + }, "symbol": "PARA", "isTestToken": false, "chains": [ @@ -2271,7 +2389,10 @@ "name": "Interlay", "precision": 10, "priceId": "interlay", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Interlay_(INTR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/INTR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/INTR.svg" + }, "symbol": "INTR", "isTestToken": false, "chains": [ @@ -2350,7 +2471,10 @@ "name": "Interlay Bitcoin", "precision": 8, "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/iBTC.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/iBTC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/iBTC.svg" + }, "symbol": "iBTC", "isTestToken": false, "chains": [ @@ -2442,7 +2566,10 @@ "name": "Astar", "precision": 18, "priceId": "astar", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Astar_(ASTR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/ASTR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/ASTR.svg" + }, "symbol": "ASTR", "isTestToken": false, "chains": [ @@ -2511,6 +2638,19 @@ "existentialDeposit": "10000000000000000", "transfersEnabled": true } + }, + { + "chainId": "0x5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "name": "Pendulum", + "assetId": 14, + "assetSymbol": "ASTR", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0109", + "currencyIdType": "SpacewalkPrimitivesCurrencyId", + "existentialDeposit": "1000000", + "transfersEnabled": true + } } ] }, @@ -2518,7 +2658,10 @@ "name": "Centrifuge", "precision": 18, "priceId": "centrifuge", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Centrifuge_(CFG).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/CFG.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/CFG.svg" + }, "symbol": "CFG", "isTestToken": false, "chains": [ @@ -2558,7 +2701,10 @@ "name": "Equilibrium", "precision": 9, "priceId": "equilibrium-token", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Equilibrium_(EQ).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/EQ.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/EQ.svg" + }, "symbol": "EQ", "isTestToken": false, "chains": [ @@ -2591,7 +2737,10 @@ "name": "HydraDX", "precision": 12, "priceId": "hydradx", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/HydraDX_(HDX).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/HDX.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/HDX.svg" + }, "symbol": "HDX", "isTestToken": false, "chains": [ @@ -2631,7 +2780,10 @@ "name": "Nodle", "precision": 11, "priceId": "nodle-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Nodle_(NODL).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/NODL.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/NODL.svg" + }, "symbol": "NODL", "isTestToken": false, "chains": [ @@ -2664,7 +2816,10 @@ "name": "Darwinia", "precision": 18, "priceId": "darwinia-network-native-token", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Darwinia_(RING).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/RING.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/RING.svg" + }, "symbol": "xcRING", "isTestToken": false, "chains": [ @@ -2683,7 +2838,10 @@ { "name": "OriginTrail", "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/OriginTrail_(OTP).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/OTP.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/OTP.svg" + }, "symbol": "xcOTP", "isTestToken": false, "chains": [ @@ -2703,7 +2861,10 @@ "name": "vDOT", "precision": 10, "priceId": "voucher-dot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vDOT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vDOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vDOT.svg" + }, "symbol": "vDOT", "isTestToken": false, "chains": [ @@ -2752,13 +2913,29 @@ "existentialDeposit": "1000000", "transfersEnabled": true } + }, + { + "chainId": "0x5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "name": "Pendulum", + "assetId": 15, + "assetSymbol": "vDOT", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x010a", + "currencyIdType": "SpacewalkPrimitivesCurrencyId", + "existentialDeposit": "1000000", + "transfersEnabled": true + } } ] }, { "name": "vFIL", "precision": 18, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vFIL.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vFIL.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vFIL.svg" + }, "symbol": "vFIL", "isTestToken": false, "chains": [ @@ -2791,7 +2968,10 @@ "name": "vGLMR", "precision": 18, "priceId": "voucher-glmr", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vGLMR.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vGLMR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vGLMR.svg" + }, "symbol": "vGLMR", "isTestToken": false, "chains": [ @@ -2824,7 +3004,10 @@ "name": "Manta token", "precision": 18, "priceId": "manta-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Manta_(MANTA).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/MANTA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/MANTA.svg" + }, "symbol": "MANTA", "isTestToken": false, "chains": [ @@ -2857,7 +3040,10 @@ "name": "USD Coin", "precision": 6, "priceId": "usd-coin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDC.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDC.svg" + }, "symbol": "USDC", "isTestToken": false, "chains": [ @@ -2926,7 +3112,10 @@ "name": "Litentry", "precision": 12, "priceId": "litentry", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Litentry_(LIT).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/LIT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/LIT.svg" + }, "symbol": "xcLIT", "isTestToken": false, "chains": [ @@ -2946,7 +3135,10 @@ "name": "Shiden", "precision": 18, "priceId": "shiden", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Shiden_(SDN).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/SDN.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/SDN.svg" + }, "symbol": "SDN", "isTestToken": false, "chains": [ @@ -2983,7 +3175,10 @@ "name": "Robonomics", "precision": 9, "priceId": "robonomics-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Robonomics_(XRT).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/XRT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/XRT.svg" + }, "symbol": "XRT", "isTestToken": false, "chains": [ @@ -3023,7 +3218,10 @@ "name": "v Kusama", "precision": 12, "priceId": "voucher-ksm", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vKSM.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vKSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vKSM.svg" + }, "symbol": "vKSM", "isTestToken": false, "chains": [ @@ -3078,7 +3276,10 @@ { "name": "vBNC", "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vBNC.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vBNC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vBNC.svg" + }, "symbol": "vBNC", "isTestToken": false, "chains": [ @@ -3110,7 +3311,10 @@ { "name": "vMOVR", "precision": 18, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vMOVR.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vMOVR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vMOVR.svg" + }, "symbol": "vMOVR", "isTestToken": false, "chains": [ @@ -3143,7 +3347,10 @@ "name": "Mangata X", "precision": 18, "priceId": "mangata-x", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Mangata_X_(MGX).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/MGX.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/MGX.svg" + }, "symbol": "MGX", "isTestToken": false, "chains": [ @@ -3176,7 +3383,10 @@ "name": "Turing", "precision": 10, "priceId": "turing-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Turing_(TUR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/TUR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/TUR.svg" + }, "symbol": "TUR", "isTestToken": false, "chains": [ @@ -3226,7 +3436,10 @@ "name": "Zenlink Network", "precision": 18, "priceId": "zenlink-network-token", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Zenlink_(ZLK).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/ZLK.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/ZLK.svg" + }, "symbol": "ZLK", "isTestToken": false, "chains": [ @@ -3271,7 +3484,10 @@ { "name": "Tinkernet", "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Tinkernet_(TNKR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/TNKR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/TNKR.svg" + }, "symbol": "TNKR", "isTestToken": false, "chains": [ @@ -3300,7 +3516,10 @@ { "name": "s Kusama", "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/sKSM.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/sKSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/sKSM.svg" + }, "symbol": "sKSM", "isTestToken": false, "chains": [ @@ -3333,7 +3552,10 @@ "name": "Darwinia Crab", "precision": 18, "priceId": "darwinia-network-native-token", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Crab_(CRAB).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/CRAB.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/CRAB.svg" + }, "symbol": "CRAB", "isTestToken": false, "chains": [ @@ -3352,7 +3574,10 @@ { "name": "Bit.Country Pioneer", "precision": 18, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/BIT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/BIT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/BIT.svg" + }, "symbol": "BIT", "isTestToken": false, "chains": [ @@ -3372,7 +3597,10 @@ "name": "Picasso", "precision": 12, "priceId": "picasso", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Picasso_(PICA).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PICA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PICA.svg" + }, "symbol": "PICA", "isTestToken": false, "chains": [ @@ -3392,7 +3620,10 @@ "name": "KILT Spiritnet", "precision": 15, "priceId": "kilt-protocol", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kilt_(KILT).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KILT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KILT.svg" + }, "symbol": "KILT", "isTestToken": false, "chains": [ @@ -3422,7 +3653,10 @@ "name": "Liquid DOT", "precision": 10, "priceId": "liquid-staking-dot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/lDOT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/LDOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/LDOT.svg" + }, "symbol": "LDOT", "isTestToken": false, "chains": [ @@ -3477,7 +3711,10 @@ { "name": "TAP", "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Tapio_(TAP).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/TAP.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/TAP.svg" + }, "symbol": "TAP", "isTestToken": false, "chains": [ @@ -3499,7 +3736,10 @@ { "name": "tDOT", "precision": 10, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/tDOT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/tDOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/tDOT.svg" + }, "symbol": "tDOT", "isTestToken": false, "chains": [ @@ -3522,7 +3762,10 @@ "name": "DAI", "precision": 18, "priceId": "dai", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/DAI.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/DAI.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/DAI.svg" + }, "symbol": "DAI", "isTestToken": false, "chains": [ @@ -3570,7 +3813,10 @@ { "name": "PINK", "precision": 10, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Pink.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PINK.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PINK.svg" + }, "symbol": "PINK", "isTestToken": false, "chains": [ @@ -3629,7 +3875,10 @@ "name": "UNIQUE", "precision": 18, "priceId": "unique-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Unique_(UNQ).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/UNQ.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/UNQ.svg" + }, "symbol": "UNQ", "isTestToken": false, "chains": [ @@ -3661,7 +3910,10 @@ { "name": "Clover Finance", "precision": 18, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/CLV_(CLV).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/CLV.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/CLV.svg" + }, "symbol": "CLV", "isTestToken": false, "chains": [ @@ -3681,7 +3933,10 @@ "name": "DED", "precision": 10, "priceId": "dot-is-ded", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/DED.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/DED.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/DED.svg" + }, "symbol": "DED", "isTestToken": false, "chains": [ @@ -3713,7 +3968,10 @@ { "name": "DOTA", "precision": 4, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/DOTA.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/DOTA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/DOTA.svg" + }, "symbol": "DOTA", "isTestToken": false, "chains": [ @@ -3745,7 +4003,10 @@ { "name": "STINK", "precision": 10, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/STINK.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/STINK.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/STINK.svg" + }, "symbol": "STINK", "isTestToken": false, "chains": [ @@ -3777,7 +4038,10 @@ { "name": "GABE", "precision": 20, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/GABE.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/GABE.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/GABE.svg" + }, "symbol": "GABE", "isTestToken": false, "chains": [ @@ -3809,7 +4073,10 @@ { "name": "WUD", "precision": 10, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/WUD.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/WUD.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/WUD.svg" + }, "symbol": "WUD", "isTestToken": false, "chains": [ @@ -3841,7 +4108,10 @@ { "name": "WIFD", "precision": 10, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/WIFD.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/WIFD.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/WIFD.svg" + }, "symbol": "WIFD", "isTestToken": false, "chains": [ @@ -3873,7 +4143,10 @@ { "name": "BORK", "precision": 10, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/BORK.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/BORK.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/BORK.svg" + }, "symbol": "BORK", "isTestToken": false, "chains": [ @@ -3905,7 +4178,10 @@ { "name": "BUNS", "precision": 10, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/BUNS.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/BUNS.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/BUNS.svg" + }, "symbol": "BUNS", "isTestToken": false, "chains": [ @@ -3937,7 +4213,10 @@ { "name": "KOL", "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/KOL.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KOL.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KOL.svg" + }, "symbol": "KOL", "isTestToken": false, "chains": [ @@ -3969,7 +4248,10 @@ { "name": "Kitsugi KSM", "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kusama_(KSM).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/qKSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/qKSM.svg" + }, "symbol": "qKSM", "isTestToken": false, "chains": [ @@ -3991,7 +4273,10 @@ { "name": "USD Tether", "precision": 6, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/qUSDT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/qUSDT.svg" + }, "symbol": "qUSDT", "isTestToken": false, "chains": [ @@ -4027,7 +4312,10 @@ "name": "Zeitgeist", "precision": 10, "priceId": "zeitgeist", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Zeitgeist_(ZTG).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/ZTG.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/ZTG.svg" + }, "symbol": "ZTG", "isTestToken": false, "chains": [ @@ -4057,7 +4345,10 @@ "name": "Subsocial", "precision": 10, "priceId": "subsocial", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Subsocial_(SUB).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/SUB.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/SUB.svg" + }, "symbol": "SUB", "isTestToken": false, "chains": [ @@ -4086,7 +4377,10 @@ { "name": "LRNA", "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Lerna_(LRNA).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/LRNA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/LRNA.svg" + }, "symbol": "LRNA", "isTestToken": false, "chains": [ @@ -4109,7 +4403,10 @@ "name": "WETH-Acala", "precision": 18, "priceId": "ethereum-wormhole", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/WETH-Acala.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/WETH-Acala.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/WETH-Acala.svg" + }, "symbol": "WETH-Acala", "isTestToken": false, "chains": [ @@ -4145,7 +4442,10 @@ "name": "WBTC-Acala", "precision": 8, "priceId": "wrapped-bitcoin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/WBTC-Acala.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/WBTC-Acala.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/WBTC-Acala.svg" + }, "symbol": "WBTC-Acala", "isTestToken": false, "chains": [ @@ -4181,7 +4481,10 @@ "name": "Crust", "precision": 12, "priceId": "crust-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Crust_(CRU).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/CRU.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/CRU.svg" + }, "symbol": "CRU", "isTestToken": false, "chains": [ @@ -4204,7 +4507,10 @@ "name": "MYTH", "precision": 18, "priceId": "mythos", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/MYTH.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/MYTH.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/MYTH.svg" + }, "symbol": "MYTH", "isTestToken": false, "chains": [ @@ -4226,7 +4532,10 @@ { "name": "vASTR", "precision": 18, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vASTR.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vASTR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vASTR.svg" + }, "symbol": "vASTR", "isTestToken": false, "chains": [ @@ -4258,10 +4567,39 @@ } ] }, + { + "name": "Ajuna", + "precision": 12, + "priceId": "ajuna-network-2", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/AJUN.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/AJUN.svg" + }, + "symbol": "AJUN", + "isTestToken": false, + "chains": [ + { + "chainId": "0xafdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "name": "Hydration", + "assetId": 44, + "assetSymbol": "AJUN", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x20000000", + "currencyIdType": "u32", + "existentialDeposit": "100786131828", + "transfersEnabled": true + } + } + ] + }, { "name": "Interlay DOT", "precision": 10, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Polkadot_(DOT).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/qDOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/qDOT.svg" + }, "symbol": "qDOT", "isTestToken": false, "chains": [ @@ -4284,7 +4622,10 @@ "name": "Aleph Zero", "precision": 12, "priceId": "aleph-zero", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Aleph_Zero_(AZERO).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/AZERO.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/AZERO.svg" + }, "symbol": "AZERO", "isTestToken": false, "chains": [ @@ -4300,7 +4641,10 @@ { "name": "vsDOT", "precision": 10, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vsDOT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vsDOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vsDOT.svg" + }, "symbol": "vsDOT", "isTestToken": false, "chains": [ @@ -4322,7 +4666,10 @@ { "name": "vMANTA", "precision": 18, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vMANTA.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vMANTA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vMANTA.svg" + }, "symbol": "vMANTA", "isTestToken": false, "chains": [ @@ -4345,7 +4692,10 @@ "name": "Litentry", "precision": 18, "priceId": "litentry", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Litentry_(LIT).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/LIT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/LIT.svg" + }, "symbol": "LIT", "isTestToken": false, "chains": [ @@ -4362,7 +4712,10 @@ "name": "Etherium", "precision": 18, "priceId": "ethereum", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Ethereum_(ETH).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/ETH.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/ETH.svg" + }, "symbol": "ETH", "isTestToken": false, "chains": [ @@ -4384,7 +4737,10 @@ { "name": "Imbue", "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Imbue_(IMBU).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/IMBU.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/IMBU.svg" + }, "symbol": "IMBU", "isTestToken": false, "chains": [ @@ -4400,7 +4756,10 @@ { "name": "Amplitude", "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Amplitude_(AMPE).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/AMPE.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/AMPE.svg" + }, "symbol": "AMPE", "isTestToken": false, "chains": [ @@ -4417,7 +4776,10 @@ "name": "Pendulum token", "precision": 12, "priceId": "pendulum-chain", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Pendulum_(PEN).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PEN.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PEN.svg" + }, "symbol": "PEN", "isTestToken": false, "chains": [ @@ -4430,11 +4792,40 @@ } ] }, + { + "name": "Should be included in scripts/data/assetsNameMap", + "precision": 6, + "priceId": "axlusdc", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDCaxl.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDCaxl.svg" + }, + "symbol": "USDC.axl", + "isTestToken": false, + "chains": [ + { + "chainId": "0x5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "name": "Pendulum", + "assetId": 17, + "assetSymbol": "USDC.axl", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x010c", + "currencyIdType": "SpacewalkPrimitivesCurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + } + ] + }, { "name": "TAO", "precision": 9, "priceId": "bittensor", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Bittensor_(TAO).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/TAO_bittensor.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/TAO_bittensor.svg" + }, "symbol": "TAO", "isTestToken": false, "chains": [ @@ -4451,7 +4842,10 @@ "name": "Vara", "precision": 12, "priceId": "vara-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Vara.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/VARA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/VARA.svg" + }, "symbol": "VARA", "isTestToken": false, "chains": [ @@ -4468,7 +4862,10 @@ "name": "Polimec token", "precision": 10, "priceId": "polimec", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/PLMC.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PLMC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PLMC.svg" + }, "symbol": "PLMC", "isTestToken": false, "chains": [ @@ -4485,7 +4882,10 @@ "name": "AVAIL", "precision": 18, "priceId": "avail", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Avail_(AVAIL).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/AVAIL.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/AVAIL.svg" + }, "symbol": "AVAIL", "isTestToken": false, "chains": [ @@ -4501,7 +4901,10 @@ { "name": "Westend", "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Westend_(WND).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/WND.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/WND.svg" + }, "symbol": "WND", "isTestToken": true, "chains": [ diff --git a/src/renderer/shared/config/tokens/tokens_dev.json b/src/renderer/shared/config/tokens/tokens_dev.json index 20df1d33e3..41fd6f5c05 100644 --- a/src/renderer/shared/config/tokens/tokens_dev.json +++ b/src/renderer/shared/config/tokens/tokens_dev.json @@ -3,7 +3,10 @@ "name": "Polkadot", "precision": 10, "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Polkadot_(DOT).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/DOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/DOT.svg" + }, "symbol": "DOT", "isTestToken": false, "chains": [ @@ -170,7 +173,10 @@ "name": "Kusama", "precision": 12, "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kusama_(KSM).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KSM.svg" + }, "symbol": "KSM", "isTestToken": false, "chains": [ @@ -366,7 +372,10 @@ { "name": "Westend", "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Westend_(WND).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/WND.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/WND.svg" + }, "symbol": "WND", "isTestToken": true, "chains": [ @@ -410,7 +419,10 @@ { "name": "Siri", "precision": 10, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Default.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/Default.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/Default.svg" + }, "symbol": "SIRI", "isTestToken": true, "chains": [ @@ -429,7 +441,10 @@ { "name": "JOE token", "precision": 3, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Default.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/Default.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/Default.svg" + }, "symbol": "JOE", "isTestToken": true, "chains": [ @@ -450,7 +465,10 @@ "name": "Remark", "precision": 10, "priceId": "rmrk", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/RMRK.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/RMRK.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/RMRK.svg" + }, "symbol": "RMRK", "isTestToken": false, "chains": [ @@ -520,7 +538,10 @@ { "name": "Chaos", "precision": 10, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/CHAOS.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/CHAOS.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/CHAOS.svg" + }, "symbol": "CHAOS", "isTestToken": false, "chains": [ @@ -539,7 +560,10 @@ { "name": "Chrwna", "precision": 10, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/CHRWNA.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/CHRWNA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/CHRWNA.svg" + }, "symbol": "CHRWNA", "isTestToken": false, "chains": [ @@ -558,7 +582,10 @@ { "name": "Shibatales", "precision": 0, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Default.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/Default.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/Default.svg" + }, "symbol": "SHIBATALES", "isTestToken": false, "chains": [ @@ -577,7 +604,10 @@ { "name": "Bill Coin", "precision": 8, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/BILLCOIN.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/BILLCOIN.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/BILLCOIN.svg" + }, "symbol": "BILLCOIN", "isTestToken": false, "chains": [ @@ -597,7 +627,10 @@ "name": "USD Tether", "precision": 6, "priceId": "tether", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDT.svg" + }, "symbol": "USDT", "isTestToken": false, "chains": [ @@ -838,7 +871,10 @@ "name": "Karura", "precision": 12, "priceId": "karura", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Karura_(KAR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KAR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KAR.svg" + }, "symbol": "KAR", "isTestToken": false, "chains": [ @@ -925,7 +961,10 @@ "name": "Acala SEED", "precision": 12, "priceId": "ausd-seed-karura", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/aSEED-Kusama.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/aSEEDk.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/aSEEDk.svg" + }, "symbol": "aSEEDk", "isTestToken": false, "chains": [ @@ -1044,7 +1083,10 @@ "name": "Bifrost", "precision": 12, "priceId": "bifrost-native-coin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Bifrost_(BNC).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/BNC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/BNC.svg" + }, "symbol": "BNC", "isTestToken": false, "chains": [ @@ -1168,6 +1210,19 @@ "existentialDeposit": "0", "transfersEnabled": true } + }, + { + "chainId": "0x5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "name": "Pendulum", + "assetId": 16, + "assetSymbol": "BNC", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x010b", + "currencyIdType": "SpacewalkPrimitivesCurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } } ] }, @@ -1175,7 +1230,10 @@ "name": "Liquid KSM", "precision": 12, "priceId": "liquid-ksm", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/lKSM.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/LKSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/LKSM.svg" + }, "symbol": "LKSM", "isTestToken": false, "chains": [ @@ -1246,7 +1304,10 @@ "name": "Phala", "precision": 12, "priceId": "pha", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Phala_(PHA).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PHA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PHA.svg" + }, "symbol": "PHA", "isTestToken": false, "chains": [ @@ -1388,7 +1449,10 @@ "name": "Kintsugi", "precision": 12, "priceId": "kintsugi", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kintsugi_(KINT).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KINT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KINT.svg" + }, "symbol": "KINT", "isTestToken": false, "chains": [ @@ -1470,7 +1534,10 @@ "name": "KINT Bitcoin", "precision": 8, "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/kBTC.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/kBTC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/kBTC.svg" + }, "symbol": "kBTC", "isTestToken": false, "chains": [ @@ -1577,7 +1644,10 @@ { "name": "Taiga", "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Taiga_(TAI).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/TAI.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/TAI.svg" + }, "symbol": "TAI", "isTestToken": false, "chains": [ @@ -1599,7 +1669,10 @@ { "name": "vs Kusama", "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vsKSM.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vsKSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vsKSM.svg" + }, "symbol": "vsKSM", "isTestToken": false, "chains": [ @@ -1647,7 +1720,10 @@ { "name": "tai Kusama", "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/taiKSM.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/taiKSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/taiKSM.svg" + }, "symbol": "taiKSM", "isTestToken": false, "chains": [ @@ -1670,7 +1746,10 @@ "name": "Quartz", "precision": 18, "priceId": "quartz", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Quartz_(QTZ).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/QTZ.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/QTZ.svg" + }, "symbol": "QTZ", "isTestToken": false, "chains": [ @@ -1700,7 +1779,10 @@ "name": "Moonriver", "precision": 18, "priceId": "moonriver", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Moonriver_(MOVR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/MOVR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/MOVR.svg" + }, "symbol": "MOVR", "isTestToken": false, "chains": [ @@ -1775,7 +1857,10 @@ { "name": "Parallel Heiko", "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/HKO.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/HKO.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/HKO.svg" + }, "symbol": "HKO", "isTestToken": false, "chains": [ @@ -1840,7 +1925,10 @@ "name": "Crust Shadow", "precision": 12, "priceId": "crust-storage-market", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Crust_Shadow_(CSM).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/CSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/CSM.svg" + }, "symbol": "CSM", "isTestToken": false, "chains": [ @@ -1885,7 +1973,10 @@ "name": "Calamari Network", "precision": 12, "priceId": "calamari-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Calamari_(KMA).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KMA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KMA.svg" + }, "symbol": "KMA", "isTestToken": false, "chains": [ @@ -1930,7 +2021,10 @@ "name": "Integritee", "precision": 12, "priceId": "integritee", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Integritee_Parachain_(TEER).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/TEER.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/TEER.svg" + }, "symbol": "TEER", "isTestToken": false, "chains": [ @@ -1970,7 +2064,10 @@ { "name": "KICO", "precision": 14, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/KICO_(KICO).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KICO.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KICO.svg" + }, "symbol": "KICO", "isTestToken": false, "chains": [ @@ -1993,7 +2090,10 @@ "name": "Metaverse.Network Pioneer", "precision": 18, "priceId": "metaverse-network-pioneer", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Bit.Country_Pioneer_(NEER).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/NEER.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/NEER.svg" + }, "symbol": "NEER", "isTestToken": false, "chains": [ @@ -2027,7 +2127,10 @@ "name": "Basilisk", "precision": 12, "priceId": "basilisk", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Basilisk_(BSX).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/BSX.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/BSX.svg" + }, "symbol": "BSX", "isTestToken": false, "chains": [ @@ -2068,7 +2171,10 @@ "name": "Altair", "precision": 18, "priceId": "altair", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Altair_(AIR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/AIR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/AIR.svg" + }, "symbol": "AIR", "isTestToken": false, "chains": [ @@ -2098,7 +2204,10 @@ "name": "Genshiro", "precision": 9, "priceId": "genshiro", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Genshiro_(GENS).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/GENS.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/GENS.svg" + }, "symbol": "GENS", "isTestToken": false, "chains": [ @@ -2131,7 +2240,10 @@ "name": "Equilibrium USD", "precision": 9, "priceId": "tether", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/EQD.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/EQD.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/EQD.svg" + }, "symbol": "EQD", "isTestToken": false, "chains": [ @@ -2176,7 +2288,10 @@ "name": "Darwinia Crab", "precision": 18, "priceId": "darwinia-crab-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Crab_(CRAB).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/CRAB.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/CRAB.svg" + }, "symbol": "CRAB", "isTestToken": false, "chains": [ @@ -2210,7 +2325,10 @@ "name": "Litentry", "precision": 12, "priceId": "litentry", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Litentry_(LIT).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/LIT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/LIT.svg" + }, "symbol": "xcLIT", "isTestToken": false, "chains": [ @@ -2231,7 +2349,10 @@ "name": "Shiden", "precision": 18, "priceId": "shiden", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Shiden_(SDN).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/SDN.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/SDN.svg" + }, "symbol": "SDN", "isTestToken": false, "chains": [ @@ -2270,7 +2391,10 @@ "name": "Robonomics", "precision": 9, "priceId": "robonomics-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Robonomics_(XRT).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/XRT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/XRT.svg" + }, "symbol": "XRT", "isTestToken": false, "chains": [ @@ -2311,7 +2435,10 @@ "name": "v Kusama", "precision": 12, "priceId": "voucher-ksm", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vKSM.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vKSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vKSM.svg" + }, "symbol": "vKSM", "isTestToken": false, "chains": [ @@ -2368,7 +2495,10 @@ { "name": "vBNC", "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vBNC.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vBNC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vBNC.svg" + }, "symbol": "vBNC", "isTestToken": false, "chains": [ @@ -2401,7 +2531,10 @@ { "name": "vMOVR", "precision": 18, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vMOVR.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vMOVR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vMOVR.svg" + }, "symbol": "vMOVR", "isTestToken": false, "chains": [ @@ -2435,7 +2568,10 @@ "name": "Mangata X", "precision": 18, "priceId": "mangata-x", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Mangata_X_(MGX).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/MGX.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/MGX.svg" + }, "symbol": "MGX", "isTestToken": false, "chains": [ @@ -2469,7 +2605,10 @@ "name": "Turing", "precision": 10, "priceId": "turing-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Turing_(TUR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/TUR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/TUR.svg" + }, "symbol": "TUR", "isTestToken": false, "chains": [ @@ -2520,7 +2659,10 @@ { "name": "Test token", "precision": 18, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Default.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/Default.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/Default.svg" + }, "symbol": "DEV", "isTestToken": true, "chains": [ @@ -2536,7 +2678,10 @@ { "name": "Test token", "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Default.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/Default.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/Default.svg" + }, "symbol": "UNIT", "isTestToken": true, "chains": [ @@ -2564,7 +2709,10 @@ "name": "Zenlink Network", "precision": 18, "priceId": "zenlink-network-token", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Zenlink_(ZLK).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/ZLK.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/ZLK.svg" + }, "symbol": "ZLK", "isTestToken": false, "chains": [ @@ -2610,7 +2758,10 @@ { "name": "Kitsugi KSM", "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kusama_(KSM).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/qKSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/qKSM.svg" + }, "symbol": "qKSM", "isTestToken": false, "chains": [ @@ -2632,7 +2783,10 @@ { "name": "USD Tether", "precision": 6, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/qUSDT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/qUSDT.svg" + }, "symbol": "qUSDT", "isTestToken": false, "chains": [ @@ -2667,7 +2821,10 @@ { "name": "s Kusama", "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/sKSM.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/sKSM.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/sKSM.svg" + }, "symbol": "sKSM", "isTestToken": false, "chains": [ @@ -2700,7 +2857,10 @@ { "name": "Tinkernet", "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Tinkernet_(TNKR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/TNKR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/TNKR.svg" + }, "symbol": "TNKR", "isTestToken": false, "chains": [ @@ -2730,7 +2890,10 @@ "name": "Darwinia Crab", "precision": 18, "priceId": "darwinia-network-native-token", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Crab_(CRAB).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/CRAB.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/CRAB.svg" + }, "symbol": "CRAB", "isTestToken": false, "chains": [ @@ -2750,7 +2913,10 @@ { "name": "Bit.Country Pioneer", "precision": 18, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/BIT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/BIT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/BIT.svg" + }, "symbol": "BIT", "isTestToken": false, "chains": [ @@ -2771,7 +2937,10 @@ "name": "Picasso", "precision": 12, "priceId": "picasso", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Picasso_(PICA).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PICA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PICA.svg" + }, "symbol": "PICA", "isTestToken": false, "chains": [ @@ -2792,7 +2961,10 @@ "name": "KILT Spiritnet", "precision": 15, "priceId": "kilt-protocol", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Kilt_(KILT).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KILT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KILT.svg" + }, "symbol": "KILT", "isTestToken": false, "chains": [ @@ -2822,7 +2994,10 @@ "name": "Acala", "precision": 12, "priceId": "acala", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Acala_(ACA).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/ACA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/ACA.svg" + }, "symbol": "ACA", "isTestToken": false, "chains": [ @@ -2872,7 +3047,10 @@ "name": "Liquid DOT", "precision": 10, "priceId": "liquid-staking-dot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/lDOT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/LDOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/LDOT.svg" + }, "symbol": "LDOT", "isTestToken": false, "chains": [ @@ -2930,7 +3108,10 @@ "name": "Acala SEED", "precision": 12, "priceId": "ausd-seed-acala", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/aSEED-Polkadot.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/aSEEDp.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/aSEEDp.svg" + }, "symbol": "aSEEDp", "isTestToken": false, "chains": [ @@ -2986,7 +3167,10 @@ "name": "Moonbeam", "precision": 18, "priceId": "moonbeam", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Moonbeam_(GLMR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/GLMR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/GLMR.svg" + }, "symbol": "GLMR", "isTestToken": false, "chains": [ @@ -3076,7 +3260,10 @@ { "name": "Parallel Finance", "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/PARA.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PARA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PARA.svg" + }, "symbol": "PARA", "isTestToken": false, "chains": [ @@ -3116,7 +3303,10 @@ { "name": "TAP", "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Tapio_(TAP).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/TAP.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/TAP.svg" + }, "symbol": "TAP", "isTestToken": false, "chains": [ @@ -3138,7 +3328,10 @@ { "name": "tDOT", "precision": 10, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/tDOT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/tDOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/tDOT.svg" + }, "symbol": "tDOT", "isTestToken": false, "chains": [ @@ -3161,7 +3354,10 @@ "name": "Interlay", "precision": 10, "priceId": "interlay", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Interlay_(INTR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/INTR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/INTR.svg" + }, "symbol": "INTR", "isTestToken": false, "chains": [ @@ -3243,7 +3439,10 @@ "name": "Astar", "precision": 18, "priceId": "astar", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Astar_(ASTR).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/ASTR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/ASTR.svg" + }, "symbol": "ASTR", "isTestToken": false, "chains": [ @@ -3314,6 +3513,19 @@ "existentialDeposit": "10000000000000000", "transfersEnabled": true } + }, + { + "chainId": "0x5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "name": "Pendulum", + "assetId": 14, + "assetSymbol": "ASTR", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0109", + "currencyIdType": "SpacewalkPrimitivesCurrencyId", + "existentialDeposit": "1000000", + "transfersEnabled": true + } } ] }, @@ -3321,7 +3533,10 @@ "name": "Equilibrium", "precision": 9, "priceId": "equilibrium-token", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Equilibrium_(EQ).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/EQ.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/EQ.svg" + }, "symbol": "EQ", "isTestToken": false, "chains": [ @@ -3355,7 +3570,10 @@ "name": "Interlay Bitcoin", "precision": 8, "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/iBTC.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/iBTC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/iBTC.svg" + }, "symbol": "iBTC", "isTestToken": false, "chains": [ @@ -3450,7 +3668,10 @@ "name": "DAI", "precision": 18, "priceId": "dai", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/DAI.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/DAI.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/DAI.svg" + }, "symbol": "DAI", "isTestToken": false, "chains": [ @@ -3498,7 +3719,10 @@ { "name": "PINK", "precision": 10, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Pink.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PINK.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PINK.svg" + }, "symbol": "PINK", "isTestToken": false, "chains": [ @@ -3557,7 +3781,10 @@ "name": "Centrifuge", "precision": 18, "priceId": "centrifuge", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Centrifuge_(CFG).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/CFG.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/CFG.svg" + }, "symbol": "CFG", "isTestToken": false, "chains": [ @@ -3598,7 +3825,10 @@ "name": "HydraDX", "precision": 12, "priceId": "hydradx", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/HydraDX_(HDX).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/HDX.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/HDX.svg" + }, "symbol": "HDX", "isTestToken": false, "chains": [ @@ -3639,7 +3869,10 @@ "name": "Nodle", "precision": 11, "priceId": "nodle-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Nodle_(NODL).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/NODL.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/NODL.svg" + }, "symbol": "NODL", "isTestToken": false, "chains": [ @@ -3673,7 +3906,10 @@ "name": "Darwinia", "precision": 18, "priceId": "darwinia-network-native-token", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Darwinia_(RING).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/RING.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/RING.svg" + }, "symbol": "xcRING", "isTestToken": false, "chains": [ @@ -3693,7 +3929,10 @@ { "name": "OriginTrail", "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/OriginTrail_(OTP).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/OTP.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/OTP.svg" + }, "symbol": "xcOTP", "isTestToken": false, "chains": [ @@ -3714,7 +3953,10 @@ "name": "vDOT", "precision": 10, "priceId": "voucher-dot", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vDOT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vDOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vDOT.svg" + }, "symbol": "vDOT", "isTestToken": false, "chains": [ @@ -3765,13 +4007,29 @@ "existentialDeposit": "1000000", "transfersEnabled": true } + }, + { + "chainId": "0x5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "name": "Pendulum", + "assetId": 15, + "assetSymbol": "vDOT", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x010a", + "currencyIdType": "SpacewalkPrimitivesCurrencyId", + "existentialDeposit": "1000000", + "transfersEnabled": true + } } ] }, { "name": "vFIL", "precision": 18, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vFIL.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vFIL.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vFIL.svg" + }, "symbol": "vFIL", "isTestToken": false, "chains": [ @@ -3805,7 +4063,10 @@ "name": "vGLMR", "precision": 18, "priceId": "voucher-glmr", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vGLMR.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vGLMR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vGLMR.svg" + }, "symbol": "vGLMR", "isTestToken": false, "chains": [ @@ -3839,7 +4100,10 @@ "name": "Manta token", "precision": 18, "priceId": "manta-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Manta_(MANTA).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/MANTA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/MANTA.svg" + }, "symbol": "MANTA", "isTestToken": false, "chains": [ @@ -3873,7 +4137,10 @@ "name": "USD Coin", "precision": 6, "priceId": "usd-coin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/USDC.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDC.svg" + }, "symbol": "USDC", "isTestToken": false, "chains": [ @@ -3944,7 +4211,10 @@ "name": "UNIQUE", "precision": 18, "priceId": "unique-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Unique_(UNQ).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/UNQ.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/UNQ.svg" + }, "symbol": "UNQ", "isTestToken": false, "chains": [ @@ -3977,7 +4247,10 @@ { "name": "Clover Finance", "precision": 18, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/CLV_(CLV).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/CLV.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/CLV.svg" + }, "symbol": "CLV", "isTestToken": false, "chains": [ @@ -3998,7 +4271,10 @@ "name": "DED", "precision": 10, "priceId": "dot-is-ded", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/DED.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/DED.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/DED.svg" + }, "symbol": "DED", "isTestToken": false, "chains": [ @@ -4030,7 +4306,10 @@ { "name": "DOTA", "precision": 4, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/DOTA.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/DOTA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/DOTA.svg" + }, "symbol": "DOTA", "isTestToken": false, "chains": [ @@ -4062,7 +4341,10 @@ { "name": "STINK", "precision": 10, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/STINK.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/STINK.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/STINK.svg" + }, "symbol": "STINK", "isTestToken": false, "chains": [ @@ -4094,7 +4376,10 @@ { "name": "GABE", "precision": 20, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/GABE.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/GABE.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/GABE.svg" + }, "symbol": "GABE", "isTestToken": false, "chains": [ @@ -4126,7 +4411,10 @@ { "name": "WUD", "precision": 10, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/WUD.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/WUD.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/WUD.svg" + }, "symbol": "WUD", "isTestToken": false, "chains": [ @@ -4158,7 +4446,10 @@ { "name": "WIFD", "precision": 10, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/WIFD.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/WIFD.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/WIFD.svg" + }, "symbol": "WIFD", "isTestToken": false, "chains": [ @@ -4190,7 +4481,10 @@ { "name": "BORK", "precision": 10, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/BORK.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/BORK.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/BORK.svg" + }, "symbol": "BORK", "isTestToken": false, "chains": [ @@ -4222,7 +4516,10 @@ { "name": "BUNS", "precision": 10, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/BUNS.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/BUNS.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/BUNS.svg" + }, "symbol": "BUNS", "isTestToken": false, "chains": [ @@ -4254,7 +4551,10 @@ { "name": "KOL", "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/KOL.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/KOL.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/KOL.svg" + }, "symbol": "KOL", "isTestToken": false, "chains": [ @@ -4287,7 +4587,10 @@ "name": "Zeitgeist", "precision": 10, "priceId": "zeitgeist", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Zeitgeist_(ZTG).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/ZTG.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/ZTG.svg" + }, "symbol": "ZTG", "isTestToken": false, "chains": [ @@ -4317,7 +4620,10 @@ "name": "Subsocial", "precision": 10, "priceId": "subsocial", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Subsocial_(SUB).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/SUB.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/SUB.svg" + }, "symbol": "SUB", "isTestToken": false, "chains": [ @@ -4346,7 +4652,10 @@ { "name": "LRNA", "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Lerna_(LRNA).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/LRNA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/LRNA.svg" + }, "symbol": "LRNA", "isTestToken": false, "chains": [ @@ -4369,7 +4678,10 @@ "name": "WETH-Acala", "precision": 18, "priceId": "ethereum-wormhole", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/WETH-Acala.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/WETH-Acala.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/WETH-Acala.svg" + }, "symbol": "WETH-Acala", "isTestToken": false, "chains": [ @@ -4405,7 +4717,10 @@ "name": "WBTC-Acala", "precision": 8, "priceId": "wrapped-bitcoin", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/WBTC-Acala.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/WBTC-Acala.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/WBTC-Acala.svg" + }, "symbol": "WBTC-Acala", "isTestToken": false, "chains": [ @@ -4441,7 +4756,10 @@ "name": "Crust", "precision": 12, "priceId": "crust-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Crust_(CRU).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/CRU.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/CRU.svg" + }, "symbol": "CRU", "isTestToken": false, "chains": [ @@ -4464,7 +4782,10 @@ "name": "MYTH", "precision": 18, "priceId": "mythos", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/MYTH.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/MYTH.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/MYTH.svg" + }, "symbol": "MYTH", "isTestToken": false, "chains": [ @@ -4486,7 +4807,10 @@ { "name": "vASTR", "precision": 18, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vASTR.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vASTR.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vASTR.svg" + }, "symbol": "vASTR", "isTestToken": false, "chains": [ @@ -4518,10 +4842,39 @@ } ] }, + { + "name": "Ajuna", + "precision": 12, + "priceId": "ajuna-network-2", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/AJUN.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/AJUN.svg" + }, + "symbol": "AJUN", + "isTestToken": false, + "chains": [ + { + "chainId": "0xafdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "name": "Hydration", + "assetId": 44, + "assetSymbol": "AJUN", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x20000000", + "currencyIdType": "u32", + "existentialDeposit": "100786131828", + "transfersEnabled": true + } + } + ] + }, { "name": "Interlay DOT", "precision": 10, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Polkadot_(DOT).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/qDOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/qDOT.svg" + }, "symbol": "qDOT", "isTestToken": false, "chains": [ @@ -4544,7 +4897,10 @@ "name": "Aleph Zero", "precision": 12, "priceId": "aleph-zero", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Aleph_Zero_(AZERO).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/AZERO.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/AZERO.svg" + }, "symbol": "AZERO", "isTestToken": false, "chains": [ @@ -4560,7 +4916,10 @@ { "name": "vsDOT", "precision": 10, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vsDOT.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vsDOT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vsDOT.svg" + }, "symbol": "vsDOT", "isTestToken": false, "chains": [ @@ -4582,7 +4941,10 @@ { "name": "vMANTA", "precision": 18, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/vMANTA.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/vMANTA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/vMANTA.svg" + }, "symbol": "vMANTA", "isTestToken": false, "chains": [ @@ -4605,7 +4967,10 @@ "name": "Litentry", "precision": 18, "priceId": "litentry", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Litentry_(LIT).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/LIT.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/LIT.svg" + }, "symbol": "LIT", "isTestToken": false, "chains": [ @@ -4622,7 +4987,10 @@ "name": "Etherium", "precision": 18, "priceId": "ethereum", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Ethereum_(ETH).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/ETH.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/ETH.svg" + }, "symbol": "ETH", "isTestToken": false, "chains": [ @@ -4644,7 +5012,10 @@ { "name": "Imbue", "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Imbue_(IMBU).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/IMBU.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/IMBU.svg" + }, "symbol": "IMBU", "isTestToken": false, "chains": [ @@ -4660,7 +5031,10 @@ { "name": "Rococo Testnet", "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Rococo_(ROC).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/ROC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/ROC.svg" + }, "symbol": "ROC", "isTestToken": true, "chains": [ @@ -4676,7 +5050,10 @@ { "name": "Amplitude", "precision": 12, - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Amplitude_(AMPE).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/AMPE.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/AMPE.svg" + }, "symbol": "AMPE", "isTestToken": false, "chains": [ @@ -4693,7 +5070,10 @@ "name": "Pendulum token", "precision": 12, "priceId": "pendulum-chain", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Pendulum_(PEN).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PEN.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PEN.svg" + }, "symbol": "PEN", "isTestToken": false, "chains": [ @@ -4706,11 +5086,40 @@ } ] }, + { + "name": "Should be included in scripts/data/assetsNameMap", + "precision": 6, + "priceId": "axlusdc", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/USDCaxl.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/USDCaxl.svg" + }, + "symbol": "USDC.axl", + "isTestToken": false, + "chains": [ + { + "chainId": "0x5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "name": "Pendulum", + "assetId": 17, + "assetSymbol": "USDC.axl", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x010c", + "currencyIdType": "SpacewalkPrimitivesCurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + } + ] + }, { "name": "TAO", "precision": 9, "priceId": "bittensor", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Bittensor_(TAO).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/TAO_bittensor.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/TAO_bittensor.svg" + }, "symbol": "TAO", "isTestToken": false, "chains": [ @@ -4727,7 +5136,10 @@ "name": "Vara", "precision": 12, "priceId": "vara-network", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Vara.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/VARA.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/VARA.svg" + }, "symbol": "VARA", "isTestToken": false, "chains": [ @@ -4744,7 +5156,10 @@ "name": "Polimec token", "precision": 10, "priceId": "polimec", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/PLMC.svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/PLMC.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/PLMC.svg" + }, "symbol": "PLMC", "isTestToken": false, "chains": [ @@ -4761,7 +5176,10 @@ "name": "AVAIL", "precision": 18, "priceId": "avail", - "icon": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Avail_(AVAIL).svg", + "icon": { + "monochrome": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/AVAIL.svg", + "colored": "https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/AVAIL.svg" + }, "symbol": "AVAIL", "isTestToken": false, "chains": [ diff --git a/src/renderer/shared/core/types/asset.ts b/src/renderer/shared/core/types/asset.ts index 851e8f6504..fa7c84ac03 100644 --- a/src/renderer/shared/core/types/asset.ts +++ b/src/renderer/shared/core/types/asset.ts @@ -8,7 +8,10 @@ export type Asset = { staking?: StakingType; precision: number; priceId?: string; - icon: string; + icon: { + monochrome: string; + colored: string; + }; type: AssetType; typeExtras?: StatemineExtras | OrmlExtras; }; @@ -38,7 +41,10 @@ export type OrmlExtras = { export type AssetByChains = { name: string; precision: number; - icon: string; + icon: { + monochrome: string; + colored: string; + }; symbol: string; isTestToken?: boolean; priceId?: string; diff --git a/src/renderer/shared/mocks/index.ts b/src/renderer/shared/mocks/index.ts index 9136ee65e0..5964b5d414 100644 --- a/src/renderer/shared/mocks/index.ts +++ b/src/renderer/shared/mocks/index.ts @@ -30,10 +30,14 @@ export const polkadotChainId: ChainId = '0x91b171bb158e2d3848fa23a9f1c25182fb8e2 export const dotAsset: Asset = { assetId: 0, symbol: 'DOT', + name: 'Polkadot', precision: 10, type: AssetType.NATIVE, - icon: 'https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Polkadot_(DOT).svg', - name: 'Polkadot', + icon: { + monochrome: + 'https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/DOT.svg', + colored: 'https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/DOT.svg', + }, }; export const polkadotChain: Chain = { diff --git a/src/renderer/shared/ui-entities/AssetIcon/AssetIcon.stories.tsx b/src/renderer/shared/ui-entities/AssetIcon/AssetIcon.stories.tsx new file mode 100644 index 0000000000..144187cd06 --- /dev/null +++ b/src/renderer/shared/ui-entities/AssetIcon/AssetIcon.stories.tsx @@ -0,0 +1,29 @@ +import { type Meta, type StoryObj } from '@storybook/react'; + +import { dotAsset } from '@/shared/mocks'; + +import { AssetIcon } from './AssetIcon'; + +const meta: Meta = { + title: 'Design System/entities/AssetIcon', + component: AssetIcon, + render: (args) => , +}; + +export default meta; + +type Story = StoryObj; + +export const Colored: Story = { + args: { + asset: dotAsset, + style: 'colored', + }, +}; + +export const Monochrome: Story = { + args: { + asset: dotAsset, + style: 'monochrome', + }, +}; diff --git a/src/renderer/shared/ui-entities/AssetIcon/AssetIcon.tsx b/src/renderer/shared/ui-entities/AssetIcon/AssetIcon.tsx new file mode 100644 index 0000000000..1370c2e1f5 --- /dev/null +++ b/src/renderer/shared/ui-entities/AssetIcon/AssetIcon.tsx @@ -0,0 +1,36 @@ +import { type Asset } from '@/shared/core'; +import { useToggle } from '@/shared/lib/hooks'; +import { cnTw } from '@/shared/lib/utils'; +import { useTheme } from '@/shared/ui-kit'; + +type Props = { + asset: Pick; + size?: number; + style?: 'monochrome' | 'colored'; +}; + +export const AssetIcon = ({ asset, style, size = 36 }: Props) => { + const { iconStyle } = useTheme(); + const [isImgLoaded, toggleImgLoaded] = useToggle(); + const computedStyle = style || iconStyle; + + const iconSrc = asset.icon[computedStyle]; + const iconSize = computedStyle === 'monochrome' ? size - 4 : size; + + return ( +
+ {asset.name} +
+ ); +}; diff --git a/src/renderer/shared/ui-entities/index.ts b/src/renderer/shared/ui-entities/index.ts index fd3fca3f4c..d35ac5b09a 100644 --- a/src/renderer/shared/ui-entities/index.ts +++ b/src/renderer/shared/ui-entities/index.ts @@ -2,6 +2,7 @@ export { VoteChart } from './VoteChart/VoteChart'; export { Hash } from './Hash/Hash'; export { Address } from './Address/Address'; export { Account } from './Account/Account'; +export { AssetIcon } from './AssetIcon/AssetIcon'; export { AccountSelectModal } from './AccountSelectModal/AccountSelectModal'; export { AccountExplorers } from './AccountExplorer/AccountExplorers'; export { TransactionDetails } from './TransactionDetails/TransactionDetails'; diff --git a/src/renderer/shared/ui-kit/Theme/ThemeContext.ts b/src/renderer/shared/ui-kit/Theme/ThemeContext.ts index ebe689d8d9..1f94e2ddf7 100644 --- a/src/renderer/shared/ui-kit/Theme/ThemeContext.ts +++ b/src/renderer/shared/ui-kit/Theme/ThemeContext.ts @@ -2,8 +2,10 @@ import { createContext } from 'react'; export type ThemeContextTheme = { portalContainer: HTMLElement | null; + iconStyle: 'monochrome' | 'colored'; }; export const ThemeContext = createContext({ portalContainer: null, + iconStyle: 'colored', }); diff --git a/src/renderer/shared/ui-kit/Theme/ThemeProvider.tsx b/src/renderer/shared/ui-kit/Theme/ThemeProvider.tsx index 16e4e83163..ff6526927e 100644 --- a/src/renderer/shared/ui-kit/Theme/ThemeProvider.tsx +++ b/src/renderer/shared/ui-kit/Theme/ThemeProvider.tsx @@ -4,16 +4,18 @@ import { ThemeContext, type ThemeContextTheme } from './ThemeContext'; type Props = PropsWithChildren<{ bodyAsPortalContainer?: boolean; + iconStyle: ThemeContextTheme['iconStyle']; }>; -export const ThemeProvider = ({ bodyAsPortalContainer, children }: Props) => { +export const ThemeProvider = ({ bodyAsPortalContainer, iconStyle, children }: Props) => { const [portal, setPortal] = useState(null); const value = useMemo(() => { return { portalContainer: bodyAsPortalContainer ? null : portal, + iconStyle, }; - }, [portal, bodyAsPortalContainer]); + }, [portal, iconStyle, bodyAsPortalContainer]); return ( diff --git a/src/renderer/shared/ui/Inputs/AmountInput/AmountInput.tsx b/src/renderer/shared/ui/Inputs/AmountInput/AmountInput.tsx index 914840711b..3c9a273643 100644 --- a/src/renderer/shared/ui/Inputs/AmountInput/AmountInput.tsx +++ b/src/renderer/shared/ui/Inputs/AmountInput/AmountInput.tsx @@ -156,7 +156,7 @@ export const AmountInput = ({ const prefixElement = (
- + {asset.symbol}
); diff --git a/src/renderer/widgets/AssetTransactionModal/model/__tests__/asset-transaction-model.test.ts b/src/renderer/widgets/AssetTransactionModal/model/__tests__/asset-transaction-model.test.ts index ee932b2b90..78aff71d55 100644 --- a/src/renderer/widgets/AssetTransactionModal/model/__tests__/asset-transaction-model.test.ts +++ b/src/renderer/widgets/AssetTransactionModal/model/__tests__/asset-transaction-model.test.ts @@ -10,7 +10,11 @@ const mockAsset = { name: 'Polkadot', precision: 10, priceId: 'polkadot', - icon: 'https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v1/assets/white/Polkadot_(DOT).svg', + icon: { + monochrome: + 'https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/monochrome/DOT.svg', + colored: 'https://raw.githubusercontent.com/novasamatech/nova-spektr-utils/main/icons/v2/assets/colored/DOT.svg', + }, symbol: 'DOT', chains: [ {