From 936048e6cc908d70a7ee0118e4bbc051e5488997 Mon Sep 17 00:00:00 2001 From: Manoj Kumar Date: Tue, 10 Feb 2026 17:01:26 +0530 Subject: [PATCH] feat(statics): rename sol:usdc.a to sol:usdca (WIN-8883) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- modules/statics/src/base.ts | 2 +- modules/statics/src/coins/ofcCoins.ts | 4 ++-- modules/statics/src/coins/solTokens.ts | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/statics/src/base.ts b/modules/statics/src/base.ts index cbbc598635..86cdebd6e6 100644 --- a/modules/statics/src/base.ts +++ b/modules/statics/src/base.ts @@ -1926,7 +1926,7 @@ export enum UnderlyingAsset { 'sol:usdt' = 'sol:usdt', 'sol:usdc' = 'sol:usdc', 'sol:agri' = 'sol:agri', - 'sol:usdc.a' = 'sol:usdc.a', + 'sol:usdca' = 'sol:usdca', USCC = 'uscc', USDC = 'usdc', 'USDC-POS-WORMHOLE' = 'usdc-pos-wormhole', diff --git a/modules/statics/src/coins/ofcCoins.ts b/modules/statics/src/coins/ofcCoins.ts index f2526f0238..07bc6a2b1c 100644 --- a/modules/statics/src/coins/ofcCoins.ts +++ b/modules/statics/src/coins/ofcCoins.ts @@ -750,10 +750,10 @@ export const ofcCoins = [ ]), ofcsolToken( '2ad7fab3-71f1-4201-8c6d-16ef57f012b7', - 'ofcsol:usdc.a', + 'ofcsol:usdca', 'USDC.a Bridged ART20', 6, - UnderlyingAsset['sol:usdc.a'], + UnderlyingAsset['sol:usdca'], [...SOL_TOKEN_FEATURES, CoinFeature.STABLECOIN] ), ofcsolToken( diff --git a/modules/statics/src/coins/solTokens.ts b/modules/statics/src/coins/solTokens.ts index 40ea7b55fc..5d3c0a0826 100644 --- a/modules/statics/src/coins/solTokens.ts +++ b/modules/statics/src/coins/solTokens.ts @@ -3636,12 +3636,12 @@ export const solTokens = [ ), solToken( 'e13fd5e0-0828-4f06-884b-de1bc5cf42c5', - 'sol:usdc.a', + 'sol:usdca', 'USDC.a Bridged ART20', 6, 'AByhZPfGEU9a68KCAvT76Yev85oeur4SoL2VLZuB3HQj', // https://solscan.io/token/AByhZPfGEU9a68KCAvT76Yev85oeur4SoL2VLZuB3HQj 'AByhZPfGEU9a68KCAvT76Yev85oeur4SoL2VLZuB3HQj', - UnderlyingAsset['sol:usdc.a'], + UnderlyingAsset['sol:usdca'], [...SOL_TOKEN_FEATURES, CoinFeature.STABLECOIN] ), ];