types

package
v0.0.0-...-df6cd37 Latest Latest
Warning

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

Go to latest
Published: Jul 21, 2021 License: MIT Imports: 37 Imported by: 0

Documentation

Overview

nolint

nolint

Package types is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Index

Constants

View Source
const (
	EventTypeIssueToken         = "issue_token"
	EventTypeEditToken          = "edit_token"
	EventTypeMintToken          = "mint_token"
	EventTypeBurnToken          = "burn_token"
	EventTypeTransferTokenOwner = "transfer_token_owner"

	AttributeValueCategory = ModuleName

	AttributeKeyCreator   = "creator"
	AttributeKeySymbol    = "symbol"
	AttributeKeyAmount    = "amount"
	AttributeKeyOwner     = "owner"
	AttributeKeyDstOwner  = "dst_owner"
	AttributeKeyRecipient = "recipient"
)
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 token module
	QuerierRoute string = ModuleName

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

	// DefaultParamspace is the 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"
	TypeMsgBurnToken          = "burn_token"
	TypeMsgTransferTokenOwner = "transfer_token_owner"

	// DoNotModify used to indicate that some field should not be updated
	DoNotModify = "[do-not-modify]"
)
View Source
const (
	QueryToken     = "token"
	QueryTokens    = "tokens"
	QueryFees      = "fees"
	QueryParams    = "params"
	QueryTotalBurn = "total_burn"
)
View Source
const (
	// MaximumMaxSupply is the maximum limitation for the token max supply
	MaximumMaxSupply = math.MaxUint64
	// MaximumInitSupply is maximum limitation for the token initial supply,100 billion
	MaximumInitSupply = uint64(100000000000)
	// MaximumScale is the maximum limitation for token decimals
	MaximumScale = uint32(9)
	// MinimumSymbolLen is the minimum limitation for the length of the token's symbol
	MinimumSymbolLen = 3
	// MaximumSymbolLen is the maximum limitation for the length of the token's symbol
	MaximumSymbolLen = 64
	// MaximumNameLen is the maximum limitation for the length of the token's name
	MaximumNameLen = 32
	// MinimumMinUnitLen is the minimum limitation for the length of the token's min unit
	MinimumMinUnitLen = 3
	// MaximumMinUnitLen is the maximum limitation for the length of the token's min unit
	MaximumMinUnitLen = 64
)
View Source
const (
	ReservedPeg  = "peg"
	ReservedIBC  = "ibc"
	ReservedSwap = "swap"
	ReservedHTLT = "htlt"
)

Variables

View Source
var (
	ErrInvalidName          = sdkerrors.Register(ModuleName, 2, "invalid token name")
	ErrInvalidMinUnit       = sdkerrors.Register(ModuleName, 3, "invalid token min unit")
	ErrInvalidSymbol        = sdkerrors.Register(ModuleName, 4, "invalid standard denom")
	ErrInvalidInitSupply    = sdkerrors.Register(ModuleName, 5, "invalid token initial supply")
	ErrInvalidMaxSupply     = sdkerrors.Register(ModuleName, 6, "invalid token maximum supply")
	ErrInvalidScale         = sdkerrors.Register(ModuleName, 7, "invalid token scale")
	ErrSymbolAlreadyExists  = sdkerrors.Register(ModuleName, 8, "symbol already exists")
	ErrMinUnitAlreadyExists = sdkerrors.Register(ModuleName, 9, "min unit already exists")
	ErrTokenNotExists       = sdkerrors.Register(ModuleName, 10, "token does not exist")
	ErrInvalidToAddress     = sdkerrors.Register(ModuleName, 11, "the new owner must not be same as the original owner")
	ErrInvalidOwner         = sdkerrors.Register(ModuleName, 12, "invalid token owner")
	ErrNotMintable          = sdkerrors.Register(ModuleName, 13, "token is not mintable")
	ErrNotFoundTokenAmt     = sdkerrors.Register(ModuleName, 14, "burned token amount not found")
	ErrInvalidAmount        = sdkerrors.Register(ModuleName, 15, "invalid amount")
	ErrInvalidBaseFee       = sdkerrors.Register(ModuleName, 16, "invalid base fee")
)

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 defines a symbol prefix for the token
	PrefixTokenForSymbol = []byte{0x01}
	// PrefixTokenForMinUint defines the min unit prefix for the token
	PrefixTokenForMinUint = []byte{0x02}
	// PrefixTokens defines a prefix for the tokens
	PrefixTokens = []byte{0x03}
	// PeffixBurnTokenAmt defines a prefix for the amount of token burnt
	PeffixBurnTokenAmt = []byte{0x04}
)
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 (
	ErrInvalidLengthTx        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowTx          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupTx = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ModuleCdc = codec.NewAminoCodec(amino)
)

Functions

func KeyBurnTokenAmt

func KeyBurnTokenAmt(minUint string) []byte

KeyBurnTokenAmt returns the key of the specified min unit.

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

ParamKeyTable returns the TypeTable for the token module

func RegisterInterfaces

func RegisterInterfaces(registry types.InterfaceRegistry)

func RegisterLegacyAminoCodec

func RegisterLegacyAminoCodec(cdc *codec.LegacyAmino)

func RegisterMsgServer

func RegisterMsgServer(s grpc1.Server, srv MsgServer)

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 resets the system's default native token

func ValidateAmount

func ValidateAmount(amount uint64) error

ValidateAmount checks if the given denom begins with `TokenKeywords`

func ValidateGenesis

func ValidateGenesis(data GenesisState) error

ValidateGenesis validates the provided token genesis state to ensure the expected invariants holds.

func ValidateInitialSupply

func ValidateInitialSupply(initialSupply uint64) error

ValidateInitialSupply verifies whether the initial supply is legal

func ValidateKeywords

func ValidateKeywords(denom string) error

ValidateKeywords checks if the given denom begins with `TokenKeywords`

func ValidateMinUnit

func ValidateMinUnit(minUnit string) error

ValidateMinUnit checks if the given min unit is valid

func ValidateName

func ValidateName(name string) error

ValidateName verifies whether the given name is legal

func ValidateParams

func ValidateParams(p Params) error

ValidateParams validates the given params

func ValidateScale

func ValidateScale(scale uint32) error

ValidateScale verifies whether the given scale is legal

func ValidateSymbol

func ValidateSymbol(symbol string) error

ValidateSymbol checks if the given symbol is valid

func ValidateToken

func ValidateToken(token Token) error

ValidateToken checks if the given token is valid

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

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

	SetDenomMetaData(ctx sdk.Context, denomMetaData banktypes.Metadata)
	GetDenomMetaData(ctx sdk.Context, denom string) banktypes.Metadata
}

BankKeeper defines the expected bank keeper (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"`
	BurnedCoins []types.Coin `protobuf:"bytes,3,rep,name=burned_coins,json=burnedCoins,proto3" json:"burned_coins"`
}

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) GetBurnedCoins

func (m *GenesisState) GetBurnedCoins() []types.Coin

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 MsgBurnToken

type MsgBurnToken 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"`
	Sender string `protobuf:"bytes,3,opt,name=sender,proto3" json:"sender,omitempty"`
}

MsgBurnToken defines an SDK message for burning some tokens

func NewMsgBurnToken

func NewMsgBurnToken(symbol string, owner string, amount uint64) *MsgBurnToken

NewMsgBurnToken creates a MsgMintToken

func (*MsgBurnToken) Descriptor

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

func (MsgBurnToken) GetSignBytes

func (msg MsgBurnToken) GetSignBytes() []byte

GetSignBytes implements Msg

func (MsgBurnToken) GetSigners

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

GetSigners implements Msg

func (*MsgBurnToken) Marshal

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

func (*MsgBurnToken) MarshalTo

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

func (*MsgBurnToken) MarshalToSizedBuffer

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

func (*MsgBurnToken) ProtoMessage

func (*MsgBurnToken) ProtoMessage()

func (*MsgBurnToken) Reset

func (m *MsgBurnToken) Reset()

func (MsgBurnToken) Route

func (msg MsgBurnToken) Route() string

Route implements Msg

func (*MsgBurnToken) Size

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

func (*MsgBurnToken) String

func (m *MsgBurnToken) String() string

func (MsgBurnToken) Type

func (msg MsgBurnToken) Type() string

Type implements Msg

func (*MsgBurnToken) Unmarshal

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

func (MsgBurnToken) ValidateBasic

func (msg MsgBurnToken) ValidateBasic() error

ValidateBasic implements Msg

func (*MsgBurnToken) XXX_DiscardUnknown

func (m *MsgBurnToken) XXX_DiscardUnknown()

func (*MsgBurnToken) XXX_Marshal

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

func (*MsgBurnToken) XXX_Merge

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

func (*MsgBurnToken) XXX_Size

func (m *MsgBurnToken) XXX_Size() int

func (*MsgBurnToken) XXX_Unmarshal

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

type MsgBurnTokenResponse

type MsgBurnTokenResponse struct {
}

MsgBurnTokenResponse defines the Msg/BurnToken response type

func (*MsgBurnTokenResponse) Descriptor

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

func (*MsgBurnTokenResponse) Marshal

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

func (*MsgBurnTokenResponse) MarshalTo

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

func (*MsgBurnTokenResponse) MarshalToSizedBuffer

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

func (*MsgBurnTokenResponse) ProtoMessage

func (*MsgBurnTokenResponse) ProtoMessage()

func (*MsgBurnTokenResponse) Reset

func (m *MsgBurnTokenResponse) Reset()

func (*MsgBurnTokenResponse) Size

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

func (*MsgBurnTokenResponse) String

func (m *MsgBurnTokenResponse) String() string

func (*MsgBurnTokenResponse) Unmarshal

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

func (*MsgBurnTokenResponse) XXX_DiscardUnknown

func (m *MsgBurnTokenResponse) XXX_DiscardUnknown()

func (*MsgBurnTokenResponse) XXX_Marshal

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

func (*MsgBurnTokenResponse) XXX_Merge

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

func (*MsgBurnTokenResponse) XXX_Size

func (m *MsgBurnTokenResponse) XXX_Size() int

func (*MsgBurnTokenResponse) XXX_Unmarshal

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

type MsgClient

type MsgClient interface {
	// IssueToken defines a method for issuing a new token
	IssueToken(ctx context.Context, in *MsgIssueToken, opts ...grpc.CallOption) (*MsgIssueTokenResponse, error)
	// EditToken defines a method for editing a token
	EditToken(ctx context.Context, in *MsgEditToken, opts ...grpc.CallOption) (*MsgEditTokenResponse, error)
	// MintToken defines a method for minting some tokens
	MintToken(ctx context.Context, in *MsgMintToken, opts ...grpc.CallOption) (*MsgMintTokenResponse, error)
	// BurnToken defines a method for burning some tokens
	BurnToken(ctx context.Context, in *MsgBurnToken, opts ...grpc.CallOption) (*MsgBurnTokenResponse, error)
	// TransferTokenOwner defines a method for minting some tokens
	TransferTokenOwner(ctx context.Context, in *MsgTransferTokenOwner, opts ...grpc.CallOption) (*MsgTransferTokenOwnerResponse, error)
}

MsgClient is the client API for Msg service.

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

func NewMsgClient

func NewMsgClient(cc grpc1.ClientConn) MsgClient

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     string `protobuf:"bytes,5,opt,name=owner,proto3" 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 string) *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 MsgEditTokenResponse

type MsgEditTokenResponse struct {
}

MsgEditTokenResponse defines the Msg/EditToken response type

func (*MsgEditTokenResponse) Descriptor

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

func (*MsgEditTokenResponse) Marshal

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

func (*MsgEditTokenResponse) MarshalTo

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

func (*MsgEditTokenResponse) MarshalToSizedBuffer

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

func (*MsgEditTokenResponse) ProtoMessage

func (*MsgEditTokenResponse) ProtoMessage()

func (*MsgEditTokenResponse) Reset

func (m *MsgEditTokenResponse) Reset()

func (*MsgEditTokenResponse) Size

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

func (*MsgEditTokenResponse) String

func (m *MsgEditTokenResponse) String() string

func (*MsgEditTokenResponse) Unmarshal

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

func (*MsgEditTokenResponse) XXX_DiscardUnknown

func (m *MsgEditTokenResponse) XXX_DiscardUnknown()

func (*MsgEditTokenResponse) XXX_Marshal

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

func (*MsgEditTokenResponse) XXX_Merge

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

func (*MsgEditTokenResponse) XXX_Size

func (m *MsgEditTokenResponse) XXX_Size() int

func (*MsgEditTokenResponse) XXX_Unmarshal

func (m *MsgEditTokenResponse) 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         string `protobuf:"bytes,8,opt,name=owner,proto3" 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 string,
) *MsgIssueToken

NewMsgIssueToken - construct token issue msg.

func (*MsgIssueToken) Descriptor

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

func (MsgIssueToken) GetSignBytes

func (msg MsgIssueToken) GetSignBytes() []byte

GetSignBytes Implements Msg.

func (MsgIssueToken) GetSigners

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

GetSigners 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

Route 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

Type Implements Msg.

func (*MsgIssueToken) Unmarshal

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

func (MsgIssueToken) ValidateBasic

func (msg MsgIssueToken) ValidateBasic() error

ValidateBasic 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 MsgIssueTokenResponse

type MsgIssueTokenResponse struct {
}

MsgIssueTokenResponse defines the Msg/IssueToken response type

func (*MsgIssueTokenResponse) Descriptor

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

func (*MsgIssueTokenResponse) Marshal

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

func (*MsgIssueTokenResponse) MarshalTo

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

func (*MsgIssueTokenResponse) MarshalToSizedBuffer

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

func (*MsgIssueTokenResponse) ProtoMessage

func (*MsgIssueTokenResponse) ProtoMessage()

func (*MsgIssueTokenResponse) Reset

func (m *MsgIssueTokenResponse) Reset()

func (*MsgIssueTokenResponse) Size

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

func (*MsgIssueTokenResponse) String

func (m *MsgIssueTokenResponse) String() string

func (*MsgIssueTokenResponse) Unmarshal

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

func (*MsgIssueTokenResponse) XXX_DiscardUnknown

func (m *MsgIssueTokenResponse) XXX_DiscardUnknown()

func (*MsgIssueTokenResponse) XXX_Marshal

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

func (*MsgIssueTokenResponse) XXX_Merge

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

func (*MsgIssueTokenResponse) XXX_Size

func (m *MsgIssueTokenResponse) XXX_Size() int

func (*MsgIssueTokenResponse) XXX_Unmarshal

func (m *MsgIssueTokenResponse) 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     string `protobuf:"bytes,3,opt,name=to,proto3" json:"to,omitempty"`
	Owner  string `protobuf:"bytes,4,opt,name=owner,proto3" json:"owner,omitempty"`
}

MsgMintToken defines an SDK message for minting a new token

func NewMsgMintToken

func NewMsgMintToken(symbol, owner, to string, 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 MsgMintTokenResponse

type MsgMintTokenResponse struct {
}

MsgMintTokenResponse defines the Msg/MintToken response type

func (*MsgMintTokenResponse) Descriptor

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

func (*MsgMintTokenResponse) Marshal

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

func (*MsgMintTokenResponse) MarshalTo

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

func (*MsgMintTokenResponse) MarshalToSizedBuffer

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

func (*MsgMintTokenResponse) ProtoMessage

func (*MsgMintTokenResponse) ProtoMessage()

func (*MsgMintTokenResponse) Reset

func (m *MsgMintTokenResponse) Reset()

func (*MsgMintTokenResponse) Size

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

func (*MsgMintTokenResponse) String

func (m *MsgMintTokenResponse) String() string

func (*MsgMintTokenResponse) Unmarshal

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

func (*MsgMintTokenResponse) XXX_DiscardUnknown

func (m *MsgMintTokenResponse) XXX_DiscardUnknown()

func (*MsgMintTokenResponse) XXX_Marshal

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

func (*MsgMintTokenResponse) XXX_Merge

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

func (*MsgMintTokenResponse) XXX_Size

func (m *MsgMintTokenResponse) XXX_Size() int

func (*MsgMintTokenResponse) XXX_Unmarshal

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

type MsgServer

type MsgServer interface {
	// IssueToken defines a method for issuing a new token
	IssueToken(context.Context, *MsgIssueToken) (*MsgIssueTokenResponse, error)
	// EditToken defines a method for editing a token
	EditToken(context.Context, *MsgEditToken) (*MsgEditTokenResponse, error)
	// MintToken defines a method for minting some tokens
	MintToken(context.Context, *MsgMintToken) (*MsgMintTokenResponse, error)
	// BurnToken defines a method for burning some tokens
	BurnToken(context.Context, *MsgBurnToken) (*MsgBurnTokenResponse, error)
	// TransferTokenOwner defines a method for minting some tokens
	TransferTokenOwner(context.Context, *MsgTransferTokenOwner) (*MsgTransferTokenOwnerResponse, error)
}

MsgServer is the server API for Msg service.

type MsgTransferTokenOwner

type MsgTransferTokenOwner struct {
	SrcOwner string `protobuf:"bytes,1,opt,name=src_owner,json=srcOwner,proto3" json:"src_owner,omitempty" yaml:"src_owner"`
	DstOwner string `protobuf:"bytes,2,opt,name=dst_owner,json=dstOwner,proto3" json:"dst_owner,omitempty" yaml:"dst_owner"`
	Symbol   string `protobuf:"bytes,3,opt,name=symbol,proto3" json:"symbol,omitempty"`
}

MsgTransferTokenOwner defines an SDK message for transferring the token owner

func NewMsgTransferTokenOwner

func NewMsgTransferTokenOwner(srcOwner, dstOwner, symbol string) *MsgTransferTokenOwner

NewMsgTransferTokenOwner return a instance of 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

ValidateBasic implements Msg

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 MsgTransferTokenOwnerResponse

type MsgTransferTokenOwnerResponse struct {
}

MsgTransferTokenOwnerResponse defines the Msg/TransferTokenOwner response type

func (*MsgTransferTokenOwnerResponse) Descriptor

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

func (*MsgTransferTokenOwnerResponse) Marshal

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

func (*MsgTransferTokenOwnerResponse) MarshalTo

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

func (*MsgTransferTokenOwnerResponse) MarshalToSizedBuffer

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

func (*MsgTransferTokenOwnerResponse) ProtoMessage

func (*MsgTransferTokenOwnerResponse) ProtoMessage()

func (*MsgTransferTokenOwnerResponse) Reset

func (m *MsgTransferTokenOwnerResponse) Reset()

func (*MsgTransferTokenOwnerResponse) Size

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

func (*MsgTransferTokenOwnerResponse) String

func (*MsgTransferTokenOwnerResponse) Unmarshal

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

func (*MsgTransferTokenOwnerResponse) XXX_DiscardUnknown

func (m *MsgTransferTokenOwnerResponse) XXX_DiscardUnknown()

func (*MsgTransferTokenOwnerResponse) XXX_Marshal

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

func (*MsgTransferTokenOwnerResponse) XXX_Merge

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

func (*MsgTransferTokenOwnerResponse) XXX_Size

func (m *MsgTransferTokenOwnerResponse) XXX_Size() int

func (*MsgTransferTokenOwnerResponse) XXX_Unmarshal

func (m *MsgTransferTokenOwnerResponse) 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 */
}

Params defines token module's parameters

func DefaultParams

func DefaultParams() Params

DefaultParams return the default params

func NewParams

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

NewParams constructs a new Params instance

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)
	// TotalBurn queries all the burnt coins
	TotalBurn(ctx context.Context, in *QueryTotalBurnRequest, opts ...grpc.CallOption) (*QueryTotalBurnResponse, 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)
	// TotalBurn queries all the burnt coins
	TotalBurn(context.Context, *QueryTotalBurnRequest) (*QueryTotalBurnResponse, 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 string `protobuf:"bytes,1,opt,name=owner,proto3" json:"owner,omitempty"`
	// pagination defines an optional pagination for the request.
	Pagination *query.PageRequest `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

QueryTokensRequest is request type for the Query/Tokens RPC method

func (*QueryTokensRequest) Descriptor

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

func (*QueryTokensRequest) GetOwner

func (m *QueryTokensRequest) GetOwner() string

func (*QueryTokensRequest) GetPagination

func (m *QueryTokensRequest) GetPagination() *query.PageRequest

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"`
	Pagination *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

QueryTokensResponse is response type for the Query/Tokens RPC method

func (*QueryTokensResponse) Descriptor

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

func (*QueryTokensResponse) GetPagination

func (m *QueryTokensResponse) GetPagination() *query.PageResponse

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 QueryTotalBurnRequest

type QueryTotalBurnRequest struct {
}

QueryTokenRequest is request type for the Query/TotalBurn RPC method

func (*QueryTotalBurnRequest) Descriptor

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

func (*QueryTotalBurnRequest) Marshal

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

func (*QueryTotalBurnRequest) MarshalTo

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

func (*QueryTotalBurnRequest) MarshalToSizedBuffer

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

func (*QueryTotalBurnRequest) ProtoMessage

func (*QueryTotalBurnRequest) ProtoMessage()

func (*QueryTotalBurnRequest) Reset

func (m *QueryTotalBurnRequest) Reset()

func (*QueryTotalBurnRequest) Size

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

func (*QueryTotalBurnRequest) String

func (m *QueryTotalBurnRequest) String() string

func (*QueryTotalBurnRequest) Unmarshal

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

func (*QueryTotalBurnRequest) XXX_DiscardUnknown

func (m *QueryTotalBurnRequest) XXX_DiscardUnknown()

func (*QueryTotalBurnRequest) XXX_Marshal

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

func (*QueryTotalBurnRequest) XXX_Merge

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

func (*QueryTotalBurnRequest) XXX_Size

func (m *QueryTotalBurnRequest) XXX_Size() int

func (*QueryTotalBurnRequest) XXX_Unmarshal

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

type QueryTotalBurnResponse

type QueryTotalBurnResponse struct {
	BurnedCoins []types1.Coin `protobuf:"bytes,1,rep,name=burned_coins,json=burnedCoins,proto3" json:"burned_coins"`
}

QueryTotalBurnResponse is response type for the Query/TotalBurn RPC method

func (*QueryTotalBurnResponse) Descriptor

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

func (*QueryTotalBurnResponse) GetBurnedCoins

func (m *QueryTotalBurnResponse) GetBurnedCoins() []types1.Coin

func (*QueryTotalBurnResponse) Marshal

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

func (*QueryTotalBurnResponse) MarshalTo

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

func (*QueryTotalBurnResponse) MarshalToSizedBuffer

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

func (*QueryTotalBurnResponse) ProtoMessage

func (*QueryTotalBurnResponse) ProtoMessage()

func (*QueryTotalBurnResponse) Reset

func (m *QueryTotalBurnResponse) Reset()

func (*QueryTotalBurnResponse) Size

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

func (*QueryTotalBurnResponse) String

func (m *QueryTotalBurnResponse) String() string

func (*QueryTotalBurnResponse) Unmarshal

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

func (*QueryTotalBurnResponse) XXX_DiscardUnknown

func (m *QueryTotalBurnResponse) XXX_DiscardUnknown()

func (*QueryTotalBurnResponse) XXX_Marshal

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

func (*QueryTotalBurnResponse) XXX_Merge

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

func (*QueryTotalBurnResponse) XXX_Size

func (m *QueryTotalBurnResponse) XXX_Size() int

func (*QueryTotalBurnResponse) XXX_Unmarshal

func (m *QueryTotalBurnResponse) 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         string `protobuf:"bytes,8,opt,name=owner,proto3" json:"owner,omitempty"`
}

Token defines a standard for the fungible token

func GetNativeToken

func GetNativeToken() Token

GetNativeToken returns the system's default native 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 returns the main denom coin from args

func (Token) ToMinCoin

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

ToMinCoin returns 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)
}

TokenI defines an interface for Token

type UnimplementedMsgServer

type UnimplementedMsgServer struct {
}

UnimplementedMsgServer can be embedded to have forward compatible implementations.

func (*UnimplementedMsgServer) BurnToken

func (*UnimplementedMsgServer) EditToken

func (*UnimplementedMsgServer) IssueToken

func (*UnimplementedMsgServer) MintToken

func (*UnimplementedMsgServer) TransferTokenOwner

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

func (*UnimplementedQueryServer) TotalBurn

Jump to

Keyboard shortcuts

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