diff --git a/lib/displayHelpers.ts b/lib/displayHelpers.ts index 4e7226c..1155cc9 100644 --- a/lib/displayHelpers.ts +++ b/lib/displayHelpers.ts @@ -53,7 +53,7 @@ const printableCoin = (coin: Coin, chainInfo: ChainInfo) => { if (coin.denom.startsWith("ibc/")) { const value = coin.amount; const hash = coin.denom.slice(4); - const ellidedHash = ellideMiddle(hash, 12); + const ellidedHash = ellideMiddle(hash, 11); const ticker = `ibc/${ellidedHash}`; return value + thinSpace + ticker; }