Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 18 additions & 4 deletions modules/statics/src/coins/ofcErc20Coins.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ofcerc20, tofcerc20 } from '../ofc';
import { OfcCoin, ofcerc20, tofcerc20 } from '../ofc';
import { CoinFeature, UnderlyingAsset } from '../base';
import { AccountCoin } from '../account';

Expand Down Expand Up @@ -4804,11 +4804,11 @@ export const tOfcErc20Coins = [
ofcerc20(
'1458bca6-e0d3-455e-81c7-55862dc5af52',
'ofcmon:usdc',
'USDC:MON',
'MON:USDC',
6,
underlyingAssetForSymbol('mon:usdc'),
undefined,
undefined,
[...OfcCoin.DEFAULT_FEATURES, CoinFeature.STABLECOIN],
'',
undefined,
undefined,
Expand Down Expand Up @@ -4838,7 +4838,7 @@ export const tOfcErc20Coins = [
6,
underlyingAssetForSymbol('xdc:usdc'),
undefined,
undefined,
[...OfcCoin.DEFAULT_FEATURES, CoinFeature.STABLECOIN],
'',
undefined,
undefined,
Expand Down Expand Up @@ -4917,6 +4917,20 @@ export const tOfcErc20Coins = [
true,
'ip'
),
tofcerc20(
'94eb6074-b01f-43b4-81ed-d53fb5c2566d',
'ofctip:tmt',
'TMT',
6,
underlyingAssetForSymbol('tip:tmt'),
undefined,
undefined,
'',
undefined,
undefined,
true,
'tip'
),
];

function underlyingAssetForSymbol(underlyingAssetValue: string): UnderlyingAsset {
Expand Down