From 491541e0403a1f8b1b0cb482a31488f77b3955ae Mon Sep 17 00:00:00 2001 From: Denis <136321897+defisaur@users.noreply.github.com> Date: Wed, 27 Dec 2023 14:02:21 +0400 Subject: [PATCH] coin --- types/chain.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/types/chain.go b/types/chain.go index 6c79116..ab0fa8c 100644 --- a/types/chain.go +++ b/types/chain.go @@ -159,6 +159,8 @@ func GetChainFromAssetType(assetType string) (coin.Coin, error) { return coin.Stargaze(), nil case MANTLE: return coin.Mantle(), nil + case MANTA: + return coin.Manta(), nil } return coin.Coin{}, errors.New("unknown asset type: " + assetType)