From 8e5bc479c120c24cb39b9224d89e76ac79432197 Mon Sep 17 00:00:00 2001 From: JoowonYun Date: Tue, 31 Oct 2023 14:04:49 +0900 Subject: [PATCH] fix: do not deduct tax in ibc --- src/helpers/token.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helpers/token.ts b/src/helpers/token.ts index ce3099dd..f535d4a2 100644 --- a/src/helpers/token.ts +++ b/src/helpers/token.ts @@ -76,7 +76,7 @@ export const getSymbol = (key: string) => { } export const hasTaxToken = (contract_addr: string) => { - if (contract_addr.startsWith("terra")) { + if (contract_addr.startsWith("terra") || contract_addr.startsWith("ibc/")) { return false }