Skip to content

Commit 936048e

Browse files
committed
feat(statics): rename sol:usdc.a to sol:usdca (WIN-8883)
Rename token identifier to comply with naming convention (no dots). Changes: - base.ts: Rename UnderlyingAsset enum entry - solTokens.ts: Rename sol:usdc.a → sol:usdca - ofcCoins.ts: Rename ofcsol:usdc.a → ofcsol:usdca Contract details remain unchanged: - Mint Address: AByhZPfGEU9a68KCAvT76Yev85oeur4SoL2VLZuB3HQj - Decimals: 6 Issue: WIN-8883
1 parent c3a2d01 commit 936048e

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

modules/statics/src/base.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1926,7 +1926,7 @@ export enum UnderlyingAsset {
19261926
'sol:usdt' = 'sol:usdt',
19271927
'sol:usdc' = 'sol:usdc',
19281928
'sol:agri' = 'sol:agri',
1929-
'sol:usdc.a' = 'sol:usdc.a',
1929+
'sol:usdca' = 'sol:usdca',
19301930
USCC = 'uscc',
19311931
USDC = 'usdc',
19321932
'USDC-POS-WORMHOLE' = 'usdc-pos-wormhole',

modules/statics/src/coins/ofcCoins.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -750,10 +750,10 @@ export const ofcCoins = [
750750
]),
751751
ofcsolToken(
752752
'2ad7fab3-71f1-4201-8c6d-16ef57f012b7',
753-
'ofcsol:usdc.a',
753+
'ofcsol:usdca',
754754
'USDC.a Bridged ART20',
755755
6,
756-
UnderlyingAsset['sol:usdc.a'],
756+
UnderlyingAsset['sol:usdca'],
757757
[...SOL_TOKEN_FEATURES, CoinFeature.STABLECOIN]
758758
),
759759
ofcsolToken(

modules/statics/src/coins/solTokens.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3636,12 +3636,12 @@ export const solTokens = [
36363636
),
36373637
solToken(
36383638
'e13fd5e0-0828-4f06-884b-de1bc5cf42c5',
3639-
'sol:usdc.a',
3639+
'sol:usdca',
36403640
'USDC.a Bridged ART20',
36413641
6,
36423642
'AByhZPfGEU9a68KCAvT76Yev85oeur4SoL2VLZuB3HQj', // https://solscan.io/token/AByhZPfGEU9a68KCAvT76Yev85oeur4SoL2VLZuB3HQj
36433643
'AByhZPfGEU9a68KCAvT76Yev85oeur4SoL2VLZuB3HQj',
3644-
UnderlyingAsset['sol:usdc.a'],
3644+
UnderlyingAsset['sol:usdca'],
36453645
[...SOL_TOKEN_FEATURES, CoinFeature.STABLECOIN]
36463646
),
36473647
];

0 commit comments

Comments
 (0)