Skip to content

Commit

Permalink
add PINK, DED, and NODL
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick-1979 committed Mar 28, 2024
1 parent e18e3a7 commit 0b471e0
Showing 1 changed file with 54 additions and 2 deletions.
56 changes: 54 additions & 2 deletions packages/apps-config/src/assets/hydraDX.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@

import type { Asset } from './types.js';

import { assetsDaiSVG, assetsEthSVG, assetsTetherUsdtSVG, assetsUsdCoinUsdcSVG, assetsWbtcSVG } from '../ui/logos/assets/index.js';
import { assetsDaiSVG, assetsDedPNG, assetsEthSVG, assetsPinkPNG, assetsTetherUsdtSVG, assetsUsdCoinUsdcSVG, assetsWbtcSVG } from '../ui/logos/assets/index.js';
import { chainsPolkadotCircleSVG, chainsSnakenetSVG } from '../ui/logos/chains/index.js';
import { nodesAstarPNG, nodesBifrostSVG, nodesCentrifugePNG, nodesInterlaySVG, nodesMoonbeamSVG, nodesPhalaSVG, nodesSubsocialSVG, nodesZeitgeistPNG } from '../ui/logos/nodes/index.js';
import { nodesAstarPNG, nodesBifrostSVG, nodesCentrifugePNG, nodesInterlaySVG, nodesMoonbeamSVG, nodesNodleSVG, nodesPhalaSVG, nodesSubsocialSVG, nodesZeitgeistPNG } from '../ui/logos/nodes/index.js';

export const hydraDX: Asset[] = [
{
Expand Down Expand Up @@ -379,5 +379,57 @@ export const hydraDX: Asset[] = [
existentialDeposit: '10000',
transfersEnabled: true
}
},
{
id: 21,
symbol: 'NODL',
decimal: 11,
priceId: 'nodle-network',
type: 'orml',
ui: {
color: '#000',
logo: nodesNodleSVG,
subLogo: true
},
extras: {
currencyIdScale: '0x1a000000',
currencyIdType: 'u32',
existentialDeposit: '109890109890',
transfersEnabled: true
}
},
{
id: 22,
symbol: 'DED',
decimal: 10,
type: 'orml',
ui: {
color: '#ff007a',
logo: assetsDedPNG,
subLogo: true
},
extras: {
currencyIdScale: '0x53420f00',
currencyIdType: 'u32',
existentialDeposit: '1',
transfersEnabled: true
}
},
{
id: 23,
symbol: 'PINK',
decimal: 10,
type: 'orml',
ui: {
color: '#e54391',
logo: assetsPinkPNG,
subLogo: true
},
extras: {
currencyIdScale: '0x55420f00',
currencyIdType: 'u32',
existentialDeposit: '1',
transfersEnabled: true
}
}
];

0 comments on commit 0b471e0

Please sign in to comment.