diff --git a/modules/statics/src/base.ts b/modules/statics/src/base.ts index f4b9516537..ea968e6a7b 100644 --- a/modules/statics/src/base.ts +++ b/modules/statics/src/base.ts @@ -3488,6 +3488,7 @@ export enum UnderlyingAsset { // Nep141 testnet tokens 'tnear:tnep24dp' = 'tnear:tnep24dp', 'tnear:usdc' = 'tnear:usdc', + 'tnear:stnear' = 'tnear:stnear', // VET tokens 'vet:vtho' = 'vet:vtho', diff --git a/modules/statics/src/coins/nep141Tokens.ts b/modules/statics/src/coins/nep141Tokens.ts index 0e759f3f36..5623bda6e8 100644 --- a/modules/statics/src/coins/nep141Tokens.ts +++ b/modules/statics/src/coins/nep141Tokens.ts @@ -65,4 +65,14 @@ export const nep141Tokens = [ UnderlyingAsset['tnear:usdc'], [...NEAR_TOKEN_FEATURES, CoinFeature.STABLECOIN] ), + tnep141Token( + '21f06a60-384a-48b2-9b88-8c4a4b0d28c0', + 'tnear:stnear', + 'stNEAR', + 24, + 'meta-v2.pool.testnet', + '1250000000000000000000', + UnderlyingAsset['tnear:stnear'], + NEAR_TOKEN_FEATURES + ), ]; diff --git a/modules/statics/src/coins/ofcCoins.ts b/modules/statics/src/coins/ofcCoins.ts index 91700be8bc..5efd727b40 100644 --- a/modules/statics/src/coins/ofcCoins.ts +++ b/modules/statics/src/coins/ofcCoins.ts @@ -3828,6 +3828,13 @@ export const ofcCoins = [ UnderlyingAsset['tnear:usdc'], [CoinFeature.STABLECOIN] ), + tofcnep141Token( + '2b0827da-7abb-4ce2-a2f4-5129ace9dc5c', + 'ofctnear:stnear', + 'stNEAR', + 24, + UnderlyingAsset['tnear:stnear'] + ), ofcWorldErc20('809418f2-d9e7-4604-bc17-e7dc881324c3', 'ofcworld:wld', 'Worldcoin', 18, UnderlyingAsset['world:wld']), ofcWorldErc20( 'b37a7ce1-3be3-4df1-808d-8cc9065c7ed7', diff --git a/modules/statics/test/unit/ofcTokenNaming.ts b/modules/statics/test/unit/ofcTokenNaming.ts index 87a8670a2a..243e2d1c69 100644 --- a/modules/statics/test/unit/ofcTokenNaming.ts +++ b/modules/statics/test/unit/ofcTokenNaming.ts @@ -50,6 +50,7 @@ describe('OFC Token Naming Convention Tests', function () { 'ofctpolygon:usdt', // "Tether USD" 'ofctpolygon:xsgd', // "XSGD" 'ofctnear:usdc', // "USD Coin" + 'ofctnear:stnear', // "stNEAR" 'ofctbaseeth', // "Base Sepolia Chain" ];