cosmos-sdk/x/ibc/20-transfer/types/keys.go

54 lines
1.4 KiB
Go

package types
import (
"fmt"
"github.com/tendermint/tendermint/crypto"
sdk "github.com/cosmos/cosmos-sdk/types"
ibctypes "github.com/cosmos/cosmos-sdk/x/ibc/types"
)
const (
// ModuleName defines the IBC transfer name
ModuleName = "transfer"
// Version defines the current version the IBC tranfer
// module supports
Version = "ics20-1"
// Default PortID that transfer module binds to
PortID = "transfer"
// StoreKey is the store key string for IBC transfer
StoreKey = ModuleName
// RouterKey is the message route for IBC transfer
RouterKey = ModuleName
// Key to store portID in our store
PortKey = "portID"
// QuerierRoute is the querier route for IBC transfer
QuerierRoute = ModuleName
)
// GetEscrowAddress returns the escrow address for the specified channel
//
// CONTRACT: this assumes that there's only one bank bridge module that owns the
// port associated with the channel ID so that the address created is actually
// unique.
func GetEscrowAddress(portID, channelID string) sdk.AccAddress {
return sdk.AccAddress(crypto.AddressHash([]byte(portID + channelID)))
}
// GetDenomPrefix returns the receiving denomination prefix
func GetDenomPrefix(portID, channelID string) string {
return fmt.Sprintf("%s/%s/", portID, channelID)
}
// GetModuleAccountName returns the IBC transfer module account name for supply
func GetModuleAccountName() string {
return fmt.Sprintf("%s/%s", ibctypes.ModuleName, ModuleName)
}