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
4 changes: 4 additions & 0 deletions modules/statics/src/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2004,6 +2004,10 @@ export enum UnderlyingAsset {
'hteth:htusdl' = 'hteth:htusdl',
'hteth:htusdlt' = 'hteth:htusdlt',
'hteth:tprn' = 'hteth:tprn',
// Sepolia testnet ERC-20 tokens
'sepeth:usdc' = 'sepeth:usdc',
'sepeth:pyusd' = 'sepeth:pyusd',
'sepeth:wtgxx' = 'sepeth:wtgxx',
// Robinhood Chain testnet ERC-20 tokens
'thoodeth:amzn' = 'thoodeth:amzn',
'thoodeth:tsla' = 'thoodeth:tsla',
Expand Down
36 changes: 36 additions & 0 deletions modules/statics/src/coins/erc20Coins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15168,4 +15168,40 @@ export const erc20Coins = [
undefined,
Networks.test.hoodi
),
terc20(
'62705940-65f5-45c3-a5d6-9e043d5a5902',
'sepeth:usdc',
'Sepolia Testnet USD Coin',
6,
'0x1c7d4b196cb0c7b01d743fbc6116a902379c7238',
UnderlyingAsset['sepeth:usdc'],
Comment thread
abhijeet848 marked this conversation as resolved.
[...ACCOUNT_COIN_DEFAULT_FEATURES, CoinFeature.STABLECOIN],
undefined,
undefined,
Networks.test.sepolia
),
terc20(
'837c0a8e-6c29-483e-9ba5-6b0cfd88e155',
'sepeth:pyusd',
'Sepolia Testnet PayPal USD',
6,
'0xcac524bca292aaade2df8a05cc58f0a65b1b3bb9',
UnderlyingAsset['sepeth:pyusd'],
[...ACCOUNT_COIN_DEFAULT_FEATURES, CoinFeature.STABLECOIN],
undefined,
undefined,
Networks.test.sepolia
),
terc20(
'5b0fc727-e05b-4eed-9d33-1c5efbaa6861',
'sepeth:wtgxx',
'Sepolia Testnet WisdomTree Government Money Market Digital Fund',
18,
'0x0b2517eef907389f36fd87add36e9118d364bd67',
UnderlyingAsset['sepeth:wtgxx'],
[...ACCOUNT_COIN_DEFAULT_FEATURES_EXCLUDE_SINGAPORE],
undefined,
undefined,
Networks.test.sepolia
),
];
42 changes: 42 additions & 0 deletions modules/statics/src/coins/ofcErc20Coins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5093,6 +5093,48 @@ export const tOfcErc20Coins = [
undefined,
'hteth'
),
tofcerc20(
'ba7d610c-4aad-4347-bbd1-3a19ebf85901',
'ofcsepeth:usdc',
'Sepolia Testnet USD Coin',
6,
UnderlyingAsset['sepeth:usdc'],
undefined,
[CoinFeature.STABLECOIN],
undefined,
undefined,
undefined,
undefined,
'sepeth'
),
tofcerc20(
'd2ef380d-a9d6-4564-b583-5becda61927f',
'ofcsepeth:pyusd',
'Sepolia Testnet PayPal USD',
6,
UnderlyingAsset['sepeth:pyusd'],
undefined,
[CoinFeature.STABLECOIN],
undefined,
undefined,
undefined,
undefined,
'sepeth'
),
tofcerc20(
'2ed97531-56c9-4a7a-a2da-4bf4a4f379f8',
'ofcsepeth:wtgxx',
'Sepolia Testnet WisdomTree Government Money Market Digital Fund',
18,
UnderlyingAsset['sepeth:wtgxx'],
undefined,
undefined,
undefined,
undefined,
undefined,
undefined,
'sepeth'
),

ofcerc20(
'cc2a92cf-d799-463b-b08c-e9a4d5e87934',
Expand Down
3 changes: 3 additions & 0 deletions modules/statics/test/unit/tokenNamingConvention.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,9 @@ describe('Token Naming Convention Tests', function () {
'hteth:tprn',
'hterc6dp',
'hterc2dp',
'sepeth:usdc',
'sepeth:pyusd',
'sepeth:wtgxx',
'fixed',
'schz',
'bgerch',
Expand Down
Loading