Skip to content

Commit

Permalink
Fix external exports, exclude wud
Browse files Browse the repository at this point in the history
  • Loading branch information
nohaapav committed Sep 20, 2024
1 parent 77fc93b commit 1c39da0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/apps/src/utils/external.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ const defaultExternals = [
'18', // DOTA
'23', // PINK
'30', // DED
'31337', // WUD
];

export function configureExternal(
Expand All @@ -37,7 +38,7 @@ export function readExternal(isTestnet: boolean) {
return undefined;
}

function buildAssetData(external: ExternalAsset): ChainAssetData {
export function buildAssetData(external: ExternalAsset): ChainAssetData {
const { decimals, id, symbol, internalId } = external;

const key = symbol.toLowerCase();
Expand Down

0 comments on commit 1c39da0

Please sign in to comment.