Skip to content

Commit d3fa61f

Browse files
Merge pull request #8728 from BitGo/CGD-1081-robinhood-mainnet-tokens
feat: add Robinhood mainnet ERC-20 tokens (TSLA and USDG)
2 parents 435f7df + 42d4c1d commit d3fa61f

3 files changed

Lines changed: 49 additions & 0 deletions

File tree

modules/statics/src/allCoinsAndTokens.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2970,6 +2970,24 @@ export const allCoinsAndTokens = [
29702970
'',
29712971
'HoodETH'
29722972
),
2973+
erc20Token(
2974+
'71bfcfbb-0e1d-4712-9836-8e7c481b9d87',
2975+
'hoodeth:tsla',
2976+
'Tesla',
2977+
18,
2978+
'0x322f0929c4625ed5bad873c95208d54e1c003b2d',
2979+
UnderlyingAsset['hoodeth:tsla'],
2980+
Networks.main.hoodeth
2981+
),
2982+
erc20Token(
2983+
'ca3ac76e-e88f-4f39-8571-006cd9b97389',
2984+
'hoodeth:usdg',
2985+
'USDG',
2986+
18,
2987+
'0x5fc5360d0400a0fd4f2af552add042d716f1d168',
2988+
UnderlyingAsset['hoodeth:usdg'],
2989+
Networks.main.hoodeth
2990+
),
29732991
account(
29742992
'ddf32007-d3a5-4cad-9a20-b7793e96fdd2',
29752993
'h',

modules/statics/src/base.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1905,6 +1905,9 @@ export enum UnderlyingAsset {
19051905
// Robinhood Chain testnet ERC-20 tokens
19061906
'thoodeth:amzn' = 'thoodeth:amzn',
19071907
'thoodeth:tsla' = 'thoodeth:tsla',
1908+
// Robinhood Chain mainnet ERC-20 tokens
1909+
'hoodeth:tsla' = 'hoodeth:tsla',
1910+
'hoodeth:usdg' = 'hoodeth:usdg',
19081911
THKD = 'thkd',
19091912
THUNDER = 'thunder',
19101913
TIO = 'tio',

modules/statics/src/coins/ofcErc20Coins.ts

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,34 @@ export const ofcErc20Coins = [
3535
ofcerc20('bd61426f-87d8-4c52-b47d-2dc5eed84f64', 'ofcnmr', 'Numeraire', 18, UnderlyingAsset.NMR),
3636
ofcerc20('3db3b895-756c-4c95-9dea-08d283f09a7a', 'ofcmeme', 'Meme', 8, UnderlyingAsset.MEME),
3737
ofcerc20('acf1a5a3-4555-4aa2-8c80-4e2cd4cdb61c', 'ofceth:meme', 'meme', 18, underlyingAssetForSymbol('eth:meme')),
38+
ofcerc20(
39+
'1806a1c6-56b1-4107-89af-8c93159905b9',
40+
'ofchoodeth:tsla',
41+
'Tesla',
42+
18,
43+
UnderlyingAsset['hoodeth:tsla'],
44+
undefined,
45+
undefined,
46+
undefined,
47+
undefined,
48+
undefined,
49+
undefined,
50+
'hoodeth'
51+
),
52+
ofcerc20(
53+
'4099ae4f-a6d0-4ee5-b26b-029cdd93645a',
54+
'ofchoodeth:usdg',
55+
'USDG',
56+
18,
57+
UnderlyingAsset['hoodeth:usdg'],
58+
undefined,
59+
undefined,
60+
undefined,
61+
undefined,
62+
undefined,
63+
undefined,
64+
'hoodeth'
65+
),
3866

3967
ofcerc20('8a73d170-28c1-48c9-8d3c-c7ea374f4414', 'ofcband', 'Band Protocol', 18, UnderlyingAsset.BAND),
4068
ofcerc20('ad5d8cf4-59b5-4b82-b1ee-d5d0d6ba5944', 'ofcant', 'Aragon', 18, UnderlyingAsset.ANT),

0 commit comments

Comments
 (0)