Skip to content

Commit 2e79b89

Browse files
feat(statics): add new batch of tokens
TICKET: COIN-2935
1 parent fdde292 commit 2e79b89

File tree

3 files changed

+18
-6
lines changed

3 files changed

+18
-6
lines changed

modules/statics/src/base.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1823,6 +1823,7 @@ export enum UnderlyingAsset {
18231823
'eth:icnt' = 'eth:icnt',
18241824
'eth:god' = 'eth:god',
18251825
'eth:sky' = 'eth:sky',
1826+
'eth:fuel' = 'eth:fuel',
18261827
'eth:xreth' = 'eth:xreth',
18271828
'eth:xy' = 'eth:xy',
18281829
'eth:move' = 'eth:move',

modules/statics/src/coins.ts

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -460,6 +460,7 @@ const ICP_FEATURES = [
460460
const TAO_FEATURES = [...AccountCoin.DEFAULT_FEATURES, CoinFeature.TSS, CoinFeature.TSS_COLD, CoinFeature.STAKING];
461461

462462
const ETH_FEATURES_WITH_FRANKFURT = [...ETH_FEATURES, CoinFeature.CUSTODY_BITGO_FRANKFURT];
463+
const ETH_FEATURES_WITH_GERMANY = [...ETH_FEATURES, CoinFeature.CUSTODY_BITGO_GERMANY];
463464
const ETH_FEATURES_WITH_FRANKFURT_GERMANY = [...ETH_FEATURES_WITH_FRANKFURT, CoinFeature.CUSTODY_BITGO_GERMANY];
464465
const SOL_TOKEN_FEATURES_WITH_FRANKFURT = [
465466
...SOL_TOKEN_FEATURES,
@@ -12351,7 +12352,16 @@ export const coins = CoinMap.fromCoins([
1235112352
'Sky',
1235212353
18,
1235312354
'0x56072c95faa701256059aa122697b133aded9279',
12354-
UnderlyingAsset['eth:sky']
12355+
UnderlyingAsset['eth:sky'],
12356+
ETH_FEATURES_WITH_GERMANY
12357+
),
12358+
erc20(
12359+
'c6ea07a4-4fda-4018-b2cf-967d4bf41255',
12360+
'eth:fuel',
12361+
'Fuel',
12362+
9,
12363+
'0x675b68aa4d9c2d3bb3f0397048e62e6b7192079c',
12364+
UnderlyingAsset['eth:fuel']
1235512365
),
1235612366
erc20(
1235712367
'1edeae93-293e-4883-b007-83b5ae1ba3d4',
@@ -20359,8 +20369,7 @@ export const coins = CoinMap.fromCoins([
2035920369
'bera:bgt',
2036020370
'BGT Token',
2036120371
18,
20362-
// TODO: the mainnet contract address is still not available, adding placeholder here
20363-
'0xbda130737bdd9618301681329bf2e46a016ff9aa',
20372+
'0x656b95e550c07a9ffe548bd4085c72418ceb1dba',
2036420373
UnderlyingAsset['bera:bgt'],
2036520374
BERA_BGT_FEATURES
2036620375
),
@@ -20369,9 +20378,9 @@ export const coins = CoinMap.fromCoins([
2036920378
'bera:honey',
2037020379
'Honey Token',
2037120380
18,
20372-
// TODO: the mainnet contract address is still not available, adding placeholder here, WIN-3597
20373-
'0xbda130737bdd9618301681329bf2e46a016ff9ab',
20374-
UnderlyingAsset['bera:honey']
20381+
'0xfcbd14dc51f0a4d49d5e53c2e0950e0bc26d0dce',
20382+
UnderlyingAsset['bera:honey'],
20383+
BERA_BGT_FEATURES
2037520384
),
2037620385
beraErc20(
2037720386
'31cdb51f-3bcc-489e-8b35-8e074169c573',

modules/statics/test/unit/coins.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@ const custodyFeatures: Record<string, { features: CoinFeature[] }> = {
163163
'sol:tai': { features: [CoinFeature.CUSTODY_BITGO_FRANKFURT] },
164164
'sol:pengu': { features: [CoinFeature.CUSTODY_BITGO_FRANKFURT] },
165165
'bera:bgt': { features: [CoinFeature.CUSTODY_BITGO_FRANKFURT, CoinFeature.CUSTODY_BITGO_GERMANY] },
166+
'bera:honey': { features: [CoinFeature.CUSTODY_BITGO_FRANKFURT, CoinFeature.CUSTODY_BITGO_GERMANY] },
166167
injective: { features: [CoinFeature.CUSTODY_BITGO_SWITZERLAND] },
167168
opeth: { features: [CoinFeature.CUSTODY_BITGO_FRANKFURT] },
168169
'opeth:op': { features: [CoinFeature.CUSTODY_BITGO_FRANKFURT] },
@@ -258,6 +259,7 @@ const custodyFeatures: Record<string, { features: CoinFeature[] }> = {
258259
mnt: { features: [CoinFeature.CUSTODY_BITGO_FRANKFURT] },
259260
pyusd: { features: [CoinFeature.CUSTODY_BITGO_FRANKFURT] },
260261
'eth:spx': { features: [CoinFeature.CUSTODY_BITGO_FRANKFURT] },
262+
'eth:sky': { features: [CoinFeature.CUSTODY_BITGO_GERMANY] },
261263
'sol:pyth': { features: [CoinFeature.CUSTODY_BITGO_FRANKFURT] },
262264
'sol:bonk': { features: [CoinFeature.CUSTODY_BITGO_FRANKFURT] },
263265
'sol:jup': { features: [CoinFeature.CUSTODY_BITGO_FRANKFURT] },

0 commit comments

Comments
 (0)