Skip to content
Open
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
20 changes: 14 additions & 6 deletions modules/statics/src/coins/ofcCoins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1618,6 +1618,10 @@ export const ofcCoins = [
...SOL_TOKEN_FEATURES,
CoinFeature.STABLECOIN,
]),
ofcsolToken('b53025fd-20e7-4a61-8893-2f26ed2daa7b', 'ofcsol:gospcx', 'SpaceX', 6, UnderlyingAsset['sol:gospcx'], [
...SOL_TOKEN_FEATURES,
CoinFeature.STABLECOIN,
]),
ofcsolToken(
'e343b3c2-dcbb-4a9f-a60e-3dd79825c5fb',
'ofcsol:rksol',
Expand Down Expand Up @@ -1994,16 +1998,20 @@ export const ofcCoins = [
),
tofcsolToken(
'3441411c-d379-4f61-9630-1e8de117717a',
'ofctsol:stgspcx',
'ofctsol:stggospcx',
'Test SpaceX',

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
'Test SpaceX',
'Test SPCX goStock',

6,
UnderlyingAsset['tsol:stgspcx'],
UnderlyingAsset['tsol:stggospcx'],
[...SOL_TOKEN_FEATURES, CoinFeature.STABLECOIN]
),
tofcsolToken(
'84f901ed-5654-47a7-9d08-7ff7c27a8c16',
'ofctsol:gospcx',
'Test SpaceX',

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
'Test SpaceX',
'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
31 changes: 21 additions & 10 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'],
'5v8iQ4szW7tyGp2K3x8TWFLUSa4eSfjSZbYogS65xao4',
'5v8iQ4szW7tyGp2K3x8TWFLUSa4eSfjSZbYogS65xao4',
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'],
'CjmJtwAfyPu8dpLYm9qV3ZH4bhxdCsavNihVLzutZzZz',
'CjmJtwAfyPu8dpLYm9qV3ZH4bhxdCsavNihVLzutZzZz',
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