diff --git a/apps/wallet/src/utils/basicTypes.ts b/apps/wallet/src/utils/basicTypes.ts index da3e6b8..bb9f25b 100644 --- a/apps/wallet/src/utils/basicTypes.ts +++ b/apps/wallet/src/utils/basicTypes.ts @@ -323,6 +323,7 @@ export class ChainAssetType { static ICRC3 = new ChainAssetType(new BigNumber(6)); static BRC20 = new ChainAssetType(new BigNumber(7)); static SPL = new ChainAssetType(new BigNumber(8)); + static TRC20 = new ChainAssetType(new BigNumber(9)); static Jetton = new ChainAssetType(new BigNumber(10)); static fromString(value: string): ChainAssetType | null { diff --git a/apps/wallet/src/utils/chain/index.ts b/apps/wallet/src/utils/chain/index.ts index 1164286..f64ec28 100644 --- a/apps/wallet/src/utils/chain/index.ts +++ b/apps/wallet/src/utils/chain/index.ts @@ -29,7 +29,7 @@ const SupportedChainsForTestnet = [ // SolanaTestnet, TonTestnet, // TronNile, - // TODO: Dfinity testnet + Dfinity, ]; export function getChainByChainId(chainId: ChainId | null, devMode?: boolean): ChainInfo | null {