types

package
v1.1.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 20, 2020 License: Apache-2.0 Imports: 34 Imported by: 66

Documentation

Overview

nolint

nolint

Package types is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Index

Constants

View Source
const (
	AttributeValueCategory = ModuleName

	EventTypeIssueToken         = "issue_token"
	EventTypeEditToken          = "edit_token"
	EventTypeMintToken          = "mint_token"
	EventTypeTransferTokenOwner = "transfer_token_owner"

	AttributeKeySymbol = "symbol"
	AttributeKeyAmount = "amount"
)
View Source
const (
	// ModuleName is the name of the Token module
	ModuleName = "token"

	// StoreKey is the string store representation
	StoreKey string = ModuleName

	// QuerierRoute is the querier route for the Asset module
	QuerierRoute string = ModuleName

	// RouterKey is the msg router key for the Asset module
	RouterKey string = ModuleName

	// DefaultParamspace default name for parameter store
	DefaultParamspace = ModuleName
)
View Source
const (
	// MsgRoute identifies transaction types
	MsgRoute = "token"

	TypeMsgIssueToken         = "issue_token"
	TypeMsgEditToken          = "edit_token"
	TypeMsgMintToken          = "mint_token"
	TypeMsgTransferTokenOwner = "transfer_token_owner"

	// constant used to indicate that some field should not be updated
	DoNotModify = "[do-not-modify]"

	MaximumMaxSupply  = uint64(1000000000000) // maximal limitation for token max supply,1000 billion
	MaximumInitSupply = uint64(100000000000)  // maximal limitation for token initial supply,100 billion
	MaximumScale      = uint32(9)             // maximal limitation for token decimal
	MinimumSymbolLen  = 3                     // minimal limitation for the length of the token's symbol / canonical_symbol
	MaximumSymbolLen  = 20                    // maximal limitation for the length of the token's symbol / canonical_symbol
	MaximumNameLen    = 32                    // maximal limitation for the length of the token's name
	MinimumMinUnitLen = 3                     // minimal limitation for the length of the token's min_unit
	MaximumMinUnitLen = 20                    // maximal limitation for the length of the token's min_unit
)
View Source
const (
	QueryToken  = "token"
	QueryTokens = "tokens"
	QueryFees   = "fees"
	QueryParams = "params"
)

Variables

View Source
var (
	ErrNilOwner             = sdkerrors.Register(ModuleName, 2, "the owner of the token must be specified")
	ErrInvalidName          = sdkerrors.Register(ModuleName, 3, "invalid token name")
	ErrInvalidMinUnit       = sdkerrors.Register(ModuleName, 4, "invalid token min_unit")
	ErrInvalidSymbol        = sdkerrors.Register(ModuleName, 5, "must be standard denom")
	ErrInvalidInitSupply    = sdkerrors.Register(ModuleName, 6, "invalid token initial supply")
	ErrInvalidMaxSupply     = sdkerrors.Register(ModuleName, 7, "invalid token max supply")
	ErrInvalidScale         = sdkerrors.Register(ModuleName, 8, "invalid token scale")
	ErrSymbolAlreadyExists  = sdkerrors.Register(ModuleName, 9, "symbol has existed")
	ErrMinUnitAlreadyExists = sdkerrors.Register(ModuleName, 10, "min_unit has existed")
	ErrTokenNotExists       = sdkerrors.Register(ModuleName, 11, "token does not exist")
	ErrInvalidAddress       = sdkerrors.Register(ModuleName, 12, "the owner of the token must be specified")
	ErrInvalidToAddress     = sdkerrors.Register(ModuleName, 13, "the new owner must not be same as the original owner")
	ErrInvalidOwner         = sdkerrors.Register(ModuleName, 14, "invalid token owner")
	ErrNotMintable          = sdkerrors.Register(ModuleName, 15, "the token is set to be non-mintable")
)

token module sentinel errors

View Source
var (
	ErrInvalidLengthGenesis        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowGenesis          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupGenesis = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	PrefixTokenForSymbol  = []byte{0x1} // symbol prefix for the token
	PrefixTokenForMinUint = []byte{0x2} // min_unit prefix for the token
	PrefixTokens          = []byte{0x3} // prefix for the tokens
)
View Source
var (
	IsAlphaNumericDash = regexp.MustCompile(`^[a-zA-Z0-9-]+$`).MatchString // only accepts alphanumeric characters
	IsBeginWithAlpha   = regexp.MustCompile(`^[a-zA-Z].*`).MatchString
)
View Source
var (
	KeyTokenTaxRate      = []byte("TokenTaxRate")
	KeyIssueTokenBaseFee = []byte("IssueTokenBaseFee")
	KeyMintTokenFeeRatio = []byte("MintTokenFeeRatio")
)

parameter keys

View Source
var (
	ErrInvalidLengthQuery        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowQuery          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupQuery = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthToken        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowToken          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupToken = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ModuleCdc = codec.NewAminoCodec(amino)
)

Functions

func CheckSymbol

func CheckSymbol(symbol string) error

CheckSymbol checks if the given symbol is valid

func KeyMinUint

func KeyMinUint(minUnit string) []byte

KeyMinUint returns the key of the token with the specified min_unit

func KeySymbol

func KeySymbol(symbol string) []byte

KeySymbol returns the key of the token with the specified symbol

func KeyTokens

func KeyTokens(owner sdk.AccAddress, symbol string) []byte

KeyTokens returns the key of the specified owner and symbol. Intended for querying all tokens of an owner

func ParamKeyTable

func ParamKeyTable() paramtypes.KeyTable

ParamTypeTable returns the TypeTable for coinswap module

func RegisterInterfaces

func RegisterInterfaces(registry types.InterfaceRegistry)

func RegisterLegacyAminoCodec

func RegisterLegacyAminoCodec(cdc *codec.LegacyAmino)

func RegisterQueryHandler

func RegisterQueryHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error

RegisterQueryHandler registers the http handlers for service Query to "mux". The handlers forward requests to the grpc endpoint over "conn".

func RegisterQueryHandlerClient

func RegisterQueryHandlerClient(ctx context.Context, mux *runtime.ServeMux, client QueryClient) error

RegisterQueryHandlerClient registers the http handlers for service Query to "mux". The handlers forward requests to the grpc endpoint over the given implementation of "QueryClient". Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in "QueryClient" doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in "QueryClient" to call the correct interceptors.

func RegisterQueryHandlerFromEndpoint

func RegisterQueryHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error)

RegisterQueryHandlerFromEndpoint is same as RegisterQueryHandler but automatically dials to "endpoint" and closes the connection when "ctx" gets done.

func RegisterQueryHandlerServer

func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, server QueryServer) error

RegisterQueryHandlerServer registers the http handlers for service Query to "mux". UnaryRPC :call QueryServer directly. StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906. Note that using this registration option will cause many gRPC library features (such as grpc.SendHeader, etc) to stop working. Consider using RegisterQueryHandlerFromEndpoint instead.

func RegisterQueryServer

func RegisterQueryServer(s grpc1.Server, srv QueryServer)

func SetNativeToken

func SetNativeToken(
	symbol string,
	name string,
	minUnit string,
	decimal uint32,
	initialSupply,
	maxSupply uint64,
	mintable bool,
	owner sdk.AccAddress,
)

SetNativeToken reset the system's default native token

func ValidateParams

func ValidateParams(p Params) error

func ValidateToken

func ValidateToken(token Token) error

Types

type AccountKeeper

type AccountKeeper interface {
	GetAccount(ctx sdk.Context, addr sdk.AccAddress) authtypes.AccountI
	GetModuleAddress(name string) sdk.AccAddress
	GetModuleAccount(ctx sdk.Context, name string) authtypes.ModuleAccountI
}

AccountKeeper defines the expected account keeper for query account

type BankKeeper

type BankKeeper interface {
	MintCoins(ctx sdk.Context, moduleName string, amt sdk.Coins) error
	BurnCoins(ctx sdk.Context, moduleName string, amt sdk.Coins) error

	GetSupply(ctx sdk.Context) (supply bank.SupplyI)
	GetBalance(ctx sdk.Context, addr sdk.AccAddress, denom string) sdk.Coin

	SendCoinsFromModuleToAccount(ctx sdk.Context, senderModule string, recipientAddr sdk.AccAddress, amt sdk.Coins) error
	SendCoinsFromAccountToModule(ctx sdk.Context, senderAddr sdk.AccAddress, recipientModule string, amt sdk.Coins) error
	SendCoinsFromModuleToModule(ctx sdk.Context, senderModule, recipientModule string, amt sdk.Coins) error

	SpendableCoins(ctx sdk.Context, addr sdk.AccAddress) sdk.Coins
}

BankKeeper defines the expected bank keeper for module accounts (noalias)

type Bool

type Bool string
const (
	False Bool = "false"
	True  Bool = "true"
	Nil   Bool = ""
)

func ParseBool

func ParseBool(v string) (Bool, error)

func (Bool) Marshal

func (b Bool) Marshal() ([]byte, error)

Marshal needed for protobuf compatibility

func (Bool) MarshalJSON

func (b Bool) MarshalJSON() ([]byte, error)

Marshals to JSON using string

func (Bool) String

func (b Bool) String() string

func (Bool) ToBool

func (b Bool) ToBool() bool

func (*Bool) Unmarshal

func (b *Bool) Unmarshal(data []byte) error

Unmarshal needed for protobuf compatibility

func (*Bool) UnmarshalJSON

func (b *Bool) UnmarshalJSON(data []byte) error

UnmarshalJSON from using string

type GenesisState

type GenesisState struct {
	Params Params  `protobuf:"bytes,1,opt,name=params,proto3" json:"params"`
	Tokens []Token `protobuf:"bytes,2,rep,name=tokens,proto3" json:"tokens"`
}

GenesisState defines the token module's genesis state.

func NewGenesisState

func NewGenesisState(params Params, tokens []Token) GenesisState

NewGenesisState creates a new genesis state.

func (*GenesisState) Descriptor

func (*GenesisState) Descriptor() ([]byte, []int)

func (*GenesisState) GetParams

func (m *GenesisState) GetParams() Params

func (*GenesisState) GetTokens

func (m *GenesisState) GetTokens() []Token

func (*GenesisState) Marshal

func (m *GenesisState) Marshal() (dAtA []byte, err error)

func (*GenesisState) MarshalTo

func (m *GenesisState) MarshalTo(dAtA []byte) (int, error)

func (*GenesisState) MarshalToSizedBuffer

func (m *GenesisState) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GenesisState) ProtoMessage

func (*GenesisState) ProtoMessage()

func (*GenesisState) Reset

func (m *GenesisState) Reset()

func (*GenesisState) Size

func (m *GenesisState) Size() (n int)

func (*GenesisState) String

func (m *GenesisState) String() string

func (*GenesisState) Unmarshal

func (m *GenesisState) Unmarshal(dAtA []byte) error

func (*GenesisState) XXX_DiscardUnknown

func (m *GenesisState) XXX_DiscardUnknown()

func (*GenesisState) XXX_Marshal

func (m *GenesisState) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GenesisState) XXX_Merge

func (m *GenesisState) XXX_Merge(src proto.Message)

func (*GenesisState) XXX_Size

func (m *GenesisState) XXX_Size() int

func (*GenesisState) XXX_Unmarshal

func (m *GenesisState) XXX_Unmarshal(b []byte) error

type MsgEditToken

type MsgEditToken struct {
	Symbol    string                                        `protobuf:"bytes,1,opt,name=symbol,proto3" json:"symbol,omitempty"`
	Name      string                                        `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	MaxSupply uint64                                        `protobuf:"varint,3,opt,name=max_supply,json=maxSupply,proto3" json:"max_supply,omitempty" yaml:"max_supply"`
	Mintable  Bool                                          `protobuf:"bytes,4,opt,name=mintable,proto3,casttype=Bool" json:"mintable,omitempty"`
	Owner     github_com_cosmos_cosmos_sdk_types.AccAddress `protobuf:"bytes,5,opt,name=owner,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"owner,omitempty"`
}

MsgEditToken defines an SDK message for editing a new token.

func NewMsgEditToken

func NewMsgEditToken(name, symbol string, maxSupply uint64, mintable Bool, owner sdk.AccAddress) *MsgEditToken

NewMsgEditToken creates a MsgEditToken

func (*MsgEditToken) Descriptor

func (*MsgEditToken) Descriptor() ([]byte, []int)

func (MsgEditToken) GetSignBytes

func (msg MsgEditToken) GetSignBytes() []byte

GetSignBytes implements Msg

func (MsgEditToken) GetSigners

func (msg MsgEditToken) GetSigners() []sdk.AccAddress

GetSigners implements Msg

func (*MsgEditToken) Marshal

func (m *MsgEditToken) Marshal() (dAtA []byte, err error)

func (*MsgEditToken) MarshalTo

func (m *MsgEditToken) MarshalTo(dAtA []byte) (int, error)

func (*MsgEditToken) MarshalToSizedBuffer

func (m *MsgEditToken) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MsgEditToken) ProtoMessage

func (*MsgEditToken) ProtoMessage()

func (*MsgEditToken) Reset

func (m *MsgEditToken) Reset()

func (MsgEditToken) Route

func (msg MsgEditToken) Route() string

Route implements Msg

func (*MsgEditToken) Size

func (m *MsgEditToken) Size() (n int)

func (*MsgEditToken) String

func (m *MsgEditToken) String() string

func (MsgEditToken) Type

func (msg MsgEditToken) Type() string

Type implements Msg

func (*MsgEditToken) Unmarshal

func (m *MsgEditToken) Unmarshal(dAtA []byte) error

func (MsgEditToken) ValidateBasic

func (msg MsgEditToken) ValidateBasic() error

ValidateBasic implements Msg

func (*MsgEditToken) XXX_DiscardUnknown

func (m *MsgEditToken) XXX_DiscardUnknown()

func (*MsgEditToken) XXX_Marshal

func (m *MsgEditToken) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MsgEditToken) XXX_Merge

func (m *MsgEditToken) XXX_Merge(src proto.Message)

func (*MsgEditToken) XXX_Size

func (m *MsgEditToken) XXX_Size() int

func (*MsgEditToken) XXX_Unmarshal

func (m *MsgEditToken) XXX_Unmarshal(b []byte) error

type MsgIssueToken

type MsgIssueToken struct {
	Symbol        string                                        `protobuf:"bytes,1,opt,name=symbol,proto3" json:"symbol,omitempty"`
	Name          string                                        `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Scale         uint32                                        `protobuf:"varint,3,opt,name=scale,proto3" json:"scale,omitempty"`
	MinUnit       string                                        `protobuf:"bytes,4,opt,name=min_unit,json=minUnit,proto3" json:"min_unit,omitempty" yaml:"min_unit"`
	InitialSupply uint64                                        `protobuf:"varint,5,opt,name=initial_supply,json=initialSupply,proto3" json:"initial_supply,omitempty" yaml:"initial_supply"`
	MaxSupply     uint64                                        `protobuf:"varint,6,opt,name=max_supply,json=maxSupply,proto3" json:"max_supply,omitempty" yaml:"max_supply"`
	Mintable      bool                                          `protobuf:"varint,7,opt,name=mintable,proto3" json:"mintable,omitempty"`
	Owner         github_com_cosmos_cosmos_sdk_types.AccAddress `protobuf:"bytes,8,opt,name=owner,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"owner,omitempty"`
}

MsgIssueToken defines an SDK message for issuing a new token.

func NewMsgIssueToken

func NewMsgIssueToken(
	symbol string, minUnit string, name string,
	scale uint32, initialSupply, maxSupply uint64,
	mintable bool, owner sdk.AccAddress,
) *MsgIssueToken

NewMsgIssueToken - construct token issue msg.

func (*MsgIssueToken) Descriptor

func (*MsgIssueToken) Descriptor() ([]byte, []int)

func (MsgIssueToken) GetSignBytes

func (msg MsgIssueToken) GetSignBytes() []byte

Implements Msg.

func (MsgIssueToken) GetSigners

func (msg MsgIssueToken) GetSigners() []sdk.AccAddress

Implements Msg.

func (*MsgIssueToken) Marshal

func (m *MsgIssueToken) Marshal() (dAtA []byte, err error)

func (*MsgIssueToken) MarshalTo

func (m *MsgIssueToken) MarshalTo(dAtA []byte) (int, error)

func (*MsgIssueToken) MarshalToSizedBuffer

func (m *MsgIssueToken) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MsgIssueToken) ProtoMessage

func (*MsgIssueToken) ProtoMessage()

func (*MsgIssueToken) Reset

func (m *MsgIssueToken) Reset()

func (MsgIssueToken) Route

func (msg MsgIssueToken) Route() string

Implements Msg.

func (*MsgIssueToken) Size

func (m *MsgIssueToken) Size() (n int)

func (*MsgIssueToken) String

func (m *MsgIssueToken) String() string

func (MsgIssueToken) Type

func (msg MsgIssueToken) Type() string

func (*MsgIssueToken) Unmarshal

func (m *MsgIssueToken) Unmarshal(dAtA []byte) error

func (MsgIssueToken) ValidateBasic

func (msg MsgIssueToken) ValidateBasic() error

Implements Msg.

func (*MsgIssueToken) XXX_DiscardUnknown

func (m *MsgIssueToken) XXX_DiscardUnknown()

func (*MsgIssueToken) XXX_Marshal

func (m *MsgIssueToken) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MsgIssueToken) XXX_Merge

func (m *MsgIssueToken) XXX_Merge(src proto.Message)

func (*MsgIssueToken) XXX_Size

func (m *MsgIssueToken) XXX_Size() int

func (*MsgIssueToken) XXX_Unmarshal

func (m *MsgIssueToken) XXX_Unmarshal(b []byte) error

type MsgMintToken

type MsgMintToken struct {
	Symbol string                                        `protobuf:"bytes,1,opt,name=symbol,proto3" json:"symbol,omitempty"`
	Amount uint64                                        `protobuf:"varint,2,opt,name=amount,proto3" json:"amount,omitempty"`
	To     github_com_cosmos_cosmos_sdk_types.AccAddress `protobuf:"bytes,3,opt,name=to,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"to,omitempty"`
	Owner  github_com_cosmos_cosmos_sdk_types.AccAddress `protobuf:"bytes,4,opt,name=owner,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"owner,omitempty"`
}

MsgMintToken defines an SDK message for minting a new token.

func NewMsgMintToken

func NewMsgMintToken(symbol string, owner, to sdk.AccAddress, amount uint64) *MsgMintToken

NewMsgMintToken creates a MsgMintToken

func (*MsgMintToken) Descriptor

func (*MsgMintToken) Descriptor() ([]byte, []int)

func (MsgMintToken) GetSignBytes

func (msg MsgMintToken) GetSignBytes() []byte

GetSignBytes implements Msg

func (MsgMintToken) GetSigners

func (msg MsgMintToken) GetSigners() []sdk.AccAddress

GetSigners implements Msg

func (*MsgMintToken) Marshal

func (m *MsgMintToken) Marshal() (dAtA []byte, err error)

func (*MsgMintToken) MarshalTo

func (m *MsgMintToken) MarshalTo(dAtA []byte) (int, error)

func (*MsgMintToken) MarshalToSizedBuffer

func (m *MsgMintToken) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MsgMintToken) ProtoMessage

func (*MsgMintToken) ProtoMessage()

func (*MsgMintToken) Reset

func (m *MsgMintToken) Reset()

func (MsgMintToken) Route

func (msg MsgMintToken) Route() string

Route implements Msg

func (*MsgMintToken) Size

func (m *MsgMintToken) Size() (n int)

func (*MsgMintToken) String

func (m *MsgMintToken) String() string

func (MsgMintToken) Type

func (msg MsgMintToken) Type() string

Type implements Msg

func (*MsgMintToken) Unmarshal

func (m *MsgMintToken) Unmarshal(dAtA []byte) error

func (MsgMintToken) ValidateBasic

func (msg MsgMintToken) ValidateBasic() error

ValidateBasic implements Msg

func (*MsgMintToken) XXX_DiscardUnknown

func (m *MsgMintToken) XXX_DiscardUnknown()

func (*MsgMintToken) XXX_Marshal

func (m *MsgMintToken) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MsgMintToken) XXX_Merge

func (m *MsgMintToken) XXX_Merge(src proto.Message)

func (*MsgMintToken) XXX_Size

func (m *MsgMintToken) XXX_Size() int

func (*MsgMintToken) XXX_Unmarshal

func (m *MsgMintToken) XXX_Unmarshal(b []byte) error

type MsgTransferTokenOwner

type MsgTransferTokenOwner struct {
	SrcOwner github_com_cosmos_cosmos_sdk_types.AccAddress `` /* 157-byte string literal not displayed */
	DstOwner github_com_cosmos_cosmos_sdk_types.AccAddress `` /* 157-byte string literal not displayed */
	Symbol   string                                        `protobuf:"bytes,3,opt,name=symbol,proto3" json:"symbol,omitempty"`
}

MsgMintToken defines an SDK message for transferring the token owner.

func NewMsgTransferTokenOwner

func NewMsgTransferTokenOwner(srcOwner, dstOwner sdk.AccAddress, symbol string) *MsgTransferTokenOwner

func (*MsgTransferTokenOwner) Descriptor

func (*MsgTransferTokenOwner) Descriptor() ([]byte, []int)

func (MsgTransferTokenOwner) GetSignBytes

func (msg MsgTransferTokenOwner) GetSignBytes() []byte

GetSignBytes implements Msg

func (MsgTransferTokenOwner) GetSigners

func (msg MsgTransferTokenOwner) GetSigners() []sdk.AccAddress

GetSigners implements Msg

func (*MsgTransferTokenOwner) Marshal

func (m *MsgTransferTokenOwner) Marshal() (dAtA []byte, err error)

func (*MsgTransferTokenOwner) MarshalTo

func (m *MsgTransferTokenOwner) MarshalTo(dAtA []byte) (int, error)

func (*MsgTransferTokenOwner) MarshalToSizedBuffer

func (m *MsgTransferTokenOwner) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MsgTransferTokenOwner) ProtoMessage

func (*MsgTransferTokenOwner) ProtoMessage()

func (*MsgTransferTokenOwner) Reset

func (m *MsgTransferTokenOwner) Reset()

func (MsgTransferTokenOwner) Route

func (msg MsgTransferTokenOwner) Route() string

Route implements Msg

func (*MsgTransferTokenOwner) Size

func (m *MsgTransferTokenOwner) Size() (n int)

func (*MsgTransferTokenOwner) String

func (m *MsgTransferTokenOwner) String() string

func (MsgTransferTokenOwner) Type

func (msg MsgTransferTokenOwner) Type() string

Type implements Msg

func (*MsgTransferTokenOwner) Unmarshal

func (m *MsgTransferTokenOwner) Unmarshal(dAtA []byte) error

func (MsgTransferTokenOwner) ValidateBasic

func (msg MsgTransferTokenOwner) ValidateBasic() error

func (*MsgTransferTokenOwner) XXX_DiscardUnknown

func (m *MsgTransferTokenOwner) XXX_DiscardUnknown()

func (*MsgTransferTokenOwner) XXX_Marshal

func (m *MsgTransferTokenOwner) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MsgTransferTokenOwner) XXX_Merge

func (m *MsgTransferTokenOwner) XXX_Merge(src proto.Message)

func (*MsgTransferTokenOwner) XXX_Size

func (m *MsgTransferTokenOwner) XXX_Size() int

func (*MsgTransferTokenOwner) XXX_Unmarshal

func (m *MsgTransferTokenOwner) XXX_Unmarshal(b []byte) error

type Params

type Params struct {
	TokenTaxRate      github_com_cosmos_cosmos_sdk_types.Dec `` /* 161-byte string literal not displayed */
	IssueTokenBaseFee types.Coin                             `` /* 134-byte string literal not displayed */
	MintTokenFeeRatio github_com_cosmos_cosmos_sdk_types.Dec `` /* 184-byte string literal not displayed */
}

token parameters

func DefaultParams

func DefaultParams() Params

default token module params

func NewParams

func NewParams(tokenTaxRate sdk.Dec, issueTokenBaseFee sdk.Coin,
	mintTokenFeeRatio sdk.Dec,
) Params

NewParams token params constructor

func (*Params) Descriptor

func (*Params) Descriptor() ([]byte, []int)

func (*Params) Equal

func (this *Params) Equal(that interface{}) bool

func (*Params) Marshal

func (m *Params) Marshal() (dAtA []byte, err error)

func (*Params) MarshalTo

func (m *Params) MarshalTo(dAtA []byte) (int, error)

func (*Params) MarshalToSizedBuffer

func (m *Params) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Params) ParamSetPairs

func (p *Params) ParamSetPairs() paramtypes.ParamSetPairs

func (*Params) ProtoMessage

func (*Params) ProtoMessage()

func (*Params) Reset

func (m *Params) Reset()

func (*Params) Size

func (m *Params) Size() (n int)

func (Params) String

func (p Params) String() string

String returns a human readable string representation of the parameters.

func (*Params) Unmarshal

func (m *Params) Unmarshal(dAtA []byte) error

func (*Params) XXX_DiscardUnknown

func (m *Params) XXX_DiscardUnknown()

func (*Params) XXX_Marshal

func (m *Params) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Params) XXX_Merge

func (m *Params) XXX_Merge(src proto.Message)

func (*Params) XXX_Size

func (m *Params) XXX_Size() int

func (*Params) XXX_Unmarshal

func (m *Params) XXX_Unmarshal(b []byte) error

type QueryClient

type QueryClient interface {
	// Token returns token with token name
	Token(ctx context.Context, in *QueryTokenRequest, opts ...grpc.CallOption) (*QueryTokenResponse, error)
	// Tokens returns the token list
	Tokens(ctx context.Context, in *QueryTokensRequest, opts ...grpc.CallOption) (*QueryTokensResponse, error)
	// Fees returns the fees to issue or mint a token
	Fees(ctx context.Context, in *QueryFeesRequest, opts ...grpc.CallOption) (*QueryFeesResponse, error)
	// Params queries the token parameters
	Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error)
}

QueryClient is the client API for Query service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewQueryClient

func NewQueryClient(cc grpc1.ClientConn) QueryClient

type QueryFeesRequest

type QueryFeesRequest struct {
	Symbol string `protobuf:"bytes,1,opt,name=symbol,proto3" json:"symbol,omitempty"`
}

QueryFeesRequest is request type for the Query/Fees RPC method

func (*QueryFeesRequest) Descriptor

func (*QueryFeesRequest) Descriptor() ([]byte, []int)

func (*QueryFeesRequest) GetSymbol

func (m *QueryFeesRequest) GetSymbol() string

func (*QueryFeesRequest) Marshal

func (m *QueryFeesRequest) Marshal() (dAtA []byte, err error)

func (*QueryFeesRequest) MarshalTo

func (m *QueryFeesRequest) MarshalTo(dAtA []byte) (int, error)

func (*QueryFeesRequest) MarshalToSizedBuffer

func (m *QueryFeesRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryFeesRequest) ProtoMessage

func (*QueryFeesRequest) ProtoMessage()

func (*QueryFeesRequest) Reset

func (m *QueryFeesRequest) Reset()

func (*QueryFeesRequest) Size

func (m *QueryFeesRequest) Size() (n int)

func (*QueryFeesRequest) String

func (m *QueryFeesRequest) String() string

func (*QueryFeesRequest) Unmarshal

func (m *QueryFeesRequest) Unmarshal(dAtA []byte) error

func (*QueryFeesRequest) XXX_DiscardUnknown

func (m *QueryFeesRequest) XXX_DiscardUnknown()

func (*QueryFeesRequest) XXX_Marshal

func (m *QueryFeesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryFeesRequest) XXX_Merge

func (m *QueryFeesRequest) XXX_Merge(src proto.Message)

func (*QueryFeesRequest) XXX_Size

func (m *QueryFeesRequest) XXX_Size() int

func (*QueryFeesRequest) XXX_Unmarshal

func (m *QueryFeesRequest) XXX_Unmarshal(b []byte) error

type QueryFeesResponse

type QueryFeesResponse struct {
	Exist    bool                                    `protobuf:"varint,1,opt,name=exist,proto3" json:"exist,omitempty"`
	IssueFee github_com_cosmos_cosmos_sdk_types.Coin `` /* 141-byte string literal not displayed */
	MintFee  github_com_cosmos_cosmos_sdk_types.Coin `` /* 137-byte string literal not displayed */
}

QueryFeesResponse is response type for the Query/Fees RPC method

func (*QueryFeesResponse) Descriptor

func (*QueryFeesResponse) Descriptor() ([]byte, []int)

func (*QueryFeesResponse) GetExist

func (m *QueryFeesResponse) GetExist() bool

func (*QueryFeesResponse) GetIssueFee

func (*QueryFeesResponse) GetMintFee

func (*QueryFeesResponse) Marshal

func (m *QueryFeesResponse) Marshal() (dAtA []byte, err error)

func (*QueryFeesResponse) MarshalTo

func (m *QueryFeesResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryFeesResponse) MarshalToSizedBuffer

func (m *QueryFeesResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryFeesResponse) ProtoMessage

func (*QueryFeesResponse) ProtoMessage()

func (*QueryFeesResponse) Reset

func (m *QueryFeesResponse) Reset()

func (*QueryFeesResponse) Size

func (m *QueryFeesResponse) Size() (n int)

func (*QueryFeesResponse) String

func (m *QueryFeesResponse) String() string

func (*QueryFeesResponse) Unmarshal

func (m *QueryFeesResponse) Unmarshal(dAtA []byte) error

func (*QueryFeesResponse) XXX_DiscardUnknown

func (m *QueryFeesResponse) XXX_DiscardUnknown()

func (*QueryFeesResponse) XXX_Marshal

func (m *QueryFeesResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryFeesResponse) XXX_Merge

func (m *QueryFeesResponse) XXX_Merge(src proto.Message)

func (*QueryFeesResponse) XXX_Size

func (m *QueryFeesResponse) XXX_Size() int

func (*QueryFeesResponse) XXX_Unmarshal

func (m *QueryFeesResponse) XXX_Unmarshal(b []byte) error

type QueryParamsRequest

type QueryParamsRequest struct {
}

QueryParametersRequest is request type for the Query/Parameters RPC method

func (*QueryParamsRequest) Descriptor

func (*QueryParamsRequest) Descriptor() ([]byte, []int)

func (*QueryParamsRequest) Marshal

func (m *QueryParamsRequest) Marshal() (dAtA []byte, err error)

func (*QueryParamsRequest) MarshalTo

func (m *QueryParamsRequest) MarshalTo(dAtA []byte) (int, error)

func (*QueryParamsRequest) MarshalToSizedBuffer

func (m *QueryParamsRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryParamsRequest) ProtoMessage

func (*QueryParamsRequest) ProtoMessage()

func (*QueryParamsRequest) Reset

func (m *QueryParamsRequest) Reset()

func (*QueryParamsRequest) Size

func (m *QueryParamsRequest) Size() (n int)

func (*QueryParamsRequest) String

func (m *QueryParamsRequest) String() string

func (*QueryParamsRequest) Unmarshal

func (m *QueryParamsRequest) Unmarshal(dAtA []byte) error

func (*QueryParamsRequest) XXX_DiscardUnknown

func (m *QueryParamsRequest) XXX_DiscardUnknown()

func (*QueryParamsRequest) XXX_Marshal

func (m *QueryParamsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryParamsRequest) XXX_Merge

func (m *QueryParamsRequest) XXX_Merge(src proto.Message)

func (*QueryParamsRequest) XXX_Size

func (m *QueryParamsRequest) XXX_Size() int

func (*QueryParamsRequest) XXX_Unmarshal

func (m *QueryParamsRequest) XXX_Unmarshal(b []byte) error

type QueryParamsResponse

type QueryParamsResponse struct {
	Params Params              `protobuf:"bytes,1,opt,name=params,proto3" json:"params"`
	Res    *query.PageResponse `protobuf:"bytes,2,opt,name=res,proto3" json:"res,omitempty"`
}

QueryParametersResponse is response type for the Query/Parameters RPC method

func (*QueryParamsResponse) Descriptor

func (*QueryParamsResponse) Descriptor() ([]byte, []int)

func (*QueryParamsResponse) GetParams

func (m *QueryParamsResponse) GetParams() Params

func (*QueryParamsResponse) GetRes

func (m *QueryParamsResponse) GetRes() *query.PageResponse

func (*QueryParamsResponse) Marshal

func (m *QueryParamsResponse) Marshal() (dAtA []byte, err error)

func (*QueryParamsResponse) MarshalTo

func (m *QueryParamsResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryParamsResponse) MarshalToSizedBuffer

func (m *QueryParamsResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryParamsResponse) ProtoMessage

func (*QueryParamsResponse) ProtoMessage()

func (*QueryParamsResponse) Reset

func (m *QueryParamsResponse) Reset()

func (*QueryParamsResponse) Size

func (m *QueryParamsResponse) Size() (n int)

func (*QueryParamsResponse) String

func (m *QueryParamsResponse) String() string

func (*QueryParamsResponse) Unmarshal

func (m *QueryParamsResponse) Unmarshal(dAtA []byte) error

func (*QueryParamsResponse) XXX_DiscardUnknown

func (m *QueryParamsResponse) XXX_DiscardUnknown()

func (*QueryParamsResponse) XXX_Marshal

func (m *QueryParamsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryParamsResponse) XXX_Merge

func (m *QueryParamsResponse) XXX_Merge(src proto.Message)

func (*QueryParamsResponse) XXX_Size

func (m *QueryParamsResponse) XXX_Size() int

func (*QueryParamsResponse) XXX_Unmarshal

func (m *QueryParamsResponse) XXX_Unmarshal(b []byte) error

type QueryServer

type QueryServer interface {
	// Token returns token with token name
	Token(context.Context, *QueryTokenRequest) (*QueryTokenResponse, error)
	// Tokens returns the token list
	Tokens(context.Context, *QueryTokensRequest) (*QueryTokensResponse, error)
	// Fees returns the fees to issue or mint a token
	Fees(context.Context, *QueryFeesRequest) (*QueryFeesResponse, error)
	// Params queries the token parameters
	Params(context.Context, *QueryParamsRequest) (*QueryParamsResponse, error)
}

QueryServer is the server API for Query service.

type QueryTokenFeesParams

type QueryTokenFeesParams struct {
	Symbol string
}

QueryTokenFeesParams is the query parameters for 'custom/token/fees'

type QueryTokenParams

type QueryTokenParams struct {
	Denom string
}

QueryTokenParams is the query parameters for 'custom/token/token'

type QueryTokenRequest

type QueryTokenRequest struct {
	Denom string `protobuf:"bytes,1,opt,name=denom,proto3" json:"denom,omitempty"`
}

QueryTokenRequest is request type for the Query/Token RPC method

func (*QueryTokenRequest) Descriptor

func (*QueryTokenRequest) Descriptor() ([]byte, []int)

func (*QueryTokenRequest) GetDenom

func (m *QueryTokenRequest) GetDenom() string

func (*QueryTokenRequest) Marshal

func (m *QueryTokenRequest) Marshal() (dAtA []byte, err error)

func (*QueryTokenRequest) MarshalTo

func (m *QueryTokenRequest) MarshalTo(dAtA []byte) (int, error)

func (*QueryTokenRequest) MarshalToSizedBuffer

func (m *QueryTokenRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryTokenRequest) ProtoMessage

func (*QueryTokenRequest) ProtoMessage()

func (*QueryTokenRequest) Reset

func (m *QueryTokenRequest) Reset()

func (*QueryTokenRequest) Size

func (m *QueryTokenRequest) Size() (n int)

func (*QueryTokenRequest) String

func (m *QueryTokenRequest) String() string

func (*QueryTokenRequest) Unmarshal

func (m *QueryTokenRequest) Unmarshal(dAtA []byte) error

func (*QueryTokenRequest) XXX_DiscardUnknown

func (m *QueryTokenRequest) XXX_DiscardUnknown()

func (*QueryTokenRequest) XXX_Marshal

func (m *QueryTokenRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryTokenRequest) XXX_Merge

func (m *QueryTokenRequest) XXX_Merge(src proto.Message)

func (*QueryTokenRequest) XXX_Size

func (m *QueryTokenRequest) XXX_Size() int

func (*QueryTokenRequest) XXX_Unmarshal

func (m *QueryTokenRequest) XXX_Unmarshal(b []byte) error

type QueryTokenResponse

type QueryTokenResponse struct {
	Token *types.Any `protobuf:"bytes,1,opt,name=Token,proto3" json:"Token,omitempty"`
}

QueryTokenResponse is response type for the Query/Token RPC method

func (*QueryTokenResponse) Descriptor

func (*QueryTokenResponse) Descriptor() ([]byte, []int)

func (*QueryTokenResponse) GetToken

func (m *QueryTokenResponse) GetToken() *types.Any

func (*QueryTokenResponse) Marshal

func (m *QueryTokenResponse) Marshal() (dAtA []byte, err error)

func (*QueryTokenResponse) MarshalTo

func (m *QueryTokenResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryTokenResponse) MarshalToSizedBuffer

func (m *QueryTokenResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryTokenResponse) ProtoMessage

func (*QueryTokenResponse) ProtoMessage()

func (*QueryTokenResponse) Reset

func (m *QueryTokenResponse) Reset()

func (*QueryTokenResponse) Size

func (m *QueryTokenResponse) Size() (n int)

func (*QueryTokenResponse) String

func (m *QueryTokenResponse) String() string

func (*QueryTokenResponse) Unmarshal

func (m *QueryTokenResponse) Unmarshal(dAtA []byte) error

func (*QueryTokenResponse) XXX_DiscardUnknown

func (m *QueryTokenResponse) XXX_DiscardUnknown()

func (*QueryTokenResponse) XXX_Marshal

func (m *QueryTokenResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryTokenResponse) XXX_Merge

func (m *QueryTokenResponse) XXX_Merge(src proto.Message)

func (*QueryTokenResponse) XXX_Size

func (m *QueryTokenResponse) XXX_Size() int

func (*QueryTokenResponse) XXX_Unmarshal

func (m *QueryTokenResponse) XXX_Unmarshal(b []byte) error

type QueryTokensParams

type QueryTokensParams struct {
	Owner sdk.AccAddress
}

QueryTokensParams is the query parameters for 'custom/token/tokens'

type QueryTokensRequest

type QueryTokensRequest struct {
	Owner github_com_cosmos_cosmos_sdk_types.AccAddress `protobuf:"bytes,1,opt,name=owner,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"owner,omitempty"`
}

QueryTokensRequest is request type for the Query/Tokens RPC method

func (*QueryTokensRequest) Descriptor

func (*QueryTokensRequest) Descriptor() ([]byte, []int)

func (*QueryTokensRequest) GetOwner

func (*QueryTokensRequest) Marshal

func (m *QueryTokensRequest) Marshal() (dAtA []byte, err error)

func (*QueryTokensRequest) MarshalTo

func (m *QueryTokensRequest) MarshalTo(dAtA []byte) (int, error)

func (*QueryTokensRequest) MarshalToSizedBuffer

func (m *QueryTokensRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryTokensRequest) ProtoMessage

func (*QueryTokensRequest) ProtoMessage()

func (*QueryTokensRequest) Reset

func (m *QueryTokensRequest) Reset()

func (*QueryTokensRequest) Size

func (m *QueryTokensRequest) Size() (n int)

func (*QueryTokensRequest) String

func (m *QueryTokensRequest) String() string

func (*QueryTokensRequest) Unmarshal

func (m *QueryTokensRequest) Unmarshal(dAtA []byte) error

func (*QueryTokensRequest) XXX_DiscardUnknown

func (m *QueryTokensRequest) XXX_DiscardUnknown()

func (*QueryTokensRequest) XXX_Marshal

func (m *QueryTokensRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryTokensRequest) XXX_Merge

func (m *QueryTokensRequest) XXX_Merge(src proto.Message)

func (*QueryTokensRequest) XXX_Size

func (m *QueryTokensRequest) XXX_Size() int

func (*QueryTokensRequest) XXX_Unmarshal

func (m *QueryTokensRequest) XXX_Unmarshal(b []byte) error

type QueryTokensResponse

type QueryTokensResponse struct {
	Tokens []*types.Any `protobuf:"bytes,1,rep,name=Tokens,proto3" json:"Tokens,omitempty"`
}

QueryTokensResponse is response type for the Query/Tokens RPC method

func (*QueryTokensResponse) Descriptor

func (*QueryTokensResponse) Descriptor() ([]byte, []int)

func (*QueryTokensResponse) GetTokens

func (m *QueryTokensResponse) GetTokens() []*types.Any

func (*QueryTokensResponse) Marshal

func (m *QueryTokensResponse) Marshal() (dAtA []byte, err error)

func (*QueryTokensResponse) MarshalTo

func (m *QueryTokensResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryTokensResponse) MarshalToSizedBuffer

func (m *QueryTokensResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryTokensResponse) ProtoMessage

func (*QueryTokensResponse) ProtoMessage()

func (*QueryTokensResponse) Reset

func (m *QueryTokensResponse) Reset()

func (*QueryTokensResponse) Size

func (m *QueryTokensResponse) Size() (n int)

func (*QueryTokensResponse) String

func (m *QueryTokensResponse) String() string

func (*QueryTokensResponse) Unmarshal

func (m *QueryTokensResponse) Unmarshal(dAtA []byte) error

func (*QueryTokensResponse) XXX_DiscardUnknown

func (m *QueryTokensResponse) XXX_DiscardUnknown()

func (*QueryTokensResponse) XXX_Marshal

func (m *QueryTokensResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryTokensResponse) XXX_Merge

func (m *QueryTokensResponse) XXX_Merge(src proto.Message)

func (*QueryTokensResponse) XXX_Size

func (m *QueryTokensResponse) XXX_Size() int

func (*QueryTokensResponse) XXX_Unmarshal

func (m *QueryTokensResponse) XXX_Unmarshal(b []byte) error

type Token

type Token struct {
	Symbol        string                                        `protobuf:"bytes,1,opt,name=symbol,proto3" json:"symbol,omitempty"`
	Name          string                                        `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Scale         uint32                                        `protobuf:"varint,3,opt,name=scale,proto3" json:"scale,omitempty"`
	MinUnit       string                                        `protobuf:"bytes,4,opt,name=min_unit,json=minUnit,proto3" json:"min_unit,omitempty" yaml:"min_unit"`
	InitialSupply uint64                                        `protobuf:"varint,5,opt,name=initial_supply,json=initialSupply,proto3" json:"initial_supply,omitempty" yaml:"initial_supply"`
	MaxSupply     uint64                                        `protobuf:"varint,6,opt,name=max_supply,json=maxSupply,proto3" json:"max_supply,omitempty" yaml:"max_supply"`
	Mintable      bool                                          `protobuf:"varint,7,opt,name=mintable,proto3" json:"mintable,omitempty"`
	Owner         github_com_cosmos_cosmos_sdk_types.AccAddress `protobuf:"bytes,8,opt,name=owner,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"owner,omitempty"`
}

Token defines a standard for the fungible token

func GetNativeToken

func GetNativeToken() Token

func NewToken

func NewToken(
	symbol string,
	name string,
	minUnit string,
	scale uint32,
	initialSupply,
	maxSupply uint64,
	mintable bool,
	owner sdk.AccAddress,
) Token

NewToken constructs a new Token instance

func (*Token) Descriptor

func (*Token) Descriptor() ([]byte, []int)

func (Token) GetInitialSupply

func (t Token) GetInitialSupply() uint64

GetInitialSupply implements exported.TokenI

func (Token) GetMaxSupply

func (t Token) GetMaxSupply() uint64

GetMaxSupply implements exported.TokenI

func (Token) GetMinUnit

func (t Token) GetMinUnit() string

GetMinUnit implements exported.TokenI

func (Token) GetMintable

func (t Token) GetMintable() bool

GetMintable implements exported.TokenI

func (Token) GetName

func (t Token) GetName() string

GetName implements exported.TokenI

func (Token) GetOwner

func (t Token) GetOwner() sdk.AccAddress

GetOwner implements exported.TokenI

func (Token) GetScale

func (t Token) GetScale() uint32

GetScale implements exported.TokenI

func (Token) GetSymbol

func (t Token) GetSymbol() string

GetSymbol implements exported.TokenI

func (*Token) Marshal

func (m *Token) Marshal() (dAtA []byte, err error)

func (*Token) MarshalTo

func (m *Token) MarshalTo(dAtA []byte) (int, error)

func (*Token) MarshalToSizedBuffer

func (m *Token) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Token) ProtoMessage

func (*Token) ProtoMessage()

func (*Token) Reset

func (m *Token) Reset()

func (*Token) Size

func (m *Token) Size() (n int)

func (Token) String

func (t Token) String() string

func (Token) ToMainCoin

func (t Token) ToMainCoin(coin sdk.Coin) (sdk.DecCoin, error)

ToMainCoin return the main denom coin from args

func (Token) ToMinCoin

func (t Token) ToMinCoin(coin sdk.DecCoin) (newCoin sdk.Coin, err error)

ToMinCoin return the min denom coin from args

func (*Token) Unmarshal

func (m *Token) Unmarshal(dAtA []byte) error

func (*Token) XXX_DiscardUnknown

func (m *Token) XXX_DiscardUnknown()

func (*Token) XXX_Marshal

func (m *Token) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Token) XXX_Merge

func (m *Token) XXX_Merge(src proto.Message)

func (*Token) XXX_Size

func (m *Token) XXX_Size() int

func (*Token) XXX_Unmarshal

func (m *Token) XXX_Unmarshal(b []byte) error

type TokenI

type TokenI interface {
	GetSymbol() string
	GetName() string
	GetScale() uint32
	GetMinUnit() string
	GetInitialSupply() uint64
	GetMaxSupply() uint64
	GetMintable() bool
	GetOwner() sdk.AccAddress

	ToMainCoin(coin sdk.Coin) (sdk.DecCoin, error)
	ToMinCoin(coin sdk.DecCoin) (sdk.Coin, error)
}

type UnimplementedQueryServer

type UnimplementedQueryServer struct {
}

UnimplementedQueryServer can be embedded to have forward compatible implementations.

func (*UnimplementedQueryServer) Fees

func (*UnimplementedQueryServer) Params

func (*UnimplementedQueryServer) Token

func (*UnimplementedQueryServer) Tokens

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL