Skip to content
Merged
Show file tree
Hide file tree
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
5 changes: 3 additions & 2 deletions modules/statics/src/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1214,8 +1214,9 @@ export enum UnderlyingAsset {
'tsol:sofid' = 'tsol:sofid',
'tsol:stgsofid' = 'tsol:stgsofid',
'sol:sofid' = 'sol:sofid',
'tsol:spcx' = 'tsol:spcx',
'tsol:stgspcx' = 'tsol:stgspcx',
'tsol:gospcx' = 'tsol:gospcx',
'tsol:stggospcx' = 'tsol:stggospcx',
'sol:gospcx' = 'sol:gospcx',
'sol:usd1' = 'sol:usd1',
'sol:usdm1' = 'sol:usdm1',
'tsol:slnd' = 'tsol:slnd',
Expand Down
26 changes: 19 additions & 7 deletions modules/statics/src/coins/ofcCoins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1618,6 +1618,14 @@ export const ofcCoins = [
...SOL_TOKEN_FEATURES,
CoinFeature.STABLECOIN,
]),
ofcsolToken(
'b53025fd-20e7-4a61-8893-2f26ed2daa7b',
'ofcsol:gospcx',
'SPCX goStock',
6,
UnderlyingAsset['sol:gospcx'],
[...SOL_TOKEN_FEATURES, CoinFeature.STABLECOIN]
),
ofcsolToken(
'e343b3c2-dcbb-4a9f-a60e-3dd79825c5fb',
'ofcsol:rksol',
Expand Down Expand Up @@ -1994,16 +2002,20 @@ export const ofcCoins = [
),
tofcsolToken(
'3441411c-d379-4f61-9630-1e8de117717a',
'ofctsol:stgspcx',
'Test SpaceX',
'ofctsol:stggospcx',
'Test SPCX goStock',
6,
UnderlyingAsset['tsol:stgspcx'],
UnderlyingAsset['tsol:stggospcx'],
[...SOL_TOKEN_FEATURES, CoinFeature.STABLECOIN]
),
tofcsolToken(
'84f901ed-5654-47a7-9d08-7ff7c27a8c16',
'ofctsol:gospcx',
'Test SPCX goStock',
6,
UnderlyingAsset['tsol:gospcx'],
[...SOL_TOKEN_FEATURES, CoinFeature.STABLECOIN]
),
tofcsolToken('84f901ed-5654-47a7-9d08-7ff7c27a8c16', 'ofctsol:spcx', 'Test SpaceX', 6, UnderlyingAsset['tsol:spcx'], [
...SOL_TOKEN_FEATURES,
CoinFeature.STABLECOIN,
]),
tofcsolToken(
'750f0e40-c5b9-464f-874f-dc455cf1494b',
'ofctsol:stgusd1',
Expand Down
23 changes: 17 additions & 6 deletions modules/statics/src/coins/solTokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3650,23 +3650,34 @@ export const solTokens = [
),
tsolToken(
'70f8706b-d4c8-49ac-a8ae-ea1c3c60249e',
'tsol:stgspcx',
'Test SpaceX',
'tsol:stggospcx',
'Test SPCX goStock',
6,
'98iaHRfvCnaihEHcLK5EpwLq3w5yHiKKfSgpYLcxEScB',
'98iaHRfvCnaihEHcLK5EpwLq3w5yHiKKfSgpYLcxEScB',
UnderlyingAsset['tsol:stgspcx'],
UnderlyingAsset['tsol:stggospcx'],
[...SOL_TOKEN_FEATURES, CoinFeature.STABLECOIN],
ProgramID.Token2022ProgramId
),
tsolToken(
'44e9960a-e7ed-4ae5-8cc9-f16de5744866',
'tsol:spcx',
'Test SpaceX',
'tsol:gospcx',
'Test SPCX goStock',
6,
'4gvEw3Lx2gkAByv4X8hLnHujneN5bwtMGSu2ZDoip4vj',
'4gvEw3Lx2gkAByv4X8hLnHujneN5bwtMGSu2ZDoip4vj',
UnderlyingAsset['tsol:spcx'],
UnderlyingAsset['tsol:gospcx'],
[...SOL_TOKEN_FEATURES, CoinFeature.STABLECOIN],
ProgramID.Token2022ProgramId
),
solToken(
'83ec93bc-e142-4c32-874a-65f5b8974548',
'sol:gospcx',
'SPCX goStock',
6,
'AAVvaNDwkGfxGNaf1HJ5JzfwDb1PYmAgXSixRsczyrk4',
'AAVvaNDwkGfxGNaf1HJ5JzfwDb1PYmAgXSixRsczyrk4',
UnderlyingAsset['sol:gospcx'],
[...SOL_TOKEN_FEATURES, CoinFeature.STABLECOIN],
ProgramID.Token2022ProgramId
),
Expand Down
Loading