Skip to content

Commit 2ac0b7b

Browse files
committed
feat(statics): enable avax liquid staking in prod
TICKET: SC-2419
1 parent 30c6d78 commit 2ac0b7b

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

modules/statics/src/coinFeatures.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ export const AVAXC_FEATURES = [
6060
CoinFeature.MULTISIG_COLD,
6161
CoinFeature.MULTISIG,
6262
CoinFeature.EIP1559,
63+
CoinFeature.STAKING,
6364
];
6465
export const CELO_FEATURES = [
6566
...ETH_FEATURES,

modules/statics/src/coins.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ export const coins = CoinMap.fromCoins([
215215
18,
216216
UnderlyingAsset.AVAXC,
217217
BaseUnit.ETH,
218-
[...AVAXC_FEATURES, CoinFeature.STAKING]
218+
AVAXC_FEATURES
219219
),
220220
account(
221221
'f3f0f790-fc53-40ba-a9cc-71909fc50566',

modules/statics/test/unit/coins.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ const custodyFeatures: Record<string, { features: CoinFeature[] }> = {
5454
CoinFeature.CUSTODY_BITGO_GERMANY,
5555
CoinFeature.CUSTODY_BITGO_FRANKFURT,
5656
CoinFeature.CUSTODY_BITGO_SWITZERLAND,
57+
CoinFeature.STAKING,
5758
],
5859
},
5960
avaxp: {

0 commit comments

Comments
 (0)