diff --git a/modules/statics/src/allCoinsAndTokens.ts b/modules/statics/src/allCoinsAndTokens.ts index 61b5643138..e8141a5fe2 100644 --- a/modules/statics/src/allCoinsAndTokens.ts +++ b/modules/statics/src/allCoinsAndTokens.ts @@ -5278,6 +5278,15 @@ export const allCoinsAndTokens = [ UnderlyingAsset['baseeth:svvv'], Networks.main.basechain ), + erc20Token( + '4c51251a-9a9b-4835-97b2-8b96216f7491', + 'baseeth:glx', + 'GLMall Token', + 6, + '0x6b84dcd57ac5ed6e1d0881fad73c4f61c554dddb', + UnderlyingAsset['baseeth:glx'], + Networks.main.basechain + ), // ARC mainnet tokens erc20Token( @@ -6287,6 +6296,50 @@ export const allCoinsAndTokens = [ '', 'XLM:BTGO' ), + stellarToken( + 'a09edc99-4a24-4396-a437-8de7ce0f3645', + 'xlm:USDT0-GATISXX6BZ6NC7IKQBY37CJD4SOZL3CYZJWXEDG6JVIY4WBS6KXJHN6Q', + 'USDT0', + 7, + UnderlyingAsset['xlm:USDT0-GATISXX6BZ6NC7IKQBY37CJD4SOZL3CYZJWXEDG6JVIY4WBS6KXJHN6Q'], + '', + [...XLM_TOKEN_FEATURES_WITH_FRANKFURT, CoinFeature.STABLECOIN], + '', + 'XLM:USDT0' + ), + stellarToken( + 'c951a465-3d11-433e-b05b-69f7a8747783', + 'xlm:WTGX-GDMBNMFJ3TRFLASJ6UGETFME3PJPNKPU24C7KFDBEBPQFG2CI6UC3JG6', + 'WisdomTree Government Money Market Digital Fund', + 7, + UnderlyingAsset['xlm:WTGX-GDMBNMFJ3TRFLASJ6UGETFME3PJPNKPU24C7KFDBEBPQFG2CI6UC3JG6'], + 'stellar.wisdomtree.com', + ACCOUNT_COIN_DEFAULT_FEATURES_TRUST_ONLY, + '', + 'XLM:WTGXX' + ), + stellarToken( + '8e6e51ee-6bc0-4420-9eb8-7330975dd5a5', + 'xlm:FLTT-GBTZKH3RNKW46XEZNCGZEBAGJISKDZKQXKSQ2N5G5SFX36TLWKKR6QJ6', + 'WisdomTree Floating Rate Treasury Digital Fund', + 7, + UnderlyingAsset['xlm:FLTT-GBTZKH3RNKW46XEZNCGZEBAGJISKDZKQXKSQ2N5G5SFX36TLWKKR6QJ6'], + 'stellar.wisdomtree.com', + ACCOUNT_COIN_DEFAULT_FEATURES_TRUST_ONLY, + '', + 'XLM:FLTTX' + ), + stellarToken( + '19e90771-7e7c-4d3a-9365-d53974fce295', + 'xlm:WTSI-GAD22PDBRFEMXAKPFDP4JGDFWKKD6VPXWUWEAXBS6ZYJYFFQDUN7HAFG', + 'WisdomTree Short-Duration Income Digital Fund', + 7, + UnderlyingAsset['xlm:WTSI-GAD22PDBRFEMXAKPFDP4JGDFWKKD6VPXWUWEAXBS6ZYJYFFQDUN7HAFG'], + 'stellar.wisdomtree.com', + ACCOUNT_COIN_DEFAULT_FEATURES_TRUST_ONLY, + '', + 'XLM:WTSIX' + ), tronToken( '5f3266f8-252c-492a-90d7-bb6d3bf550fb', 'trx:btt', @@ -6652,6 +6705,17 @@ export const allCoinsAndTokens = [ '', 'TXLM:USDC' ), + tstellarToken( + '85869f03-218d-453b-956f-64c76bad388a', + 'txlm:USDL-GDMJSPSI4IXMDDSJPJRIRCBFNMHOK4KKAD67WBDBZ4MYHHJRIPWQ5UQG', + 'USDL', + 7, + UnderlyingAsset['txlm:USDL-GDMJSPSI4IXMDDSJPJRIRCBFNMHOK4KKAD67WBDBZ4MYHHJRIPWQ5UQG'], + 'example.com', + AccountCoin.DEFAULT_FEATURES, + '', + 'TXLM:USDL' + ), ttronToken( '4ece7f15-a5c9-4302-8c82-787d7eb7e3c9', 'ttrx:wbtc', @@ -7751,6 +7815,15 @@ export const allCoinsAndTokens = [ UnderlyingAsset['arbeth:mlk'], EVM_TOKEN_FEATURES_TRUST_ONLY ), + arbethErc20( + '2d29a72f-5791-4d72-8a0c-7529a20328a0', + 'arbeth:usdg', + 'USDG', + 6, + '0x004b506865409877c9fa29bfb1eba929984b9bbc', + UnderlyingAsset['arbeth:usdg'], + [...AccountCoin.DEFAULT_FEATURES, CoinFeature.STABLECOIN] + ), opethErc20( '8d80fac6-4cbc-447c-b49b-4229cb8aa89d', diff --git a/modules/statics/src/base.ts b/modules/statics/src/base.ts index 5d513d18e5..eb280415ad 100644 --- a/modules/statics/src/base.ts +++ b/modules/statics/src/base.ts @@ -2311,6 +2311,13 @@ export enum UnderlyingAsset { 'hoodeth:bnd' = 'hoodeth:bnd', 'hoodeth:pons' = 'hoodeth:pons', 'hoodeth:stonkbroker' = 'hoodeth:stonkbroker', + 'hoodeth:index' = 'hoodeth:index', + 'hoodeth:up' = 'hoodeth:up', + 'hoodeth:ram' = 'hoodeth:ram', + 'hoodeth:tendies' = 'hoodeth:tendies', + 'hoodeth:goose' = 'hoodeth:goose', + 'hoodeth:ai' = 'hoodeth:ai', + 'hoodeth:pipedog' = 'hoodeth:pipedog', 'hemieth:hemi' = 'hemieth:hemi', 'hemieth:hemibtc' = 'hemieth:hemibtc', 'usdt0:stable' = 'usdt0:stable', @@ -3035,6 +3042,10 @@ export enum UnderlyingAsset { 'xlm:SHX-GDSTRSHXHGJ7ZIVRBXEYE5Q74XUVCUSEKEBR7UCHEUUEK72N7I7KJ6JH' = 'xlm:SHX-GDSTRSHXHGJ7ZIVRBXEYE5Q74XUVCUSEKEBR7UCHEUUEK72N7I7KJ6JH', 'xlm:YLDS-GAC7MOPTQLQUM3KC24AW4GHS3RLF72LPEZO54AH7EZ6TSMGRB5SOAVH3' = 'xlm:YLDS-GAC7MOPTQLQUM3KC24AW4GHS3RLF72LPEZO54AH7EZ6TSMGRB5SOAVH3', 'xlm:BTGO-GAXTPUVP2XINTMEN57FPJ34DAPZXDMMGX7TB7ASIBWHWT6ARC3IOGA2W' = 'xlm:BTGO-GAXTPUVP2XINTMEN57FPJ34DAPZXDMMGX7TB7ASIBWHWT6ARC3IOGA2W', + 'xlm:USDT0-GATISXX6BZ6NC7IKQBY37CJD4SOZL3CYZJWXEDG6JVIY4WBS6KXJHN6Q' = 'xlm:USDT0-GATISXX6BZ6NC7IKQBY37CJD4SOZL3CYZJWXEDG6JVIY4WBS6KXJHN6Q', + 'xlm:WTGX-GDMBNMFJ3TRFLASJ6UGETFME3PJPNKPU24C7KFDBEBPQFG2CI6UC3JG6' = 'xlm:WTGX-GDMBNMFJ3TRFLASJ6UGETFME3PJPNKPU24C7KFDBEBPQFG2CI6UC3JG6', + 'xlm:FLTT-GBTZKH3RNKW46XEZNCGZEBAGJISKDZKQXKSQ2N5G5SFX36TLWKKR6QJ6' = 'xlm:FLTT-GBTZKH3RNKW46XEZNCGZEBAGJISKDZKQXKSQ2N5G5SFX36TLWKKR6QJ6', + 'xlm:WTSI-GAD22PDBRFEMXAKPFDP4JGDFWKKD6VPXWUWEAXBS6ZYJYFFQDUN7HAFG' = 'xlm:WTSI-GAD22PDBRFEMXAKPFDP4JGDFWKKD6VPXWUWEAXBS6ZYJYFFQDUN7HAFG', // Eth NFTs // generic NFTs @@ -3065,6 +3076,7 @@ export enum UnderlyingAsset { 'txlm:BTGT-GCCUFJV5P32QGVZVW73SF7P53ZH2OXJ5C3DYSXDECSRCP3FU2GJ2PXGE' = 'txlm:BTGT-GCCUFJV5P32QGVZVW73SF7P53ZH2OXJ5C3DYSXDECSRCP3FU2GJ2PXGE', 'txlm:yGHS-GCF46XLX3R7OXIDAFZ3HH6DEY5VT3BJJRSTKSSOKPLGNH6H7QYV3A2OA' = 'txlm:yGHS-GCF46XLX3R7OXIDAFZ3HH6DEY5VT3BJJRSTKSSOKPLGNH6H7QYV3A2OA', 'txlm:TUSDTC-GC26PEYGETD7L6PUW2VCU3PSC7LCLRRPOSUILSHD2RT23IQUEAN4TQBQ' = 'txlm:TUSDTC-GC26PEYGETD7L6PUW2VCU3PSC7LCLRRPOSUILSHD2RT23IQUEAN4TQBQ', + 'txlm:USDL-GDMJSPSI4IXMDDSJPJRIRCBFNMHOK4KKAD67WBDBZ4MYHHJRIPWQ5UQG' = 'txlm:USDL-GDMJSPSI4IXMDDSJPJRIRCBFNMHOK4KKAD67WBDBZ4MYHHJRIPWQ5UQG', // Algorand testnet tokens 'talgo:USON-16026728' = 'talgo:USON-16026728', @@ -3628,6 +3640,7 @@ export enum UnderlyingAsset { 'bsc:hygwon' = 'bsc:hygwon', 'bsc:secuon' = 'bsc:secuon', 'bsc:sysbon' = 'bsc:sysbon', + 'bsc:hei' = 'bsc:hei', // BSC NFTs // generic NFTs @@ -3744,6 +3757,7 @@ export enum UnderlyingAsset { // Bitkub batch (CSHLD-1278) 'arbeth:obt' = 'arbeth:obt', 'arbeth:magic' = 'arbeth:magic', + 'arbeth:usdg' = 'arbeth:usdg', // BaseETH mainnet tokens 'baseeth:aero' = 'baseeth:aero', @@ -3816,6 +3830,7 @@ export enum UnderlyingAsset { 'baseeth:allo' = 'baseeth:allo', 'baseeth:gro' = 'baseeth:gro', 'baseeth:jvhhusdc' = 'baseeth:jvhhusdc', + 'baseeth:glx' = 'baseeth:glx', // BaseETH testnet tokens 'tbaseeth:usdc' = 'tbaseeth:usdc', diff --git a/modules/statics/src/coins/bscTokens.ts b/modules/statics/src/coins/bscTokens.ts index eb350002c3..3ed82e8806 100644 --- a/modules/statics/src/coins/bscTokens.ts +++ b/modules/statics/src/coins/bscTokens.ts @@ -3505,4 +3505,13 @@ export const bscTokens = [ UnderlyingAsset['bsc:real'], BSC_TOKEN_FEATURES_TRUST_ONLY ), + bscToken( + 'ab1c8824-596c-4ebb-8b53-bb8cbe397d89', + 'bsc:hei', + 'Heima', + 18, + '0xf8f173e20e15f3b6cb686fb64724d370689de083', + UnderlyingAsset['bsc:hei'], + BSC_TOKEN_FEATURES + ), ]; diff --git a/modules/statics/src/coins/hoodethTokens.ts b/modules/statics/src/coins/hoodethTokens.ts index 4d18222da8..f6b6c60429 100644 --- a/modules/statics/src/coins/hoodethTokens.ts +++ b/modules/statics/src/coins/hoodethTokens.ts @@ -2974,6 +2974,76 @@ export const hoodethTokens = [ Networks.main.hoodeth, EVM_ERC20_TOKEN_FEATURES_EXCLUDE_SINGAPORE ), + erc20Token( + '3bdc7d7d-700e-4986-8bd1-70dcd323bd1f', + 'hoodeth:index', + 'The Index', + 18, + '0x56910d4409f3a0c78c64dd8d0545ff0705389870', + UnderlyingAsset['hoodeth:index'], + Networks.main.hoodeth, + EVM_ERC20_TOKEN_FEATURES_EXCLUDE_SINGAPORE + ), + erc20Token( + '518ca10c-0553-44b8-9849-40be42ebee2e', + 'hoodeth:up', + 'up', + 18, + '0x57c0e45cb534413d1c20a4240955d6bb250bb4f1', + UnderlyingAsset['hoodeth:up'], + Networks.main.hoodeth, + EVM_ERC20_TOKEN_FEATURES_EXCLUDE_SINGAPORE + ), + erc20Token( + '85237d91-13ad-4624-be3f-3b20bb1a436f', + 'hoodeth:ram', + 'Ramses', + 18, + '0x5173d45a1191ee33cbb7d8c7e65f21b04ed54802', + UnderlyingAsset['hoodeth:ram'], + Networks.main.hoodeth, + EVM_ERC20_TOKEN_FEATURES_EXCLUDE_SINGAPORE + ), + erc20Token( + '4c1fd207-b9f2-4a47-99c0-572afaf74bae', + 'hoodeth:tendies', + 'TENDIES', + 18, + '0x45242320dbb855eea8fd36804c6487e10e97fcf9', + UnderlyingAsset['hoodeth:tendies'], + Networks.main.hoodeth, + EVM_ERC20_TOKEN_FEATURES_EXCLUDE_SINGAPORE + ), + erc20Token( + 'd4949de1-6883-4a1d-a442-67202b4b4652', + 'hoodeth:goose', + 'Goose Token', + 18, + '0x348cc963411fb82cd6e0b64345714fec94f242cb', + UnderlyingAsset['hoodeth:goose'], + Networks.main.hoodeth, + EVM_ERC20_TOKEN_FEATURES_EXCLUDE_SINGAPORE + ), + erc20Token( + '2a5caf22-7819-465a-bc94-d74bbbffdd58', + 'hoodeth:ai', + 'Artificial Inu', + 18, + '0x2e8c31162b855a2ffa90f6f8634643ad6f111e18', + UnderlyingAsset['hoodeth:ai'], + Networks.main.hoodeth, + EVM_ERC20_TOKEN_FEATURES_EXCLUDE_SINGAPORE + ), + erc20Token( + '0889af93-9de4-4204-8dc4-49469ae4228c', + 'hoodeth:pipedog', + 'pipedog', + 18, + '0x5cb6f181081301b44905f3ae15419112ecabd8a6', + UnderlyingAsset['hoodeth:pipedog'], + Networks.main.hoodeth, + EVM_ERC20_TOKEN_FEATURES_EXCLUDE_SINGAPORE + ), erc20Token( '3493d608-fd3e-45dc-926d-783d54a8fe4d', 'thoodeth:amzn', diff --git a/modules/statics/src/coins/ofcCoins.ts b/modules/statics/src/coins/ofcCoins.ts index fd47a16b01..feba3517b1 100644 --- a/modules/statics/src/coins/ofcCoins.ts +++ b/modules/statics/src/coins/ofcCoins.ts @@ -4959,6 +4959,34 @@ export const ofcCoins = [ 7, UnderlyingAsset['xlm:BTGO-GAXTPUVP2XINTMEN57FPJ34DAPZXDMMGX7TB7ASIBWHWT6ARC3IOGA2W'] ), + ofcStellarToken( + '66c55a71-3352-407b-945a-ceed3fdc7487', + 'ofcxlm:usdt0', + 'USDT0', + 7, + UnderlyingAsset['xlm:USDT0-GATISXX6BZ6NC7IKQBY37CJD4SOZL3CYZJWXEDG6JVIY4WBS6KXJHN6Q'] + ), + ofcStellarToken( + '43eae9c6-d08d-4bc1-ad82-075f2a540382', + 'ofcxlm:wtgxx', + 'WisdomTree Government Money Market Digital Fund', + 7, + UnderlyingAsset['xlm:WTGX-GDMBNMFJ3TRFLASJ6UGETFME3PJPNKPU24C7KFDBEBPQFG2CI6UC3JG6'] + ), + ofcStellarToken( + 'e39f4d37-54d9-44df-8d49-74bf44bb46c5', + 'ofcxlm:flttx', + 'WisdomTree Floating Rate Treasury Digital Fund', + 7, + UnderlyingAsset['xlm:FLTT-GBTZKH3RNKW46XEZNCGZEBAGJISKDZKQXKSQ2N5G5SFX36TLWKKR6QJ6'] + ), + ofcStellarToken( + '714742d0-ce52-4ada-9522-a36c270fa22d', + 'ofcxlm:wtsix', + 'WisdomTree Short-Duration Income Digital Fund', + 7, + UnderlyingAsset['xlm:WTSI-GAD22PDBRFEMXAKPFDP4JGDFWKKD6VPXWUWEAXBS6ZYJYFFQDUN7HAFG'] + ), tofcStellarToken( '7b909f95-f4e5-44e5-aaca-1b254d87cc02', @@ -4991,6 +5019,13 @@ export const ofcCoins = [ 7, UnderlyingAsset['txlm:yGHS-GCF46XLX3R7OXIDAFZ3HH6DEY5VT3BJJRSTKSSOKPLGNH6H7QYV3A2OA'] ), + tofcStellarToken( + '640aecc5-ebaa-4465-afca-0349202b74b6', + 'ofctxlm:usdl', + 'Test USDL', + 7, + UnderlyingAsset['txlm:USDL-GDMJSPSI4IXMDDSJPJRIRCBFNMHOK4KKAD67WBDBZ4MYHHJRIPWQ5UQG'] + ), tofcArbethErc20( '2489c0e2-c13f-4287-bd1f-03dcd0a8562e', 'ofctarbeth:link', @@ -6322,6 +6357,7 @@ export const ofcCoins = [ 8, UnderlyingAsset['arbeth:mlk'] ), + ofcArbethErc20('efdcda4e-74aa-4bc6-9f62-4381449a6a43', 'ofcarbeth:usdg', 'USDG', 6, UnderlyingAsset['arbeth:usdg']), // New SOL OFC tokens ofcsolToken( '68a1c4e8-9a22-4177-9fae-d0356f245a85', @@ -6927,4 +6963,5 @@ export const ofcCoins = [ 18, UnderlyingAsset['bsc:sysbon'] ), + ofcBscToken('fb9be7b0-cdde-4452-89a3-0f733db31411', 'ofcbsc:hei', 'Heima', 18, UnderlyingAsset['bsc:hei']), ]; diff --git a/modules/statics/src/coins/ofcErc20Coins.ts b/modules/statics/src/coins/ofcErc20Coins.ts index d4ad03fe51..84be28f37d 100644 --- a/modules/statics/src/coins/ofcErc20Coins.ts +++ b/modules/statics/src/coins/ofcErc20Coins.ts @@ -7647,6 +7647,20 @@ export const tOfcErc20Coins = [ true, 'baseeth' ), + ofcerc20( + 'eb8c558b-45b9-437e-ae83-25508b3760e3', + 'ofcbaseeth:glx', + 'GLMall Token', + 6, + UnderlyingAsset['baseeth:glx'], + undefined, + undefined, + '', + undefined, + undefined, + true, + 'baseeth' + ), ofcerc20( 'e5ffd11d-59b4-4c95-a4c7-bebaf57222f0', 'ofczketh:zk', diff --git a/modules/statics/src/coins/ofcHoodethTokens.ts b/modules/statics/src/coins/ofcHoodethTokens.ts index 485e617c25..deaffb0207 100644 --- a/modules/statics/src/coins/ofcHoodethTokens.ts +++ b/modules/statics/src/coins/ofcHoodethTokens.ts @@ -4190,4 +4190,102 @@ export const ofcHoodethTokens = [ true, 'hoodeth' ), + ofcerc20( + '1eda43a8-f918-4951-8e2d-3020c796ba02', + 'ofchoodeth:index', + 'The Index', + 18, + UnderlyingAsset['hoodeth:index'], + undefined, + undefined, + '', + undefined, + undefined, + true, + 'hoodeth' + ), + ofcerc20( + '4f9f771d-4a33-43bf-89b4-7b1020c81e62', + 'ofchoodeth:up', + 'up', + 18, + UnderlyingAsset['hoodeth:up'], + undefined, + undefined, + '', + undefined, + undefined, + true, + 'hoodeth' + ), + ofcerc20( + 'a2339bfd-444c-455c-9bc8-c4640ec7859e', + 'ofchoodeth:ram', + 'Ramses', + 18, + UnderlyingAsset['hoodeth:ram'], + undefined, + undefined, + '', + undefined, + undefined, + true, + 'hoodeth' + ), + ofcerc20( + 'd6223a5d-7351-4a97-b19f-5fc876b11d28', + 'ofchoodeth:tendies', + 'TENDIES', + 18, + UnderlyingAsset['hoodeth:tendies'], + undefined, + undefined, + '', + undefined, + undefined, + true, + 'hoodeth' + ), + ofcerc20( + '64ba5554-6c1f-4571-ae95-8705219d0f04', + 'ofchoodeth:goose', + 'Goose Token', + 18, + UnderlyingAsset['hoodeth:goose'], + undefined, + undefined, + '', + undefined, + undefined, + true, + 'hoodeth' + ), + ofcerc20( + 'f1a72db2-03dc-456f-854f-29646617034a', + 'ofchoodeth:ai', + 'Artificial Inu', + 18, + UnderlyingAsset['hoodeth:ai'], + undefined, + undefined, + '', + undefined, + undefined, + true, + 'hoodeth' + ), + ofcerc20( + '81004c94-0dfe-40ec-816e-f34d15930ec9', + 'ofchoodeth:pipedog', + 'pipedog', + 18, + UnderlyingAsset['hoodeth:pipedog'], + undefined, + undefined, + '', + undefined, + undefined, + true, + 'hoodeth' + ), ];