diff --git a/coin/models.go b/coin/models.go index bb59b47..8d34010 100644 --- a/coin/models.go +++ b/coin/models.go @@ -138,6 +138,8 @@ func GetCoinExploreURL(c Coin, tokenID, tokenType string) (string, error) { return fmt.Sprintf("https://www.mintscan.io/neutron/account/%s", tokenID), nil case IOTEXEVM: return fmt.Sprintf("https://iotexscan.io/address/%s#transactions", tokenID), nil + case CRYPTOORG: + return fmt.Sprintf("https://crypto.org/explorer/account/%s", tokenID), nil } return "", errors.New("no explorer for coin: " + c.Handle)