Skip to content

Commit 0caba89

Browse files
Merge pull request #5820 from BitGo/COIN-3326-ofc-onboarding
chore: onboard ofcapt:usdc and ofcapt:usdt
2 parents 81fc641 + 534394d commit 0caba89

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

modules/statics/src/coinFeatures.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,7 @@ export const SOL_TOKEN_FEATURES = [
186186
CoinFeature.BULK_TRANSACTION,
187187
];
188188
export const SOL_OFC_TOKEN_FEATURES = [...AccountCoin.DEFAULT_FEATURES, CoinFeature.TSS, CoinFeature.TSS_COLD];
189+
export const APT_OFC_TOKEN_FEATURES = [...AccountCoin.DEFAULT_FEATURES, CoinFeature.TSS, CoinFeature.TSS_COLD];
189190
export const BSC_TOKEN_FEATURES = [...AccountCoin.DEFAULT_FEATURES, CoinFeature.BULK_TRANSACTION];
190191
export const BSC_TOKEN_FEATURES_EXCLUDE_SINGAPORE = [
191192
...AccountCoin.DEFAULT_FEATURES_EXCLUDE_SINGAPORE,

modules/statics/src/coins/ofcCoins.ts

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,11 @@ import {
2121
tofcAlgoToken,
2222
ofcHederaToken,
2323
tofcHederaToken,
24+
ofcaptToken,
2425
} from '../ofc';
2526
import { UnderlyingAsset, CoinKind } from '../base';
2627

27-
import { SOL_TOKEN_FEATURES, SOL_OFC_TOKEN_FEATURES } from '../coinFeatures';
28+
import { SOL_TOKEN_FEATURES, SOL_OFC_TOKEN_FEATURES, APT_OFC_TOKEN_FEATURES } from '../coinFeatures';
2829

2930
export const ofcCoins = [
3031
ofc('837f0cab-cad1-4510-a8e4-f2c60e1a8760', 'ofcusd', 'USD', 2, UnderlyingAsset.USD, CoinKind.FIAT),
@@ -1190,4 +1191,20 @@ export const ofcCoins = [
11901191
18,
11911192
UnderlyingAsset['tarbeth:link']
11921193
),
1194+
ofcaptToken(
1195+
'6d027643-3d96-4627-8312-1151a793d4f8',
1196+
'ofcapt:usdc',
1197+
'USD Coin',
1198+
6,
1199+
UnderlyingAsset['apt:usdc'],
1200+
APT_OFC_TOKEN_FEATURES
1201+
),
1202+
ofcaptToken(
1203+
'd15ec98e-1c8f-4c2d-9ede-e34edb3980b5',
1204+
'ofcapt:usdt',
1205+
'USD Tether',
1206+
6,
1207+
UnderlyingAsset['apt:usdt'],
1208+
APT_OFC_TOKEN_FEATURES
1209+
),
11931210
];

0 commit comments

Comments
 (0)