From 431b86ae09944b2bfacf84e1c7cf3c17e8b60f58 Mon Sep 17 00:00:00 2001 From: Aditya Tiwari Date: Tue, 14 Oct 2025 18:53:07 +0530 Subject: [PATCH] chore(statics): remove rebase feature from vtho token Ticket: COIN-6055 --- modules/statics/src/coins/vetTokens.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/statics/src/coins/vetTokens.ts b/modules/statics/src/coins/vetTokens.ts index cd22821f59..d944fb097a 100644 --- a/modules/statics/src/coins/vetTokens.ts +++ b/modules/statics/src/coins/vetTokens.ts @@ -1,5 +1,5 @@ import { tvetToken, vetToken } from '../account'; -import { UnderlyingAsset, CoinFeature } from '../base'; +import { UnderlyingAsset } from '../base'; import { VET_TOKEN_FEATURES } from '../coinFeatures'; export const vetTokens = [ @@ -19,6 +19,6 @@ export const vetTokens = [ 18, '0x0000000000000000000000000000456e65726779', UnderlyingAsset['tvet:vtho'], - [...VET_TOKEN_FEATURES, CoinFeature.REBASE_TOKEN] + VET_TOKEN_FEATURES ), ];