rpcpb

package
v0.0.0-...-376a440 Latest Latest
Warning

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

Go to latest
Published: May 10, 2020 License: LGPL-3.0 Imports: 13 Imported by: 0

Documentation

Overview

Package rpcpb is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Index

Constants

This section is empty.

Variables

View Source
var BlockResponse_Status_name = map[int32]string{
	0: "PENDING",
	1: "IRREVERSIBLE",
}
View Source
var BlockResponse_Status_value = map[string]int32{
	"PENDING":      0,
	"IRREVERSIBLE": 1,
}
View Source
var Event_Topic_name = map[int32]string{
	0: "CONTRACT_RECEIPT",
	1: "CONTRACT_EVENT",
}
View Source
var Event_Topic_value = map[string]int32{
	"CONTRACT_RECEIPT": 0,
	"CONTRACT_EVENT":   1,
}
View Source
var ListContractStorageRequest_StorageType_name = map[int32]string{
	0: "KV",
	1: "MAP",
}
View Source
var ListContractStorageRequest_StorageType_value = map[string]int32{
	"KV":  0,
	"MAP": 1,
}
View Source
var Signature_Algorithm_name = map[int32]string{
	0: "UNKNOWN",
	1: "SECP256K1",
	2: "ED25519",
}
View Source
var Signature_Algorithm_value = map[string]int32{
	"UNKNOWN":   0,
	"SECP256K1": 1,
	"ED25519":   2,
}
View Source
var TransactionResponse_Status_name = map[int32]string{
	0: "PENDING",
	1: "PACKED",
	2: "IRREVERSIBLE",
}
View Source
var TransactionResponse_Status_value = map[string]int32{
	"PENDING":      0,
	"PACKED":       1,
	"IRREVERSIBLE": 2,
}
View Source
var TxReceipt_StatusCode_name = map[int32]string{
	0: "SUCCESS",
	1: "GAS_RUN_OUT",
	2: "BALANCE_NOT_ENOUGH",
	3: "WRONG_PARAMETER",
	4: "RUNTIME_ERROR",
	5: "TIMEOUT",
	6: "WRONG_TX_FORMAT",
	7: "DUPLICATE_SET_CODE",
	8: "UNKNOWN_ERROR",
}
View Source
var TxReceipt_StatusCode_value = map[string]int32{
	"SUCCESS":            0,
	"GAS_RUN_OUT":        1,
	"BALANCE_NOT_ENOUGH": 2,
	"WRONG_PARAMETER":    3,
	"RUNTIME_ERROR":      4,
	"TIMEOUT":            5,
	"WRONG_TX_FORMAT":    6,
	"DUPLICATE_SET_CODE": 7,
	"UNKNOWN_ERROR":      8,
}

Functions

func RegisterApiServiceHandler

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

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

func RegisterApiServiceHandlerClient

func RegisterApiServiceHandlerClient(ctx context.Context, mux *runtime.ServeMux, client ApiServiceClient) error

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

func RegisterApiServiceHandlerFromEndpoint

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

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

func RegisterApiServiceServer

func RegisterApiServiceServer(s *grpc.Server, srv ApiServiceServer)

Types

type Account

type Account struct {
	// account name
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// account balance
	Balance float64 `protobuf:"fixed64,2,opt,name=balance,proto3" json:"balance,omitempty"`
	// gas information
	GasInfo *Account_GasInfo `protobuf:"bytes,3,opt,name=gas_info,json=gasInfo,proto3" json:"gas_info,omitempty"`
	// ram information
	RamInfo *Account_RAMInfo `protobuf:"bytes,4,opt,name=ram_info,json=ramInfo,proto3" json:"ram_info,omitempty"`
	// account permission
	Permissions map[string]*Account_Permission `` /* 163-byte string literal not displayed */
	// account groups
	Groups map[string]*Account_Group `` /* 153-byte string literal not displayed */
	// frozen balance information
	FrozenBalances []*FrozenBalance `protobuf:"bytes,7,rep,name=frozen_balances,json=frozenBalances,proto3" json:"frozen_balances,omitempty"`
	// vote information
	VoteInfos            []*VoteInfo `protobuf:"bytes,8,rep,name=vote_infos,json=voteInfos,proto3" json:"vote_infos,omitempty"`
	XXX_NoUnkeyedLiteral struct{}    `json:"-"`
	XXX_unrecognized     []byte      `json:"-"`
	XXX_sizecache        int32       `json:"-"`
}

The message defines account struct.

func (*Account) Descriptor

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

func (*Account) GetBalance

func (m *Account) GetBalance() float64

func (*Account) GetFrozenBalances

func (m *Account) GetFrozenBalances() []*FrozenBalance

func (*Account) GetGasInfo

func (m *Account) GetGasInfo() *Account_GasInfo

func (*Account) GetGroups

func (m *Account) GetGroups() map[string]*Account_Group

func (*Account) GetName

func (m *Account) GetName() string

func (*Account) GetPermissions

func (m *Account) GetPermissions() map[string]*Account_Permission

func (*Account) GetRamInfo

func (m *Account) GetRamInfo() *Account_RAMInfo

func (*Account) GetVoteInfos

func (m *Account) GetVoteInfos() []*VoteInfo

func (*Account) ProtoMessage

func (*Account) ProtoMessage()

func (*Account) Reset

func (m *Account) Reset()

func (*Account) String

func (m *Account) String() string

func (*Account) XXX_DiscardUnknown

func (m *Account) XXX_DiscardUnknown()

func (*Account) XXX_Marshal

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

func (*Account) XXX_Merge

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

func (*Account) XXX_Size

func (m *Account) XXX_Size() int

func (*Account) XXX_Unmarshal

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

type Account_GasInfo

type Account_GasInfo struct {
	// current total gas amount
	CurrentTotal    float64 `protobuf:"fixed64,1,opt,name=current_total,json=currentTotal,proto3" json:"current_total,omitempty"`
	TransferableGas float64 `protobuf:"fixed64,2,opt,name=transferable_gas,json=transferableGas,proto3" json:"transferable_gas,omitempty"`
	PledgeGas       float64 `protobuf:"fixed64,3,opt,name=pledge_gas,json=pledgeGas,proto3" json:"pledge_gas,omitempty"`
	// gas increase speed
	IncreaseSpeed float64 `protobuf:"fixed64,4,opt,name=increase_speed,json=increaseSpeed,proto3" json:"increase_speed,omitempty"`
	// gas limit
	Limit float64 `protobuf:"fixed64,5,opt,name=limit,proto3" json:"limit,omitempty"`
	// pledge information
	PledgedInfo          []*Account_PledgeInfo `protobuf:"bytes,6,rep,name=pledged_info,json=pledgedInfo,proto3" json:"pledged_info,omitempty"`
	XXX_NoUnkeyedLiteral struct{}              `json:"-"`
	XXX_unrecognized     []byte                `json:"-"`
	XXX_sizecache        int32                 `json:"-"`
}

The message defines account gas information.

func (*Account_GasInfo) Descriptor

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

func (*Account_GasInfo) GetCurrentTotal

func (m *Account_GasInfo) GetCurrentTotal() float64

func (*Account_GasInfo) GetIncreaseSpeed

func (m *Account_GasInfo) GetIncreaseSpeed() float64

func (*Account_GasInfo) GetLimit

func (m *Account_GasInfo) GetLimit() float64

func (*Account_GasInfo) GetPledgeGas

func (m *Account_GasInfo) GetPledgeGas() float64

func (*Account_GasInfo) GetPledgedInfo

func (m *Account_GasInfo) GetPledgedInfo() []*Account_PledgeInfo

func (*Account_GasInfo) GetTransferableGas

func (m *Account_GasInfo) GetTransferableGas() float64

func (*Account_GasInfo) ProtoMessage

func (*Account_GasInfo) ProtoMessage()

func (*Account_GasInfo) Reset

func (m *Account_GasInfo) Reset()

func (*Account_GasInfo) String

func (m *Account_GasInfo) String() string

func (*Account_GasInfo) XXX_DiscardUnknown

func (m *Account_GasInfo) XXX_DiscardUnknown()

func (*Account_GasInfo) XXX_Marshal

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

func (*Account_GasInfo) XXX_Merge

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

func (*Account_GasInfo) XXX_Size

func (m *Account_GasInfo) XXX_Size() int

func (*Account_GasInfo) XXX_Unmarshal

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

type Account_Group

type Account_Group struct {
	// group name
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// permission items
	Items                []*Account_Item `protobuf:"bytes,2,rep,name=items,proto3" json:"items,omitempty"`
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_unrecognized     []byte          `json:"-"`
	XXX_sizecache        int32           `json:"-"`
}

The message defines a permission group.

func (*Account_Group) Descriptor

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

func (*Account_Group) GetItems

func (m *Account_Group) GetItems() []*Account_Item

func (*Account_Group) GetName

func (m *Account_Group) GetName() string

func (*Account_Group) ProtoMessage

func (*Account_Group) ProtoMessage()

func (*Account_Group) Reset

func (m *Account_Group) Reset()

func (*Account_Group) String

func (m *Account_Group) String() string

func (*Account_Group) XXX_DiscardUnknown

func (m *Account_Group) XXX_DiscardUnknown()

func (*Account_Group) XXX_Marshal

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

func (*Account_Group) XXX_Merge

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

func (*Account_Group) XXX_Size

func (m *Account_Group) XXX_Size() int

func (*Account_Group) XXX_Unmarshal

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

type Account_Item

type Account_Item struct {
	// permission name or key pair id
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// whether it's a key pair
	IsKeyPair bool `protobuf:"varint,2,opt,name=is_key_pair,json=isKeyPair,proto3" json:"is_key_pair,omitempty"`
	// permission weight
	Weight int64 `protobuf:"varint,3,opt,name=weight,proto3" json:"weight,omitempty"`
	// permission
	Permission           string   `protobuf:"bytes,4,opt,name=permission,proto3" json:"permission,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

The message defines permission item.

func (*Account_Item) Descriptor

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

func (*Account_Item) GetId

func (m *Account_Item) GetId() string

func (*Account_Item) GetIsKeyPair

func (m *Account_Item) GetIsKeyPair() bool

func (*Account_Item) GetPermission

func (m *Account_Item) GetPermission() string

func (*Account_Item) GetWeight

func (m *Account_Item) GetWeight() int64

func (*Account_Item) ProtoMessage

func (*Account_Item) ProtoMessage()

func (*Account_Item) Reset

func (m *Account_Item) Reset()

func (*Account_Item) String

func (m *Account_Item) String() string

func (*Account_Item) XXX_DiscardUnknown

func (m *Account_Item) XXX_DiscardUnknown()

func (*Account_Item) XXX_Marshal

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

func (*Account_Item) XXX_Merge

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

func (*Account_Item) XXX_Size

func (m *Account_Item) XXX_Size() int

func (*Account_Item) XXX_Unmarshal

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

type Account_Permission

type Account_Permission struct {
	// permission name
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// permission groups
	GroupNames []string `protobuf:"bytes,2,rep,name=group_names,json=groupNames,proto3" json:"group_names,omitempty"`
	// permission items
	Items []*Account_Item `protobuf:"bytes,3,rep,name=items,proto3" json:"items,omitempty"`
	// permission threshold
	Threshold            int64    `protobuf:"varint,4,opt,name=threshold,proto3" json:"threshold,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

The message defines the permission struct.

func (*Account_Permission) Descriptor

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

func (*Account_Permission) GetGroupNames

func (m *Account_Permission) GetGroupNames() []string

func (*Account_Permission) GetItems

func (m *Account_Permission) GetItems() []*Account_Item

func (*Account_Permission) GetName

func (m *Account_Permission) GetName() string

func (*Account_Permission) GetThreshold

func (m *Account_Permission) GetThreshold() int64

func (*Account_Permission) ProtoMessage

func (*Account_Permission) ProtoMessage()

func (*Account_Permission) Reset

func (m *Account_Permission) Reset()

func (*Account_Permission) String

func (m *Account_Permission) String() string

func (*Account_Permission) XXX_DiscardUnknown

func (m *Account_Permission) XXX_DiscardUnknown()

func (*Account_Permission) XXX_Marshal

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

func (*Account_Permission) XXX_Merge

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

func (*Account_Permission) XXX_Size

func (m *Account_Permission) XXX_Size() int

func (*Account_Permission) XXX_Unmarshal

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

type Account_PledgeInfo

type Account_PledgeInfo struct {
	// the account who pledges
	Pledger string `protobuf:"bytes,1,opt,name=pledger,proto3" json:"pledger,omitempty"`
	// pledged amount
	Amount               float64  `protobuf:"fixed64,2,opt,name=amount,proto3" json:"amount,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

The message defines account pledged coin information.

func (*Account_PledgeInfo) Descriptor

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

func (*Account_PledgeInfo) GetAmount

func (m *Account_PledgeInfo) GetAmount() float64

func (*Account_PledgeInfo) GetPledger

func (m *Account_PledgeInfo) GetPledger() string

func (*Account_PledgeInfo) ProtoMessage

func (*Account_PledgeInfo) ProtoMessage()

func (*Account_PledgeInfo) Reset

func (m *Account_PledgeInfo) Reset()

func (*Account_PledgeInfo) String

func (m *Account_PledgeInfo) String() string

func (*Account_PledgeInfo) XXX_DiscardUnknown

func (m *Account_PledgeInfo) XXX_DiscardUnknown()

func (*Account_PledgeInfo) XXX_Marshal

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

func (*Account_PledgeInfo) XXX_Merge

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

func (*Account_PledgeInfo) XXX_Size

func (m *Account_PledgeInfo) XXX_Size() int

func (*Account_PledgeInfo) XXX_Unmarshal

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

type Account_RAMInfo

type Account_RAMInfo struct {
	// available ram bytes
	Available int64 `protobuf:"varint,1,opt,name=available,proto3" json:"available,omitempty"`
	// used ram bytes
	Used int64 `protobuf:"varint,2,opt,name=used,proto3" json:"used,omitempty"`
	// total ram bytes
	Total                int64    `protobuf:"varint,3,opt,name=total,proto3" json:"total,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

The message defines account ram information.

func (*Account_RAMInfo) Descriptor

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

func (*Account_RAMInfo) GetAvailable

func (m *Account_RAMInfo) GetAvailable() int64

func (*Account_RAMInfo) GetTotal

func (m *Account_RAMInfo) GetTotal() int64

func (*Account_RAMInfo) GetUsed

func (m *Account_RAMInfo) GetUsed() int64

func (*Account_RAMInfo) ProtoMessage

func (*Account_RAMInfo) ProtoMessage()

func (*Account_RAMInfo) Reset

func (m *Account_RAMInfo) Reset()

func (*Account_RAMInfo) String

func (m *Account_RAMInfo) String() string

func (*Account_RAMInfo) XXX_DiscardUnknown

func (m *Account_RAMInfo) XXX_DiscardUnknown()

func (*Account_RAMInfo) XXX_Marshal

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

func (*Account_RAMInfo) XXX_Merge

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

func (*Account_RAMInfo) XXX_Size

func (m *Account_RAMInfo) XXX_Size() int

func (*Account_RAMInfo) XXX_Unmarshal

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

type Action

type Action struct {
	// contract name
	Contract string `protobuf:"bytes,1,opt,name=contract,proto3" json:"contract,omitempty"`
	// action name
	ActionName string `protobuf:"bytes,2,opt,name=action_name,json=actionName,proto3" json:"action_name,omitempty"`
	// data
	Data                 string   `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

The message defines transaction action struct.

func (*Action) Descriptor

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

func (*Action) GetActionName

func (m *Action) GetActionName() string

func (*Action) GetContract

func (m *Action) GetContract() string

func (*Action) GetData

func (m *Action) GetData() string

func (*Action) ProtoMessage

func (*Action) ProtoMessage()

func (*Action) Reset

func (m *Action) Reset()

func (*Action) String

func (m *Action) String() string

func (*Action) XXX_DiscardUnknown

func (m *Action) XXX_DiscardUnknown()

func (*Action) XXX_Marshal

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

func (*Action) XXX_Merge

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

func (*Action) XXX_Size

func (m *Action) XXX_Size() int

func (*Action) XXX_Unmarshal

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

type AmountLimit

type AmountLimit struct {
	// token name
	Token string `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty"`
	// limit value
	Value                string   `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

The message defines transaction amount limit struct.

func (*AmountLimit) Descriptor

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

func (*AmountLimit) GetToken

func (m *AmountLimit) GetToken() string

func (*AmountLimit) GetValue

func (m *AmountLimit) GetValue() string

func (*AmountLimit) ProtoMessage

func (*AmountLimit) ProtoMessage()

func (*AmountLimit) Reset

func (m *AmountLimit) Reset()

func (*AmountLimit) String

func (m *AmountLimit) String() string

func (*AmountLimit) XXX_DiscardUnknown

func (m *AmountLimit) XXX_DiscardUnknown()

func (*AmountLimit) XXX_Marshal

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

func (*AmountLimit) XXX_Merge

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

func (*AmountLimit) XXX_Size

func (m *AmountLimit) XXX_Size() int

func (*AmountLimit) XXX_Unmarshal

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

type ApiServiceClient

type ApiServiceClient interface {
	// get the node information
	GetNodeInfo(ctx context.Context, in *EmptyRequest, opts ...grpc.CallOption) (*NodeInfoResponse, error)
	// get blockchain information
	GetChainInfo(ctx context.Context, in *EmptyRequest, opts ...grpc.CallOption) (*ChainInfoResponse, error)
	// get current blockchain ram information
	GetRAMInfo(ctx context.Context, in *EmptyRequest, opts ...grpc.CallOption) (*RAMInfoResponse, error)
	// get transaction by hash
	GetTxByHash(ctx context.Context, in *TxHashRequest, opts ...grpc.CallOption) (*TransactionResponse, error)
	// get transaction receipt by transaction hash
	GetTxReceiptByTxHash(ctx context.Context, in *TxHashRequest, opts ...grpc.CallOption) (*TxReceipt, error)
	// get block by hash
	GetBlockByHash(ctx context.Context, in *GetBlockByHashRequest, opts ...grpc.CallOption) (*BlockResponse, error)
	// get block by number
	GetBlockByNumber(ctx context.Context, in *GetBlockByNumberRequest, opts ...grpc.CallOption) (*BlockResponse, error)
	// get account
	GetAccount(ctx context.Context, in *GetAccountRequest, opts ...grpc.CallOption) (*Account, error)
	// get token balance
	GetTokenBalance(ctx context.Context, in *GetTokenBalanceRequest, opts ...grpc.CallOption) (*GetTokenBalanceResponse, error)
	// get token721 balance
	GetToken721Balance(ctx context.Context, in *GetTokenBalanceRequest, opts ...grpc.CallOption) (*GetToken721BalanceResponse, error)
	// get token721 metadata
	GetToken721Metadata(ctx context.Context, in *GetToken721InfoRequest, opts ...grpc.CallOption) (*GetToken721MetadataResponse, error)
	// get token721 owner
	GetToken721Owner(ctx context.Context, in *GetToken721InfoRequest, opts ...grpc.CallOption) (*GetToken721OwnerResponse, error)
	// get gas ratio infomation
	GetGasRatio(ctx context.Context, in *EmptyRequest, opts ...grpc.CallOption) (*GasRatioResponse, error)
	// get producer vote infomation
	GetProducerVoteInfo(ctx context.Context, in *GetProducerVoteInfoRequest, opts ...grpc.CallOption) (*GetProducerVoteInfoResponse, error)
	// get contract
	GetContract(ctx context.Context, in *GetContractRequest, opts ...grpc.CallOption) (*Contract, error)
	// get contract vote
	GetContractVote(ctx context.Context, in *GetContractRequest, opts ...grpc.CallOption) (*ContractVote, error)
	// get contract storage
	GetContractStorage(ctx context.Context, in *GetContractStorageRequest, opts ...grpc.CallOption) (*GetContractStorageResponse, error)
	// get batch contract storage
	GetBatchContractStorage(ctx context.Context, in *GetBatchContractStorageRequest, opts ...grpc.CallOption) (*GetBatchContractStorageResponse, error)
	ListContractStorage(ctx context.Context, in *ListContractStorageRequest, opts ...grpc.CallOption) (*ListContractStorageResponse, error)
	// get contract fields storage
	GetContractStorageFields(ctx context.Context, in *GetContractStorageFieldsRequest, opts ...grpc.CallOption) (*GetContractStorageFieldsResponse, error)
	// send transaction
	SendTransaction(ctx context.Context, in *TransactionRequest, opts ...grpc.CallOption) (*SendTransactionResponse, error)
	// execute transaction
	ExecTransaction(ctx context.Context, in *TransactionRequest, opts ...grpc.CallOption) (*TxReceipt, error)
	// subscribe an event
	Subscribe(ctx context.Context, in *SubscribeRequest, opts ...grpc.CallOption) (ApiService_SubscribeClient, error)
	GetVoterBonus(ctx context.Context, in *GetAccountRequest, opts ...grpc.CallOption) (*VoterBonus, error)
	GetCandidateBonus(ctx context.Context, in *GetAccountRequest, opts ...grpc.CallOption) (*CandidateBonus, error)
	GetTokenInfo(ctx context.Context, in *GetTokenInfoRequest, opts ...grpc.CallOption) (*TokenInfo, error)
}

ApiServiceClient is the client API for ApiService service.

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

func NewApiServiceClient

func NewApiServiceClient(cc *grpc.ClientConn) ApiServiceClient

type ApiServiceServer

type ApiServiceServer interface {
	// get the node information
	GetNodeInfo(context.Context, *EmptyRequest) (*NodeInfoResponse, error)
	// get blockchain information
	GetChainInfo(context.Context, *EmptyRequest) (*ChainInfoResponse, error)
	// get current blockchain ram information
	GetRAMInfo(context.Context, *EmptyRequest) (*RAMInfoResponse, error)
	// get transaction by hash
	GetTxByHash(context.Context, *TxHashRequest) (*TransactionResponse, error)
	// get transaction receipt by transaction hash
	GetTxReceiptByTxHash(context.Context, *TxHashRequest) (*TxReceipt, error)
	// get block by hash
	GetBlockByHash(context.Context, *GetBlockByHashRequest) (*BlockResponse, error)
	// get block by number
	GetBlockByNumber(context.Context, *GetBlockByNumberRequest) (*BlockResponse, error)
	// get account
	GetAccount(context.Context, *GetAccountRequest) (*Account, error)
	// get token balance
	GetTokenBalance(context.Context, *GetTokenBalanceRequest) (*GetTokenBalanceResponse, error)
	// get token721 balance
	GetToken721Balance(context.Context, *GetTokenBalanceRequest) (*GetToken721BalanceResponse, error)
	// get token721 metadata
	GetToken721Metadata(context.Context, *GetToken721InfoRequest) (*GetToken721MetadataResponse, error)
	// get token721 owner
	GetToken721Owner(context.Context, *GetToken721InfoRequest) (*GetToken721OwnerResponse, error)
	// get gas ratio infomation
	GetGasRatio(context.Context, *EmptyRequest) (*GasRatioResponse, error)
	// get producer vote infomation
	GetProducerVoteInfo(context.Context, *GetProducerVoteInfoRequest) (*GetProducerVoteInfoResponse, error)
	// get contract
	GetContract(context.Context, *GetContractRequest) (*Contract, error)
	// get contract vote
	GetContractVote(context.Context, *GetContractRequest) (*ContractVote, error)
	// get contract storage
	GetContractStorage(context.Context, *GetContractStorageRequest) (*GetContractStorageResponse, error)
	// get batch contract storage
	GetBatchContractStorage(context.Context, *GetBatchContractStorageRequest) (*GetBatchContractStorageResponse, error)
	ListContractStorage(context.Context, *ListContractStorageRequest) (*ListContractStorageResponse, error)
	// get contract fields storage
	GetContractStorageFields(context.Context, *GetContractStorageFieldsRequest) (*GetContractStorageFieldsResponse, error)
	// send transaction
	SendTransaction(context.Context, *TransactionRequest) (*SendTransactionResponse, error)
	// execute transaction
	ExecTransaction(context.Context, *TransactionRequest) (*TxReceipt, error)
	// subscribe an event
	Subscribe(*SubscribeRequest, ApiService_SubscribeServer) error
	GetVoterBonus(context.Context, *GetAccountRequest) (*VoterBonus, error)
	GetCandidateBonus(context.Context, *GetAccountRequest) (*CandidateBonus, error)
	GetTokenInfo(context.Context, *GetTokenInfoRequest) (*TokenInfo, error)
}

ApiServiceServer is the server API for ApiService service.

type ApiService_SubscribeClient

type ApiService_SubscribeClient interface {
	Recv() (*SubscribeResponse, error)
	grpc.ClientStream
}

type ApiService_SubscribeServer

type ApiService_SubscribeServer interface {
	Send(*SubscribeResponse) error
	grpc.ServerStream
}

type Block

type Block struct {
	// block hash
	Hash string `protobuf:"bytes,1,opt,name=hash,proto3" json:"hash,omitempty"`
	// block version
	Version int64 `protobuf:"varint,2,opt,name=version,proto3" json:"version,omitempty"`
	// parent block hash
	ParentHash string `protobuf:"bytes,3,opt,name=parent_hash,json=parentHash,proto3" json:"parent_hash,omitempty"`
	// transaction merkle tree root hash
	TxMerkleHash string `protobuf:"bytes,4,opt,name=tx_merkle_hash,json=txMerkleHash,proto3" json:"tx_merkle_hash,omitempty"`
	// transaction receipt merkle tree root hash
	TxReceiptMerkleHash string `protobuf:"bytes,5,opt,name=tx_receipt_merkle_hash,json=txReceiptMerkleHash,proto3" json:"tx_receipt_merkle_hash,omitempty"`
	// block number
	Number int64 `protobuf:"varint,6,opt,name=number,proto3" json:"number,omitempty"`
	// block producer witness
	Witness string `protobuf:"bytes,7,opt,name=witness,proto3" json:"witness,omitempty"`
	// block timestamp
	Time int64 `protobuf:"varint,8,opt,name=time,proto3" json:"time,omitempty"`
	// block gas usage
	GasUsage float64 `protobuf:"fixed64,9,opt,name=gas_usage,json=gasUsage,proto3" json:"gas_usage,omitempty"`
	// transaction count
	TxCount int64 `protobuf:"varint,10,opt,name=tx_count,json=txCount,proto3" json:"tx_count,omitempty"`
	// extra information
	Info *Block_Info `protobuf:"bytes,11,opt,name=info,proto3" json:"info,omitempty"`
	// block transactions
	Transactions         []*Transaction `protobuf:"bytes,12,rep,name=transactions,proto3" json:"transactions,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

The message defines the block struct.

func (*Block) Descriptor

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

func (*Block) GetGasUsage

func (m *Block) GetGasUsage() float64

func (*Block) GetHash

func (m *Block) GetHash() string

func (*Block) GetInfo

func (m *Block) GetInfo() *Block_Info

func (*Block) GetNumber

func (m *Block) GetNumber() int64

func (*Block) GetParentHash

func (m *Block) GetParentHash() string

func (*Block) GetTime

func (m *Block) GetTime() int64

func (*Block) GetTransactions

func (m *Block) GetTransactions() []*Transaction

func (*Block) GetTxCount

func (m *Block) GetTxCount() int64

func (*Block) GetTxMerkleHash

func (m *Block) GetTxMerkleHash() string

func (*Block) GetTxReceiptMerkleHash

func (m *Block) GetTxReceiptMerkleHash() string

func (*Block) GetVersion

func (m *Block) GetVersion() int64

func (*Block) GetWitness

func (m *Block) GetWitness() string

func (*Block) ProtoMessage

func (*Block) ProtoMessage()

func (*Block) Reset

func (m *Block) Reset()

func (*Block) String

func (m *Block) String() string

func (*Block) XXX_DiscardUnknown

func (m *Block) XXX_DiscardUnknown()

func (*Block) XXX_Marshal

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

func (*Block) XXX_Merge

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

func (*Block) XXX_Size

func (m *Block) XXX_Size() int

func (*Block) XXX_Unmarshal

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

type BlockResponse

type BlockResponse struct {
	// transaction status
	Status BlockResponse_Status `protobuf:"varint,1,opt,name=status,proto3,enum=rpcpb.BlockResponse_Status" json:"status,omitempty"`
	// block
	Block                *Block   `protobuf:"bytes,2,opt,name=block,proto3" json:"block,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*BlockResponse) Descriptor

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

func (*BlockResponse) GetBlock

func (m *BlockResponse) GetBlock() *Block

func (*BlockResponse) GetStatus

func (m *BlockResponse) GetStatus() BlockResponse_Status

func (*BlockResponse) ProtoMessage

func (*BlockResponse) ProtoMessage()

func (*BlockResponse) Reset

func (m *BlockResponse) Reset()

func (*BlockResponse) String

func (m *BlockResponse) String() string

func (*BlockResponse) XXX_DiscardUnknown

func (m *BlockResponse) XXX_DiscardUnknown()

func (*BlockResponse) XXX_Marshal

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

func (*BlockResponse) XXX_Merge

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

func (*BlockResponse) XXX_Size

func (m *BlockResponse) XXX_Size() int

func (*BlockResponse) XXX_Unmarshal

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

type BlockResponse_Status

type BlockResponse_Status int32

The enumeration defines block status.

const (
	// pending in block cache
	BlockResponse_PENDING BlockResponse_Status = 0
	// irreversible
	BlockResponse_IRREVERSIBLE BlockResponse_Status = 1
)

func (BlockResponse_Status) EnumDescriptor

func (BlockResponse_Status) EnumDescriptor() ([]byte, []int)

func (BlockResponse_Status) String

func (x BlockResponse_Status) String() string

type Block_Info

type Block_Info struct {
	// pack mode
	Mode int32 `protobuf:"varint,1,opt,name=mode,proto3" json:"mode,omitempty"`
	// transaction execution thread number
	Thread int32 `protobuf:"varint,2,opt,name=thread,proto3" json:"thread,omitempty"`
	// transaction index of every batch execution
	BatchIndex           []int32  `protobuf:"varint,3,rep,packed,name=batch_index,json=batchIndex,proto3" json:"batch_index,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

The message defines block extra information

func (*Block_Info) Descriptor

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

func (*Block_Info) GetBatchIndex

func (m *Block_Info) GetBatchIndex() []int32

func (*Block_Info) GetMode

func (m *Block_Info) GetMode() int32

func (*Block_Info) GetThread

func (m *Block_Info) GetThread() int32

func (*Block_Info) ProtoMessage

func (*Block_Info) ProtoMessage()

func (*Block_Info) Reset

func (m *Block_Info) Reset()

func (*Block_Info) String

func (m *Block_Info) String() string

func (*Block_Info) XXX_DiscardUnknown

func (m *Block_Info) XXX_DiscardUnknown()

func (*Block_Info) XXX_Marshal

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

func (*Block_Info) XXX_Merge

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

func (*Block_Info) XXX_Size

func (m *Block_Info) XXX_Size() int

func (*Block_Info) XXX_Unmarshal

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

type CandidateBonus

type CandidateBonus struct {
	// the candidate bonus
	Bonus                float64  `protobuf:"fixed64,1,opt,name=bonus,proto3" json:"bonus,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

The message defines the getCandidateBonus response.

func (*CandidateBonus) Descriptor

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

func (*CandidateBonus) GetBonus

func (m *CandidateBonus) GetBonus() float64

func (*CandidateBonus) ProtoMessage

func (*CandidateBonus) ProtoMessage()

func (*CandidateBonus) Reset

func (m *CandidateBonus) Reset()

func (*CandidateBonus) String

func (m *CandidateBonus) String() string

func (*CandidateBonus) XXX_DiscardUnknown

func (m *CandidateBonus) XXX_DiscardUnknown()

func (*CandidateBonus) XXX_Marshal

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

func (*CandidateBonus) XXX_Merge

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

func (*CandidateBonus) XXX_Size

func (m *CandidateBonus) XXX_Size() int

func (*CandidateBonus) XXX_Unmarshal

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

type ChainInfoResponse

type ChainInfoResponse struct {
	// the name of network, such mainnet or testnet
	NetName string `protobuf:"bytes,1,opt,name=net_name,json=netName,proto3" json:"net_name,omitempty"`
	// the aiou protocol version
	ProtocolVersion string `protobuf:"bytes,2,opt,name=protocol_version,json=protocolVersion,proto3" json:"protocol_version,omitempty"`
	// chain id
	ChainId uint32 `protobuf:"varint,3,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	// head block height
	HeadBlock int64 `protobuf:"varint,4,opt,name=head_block,json=headBlock,proto3" json:"head_block,omitempty"`
	// head block hash
	HeadBlockHash string `protobuf:"bytes,5,opt,name=head_block_hash,json=headBlockHash,proto3" json:"head_block_hash,omitempty"`
	// last irreversible block number
	LibBlock int64 `protobuf:"varint,6,opt,name=lib_block,json=libBlock,proto3" json:"lib_block,omitempty"`
	// last irreversible block hash
	LibBlockHash string `protobuf:"bytes,7,opt,name=lib_block_hash,json=libBlockHash,proto3" json:"lib_block_hash,omitempty"`
	// the current witness list
	WitnessList []string `protobuf:"bytes,8,rep,name=witness_list,json=witnessList,proto3" json:"witness_list,omitempty"`
	// the active witness list of lat irreversible block
	LibWitnessList []string `protobuf:"bytes,9,rep,name=lib_witness_list,json=libWitnessList,proto3" json:"lib_witness_list,omitempty"`
	// the pending witness list
	PendingWitnessList []string `protobuf:"bytes,10,rep,name=pending_witness_list,json=pendingWitnessList,proto3" json:"pending_witness_list,omitempty"`
	// the head block time
	HeadBlockTime int64 `protobuf:"varint,11,opt,name=head_block_time,json=headBlockTime,proto3" json:"head_block_time,omitempty"`
	// the last irreversible block time
	LibBlockTime         int64    `protobuf:"varint,12,opt,name=lib_block_time,json=libBlockTime,proto3" json:"lib_block_time,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

The message defines chain information response.

func (*ChainInfoResponse) Descriptor

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

func (*ChainInfoResponse) GetChainId

func (m *ChainInfoResponse) GetChainId() uint32

func (*ChainInfoResponse) GetHeadBlock

func (m *ChainInfoResponse) GetHeadBlock() int64

func (*ChainInfoResponse) GetHeadBlockHash

func (m *ChainInfoResponse) GetHeadBlockHash() string

func (*ChainInfoResponse) GetHeadBlockTime

func (m *ChainInfoResponse) GetHeadBlockTime() int64

func (*ChainInfoResponse) GetLibBlock

func (m *ChainInfoResponse) GetLibBlock() int64

func (*ChainInfoResponse) GetLibBlockHash

func (m *ChainInfoResponse) GetLibBlockHash() string

func (*ChainInfoResponse) GetLibBlockTime

func (m *ChainInfoResponse) GetLibBlockTime() int64

func (*ChainInfoResponse) GetLibWitnessList

func (m *ChainInfoResponse) GetLibWitnessList() []string

func (*ChainInfoResponse) GetNetName

func (m *ChainInfoResponse) GetNetName() string

func (*ChainInfoResponse) GetPendingWitnessList

func (m *ChainInfoResponse) GetPendingWitnessList() []string

func (*ChainInfoResponse) GetProtocolVersion

func (m *ChainInfoResponse) GetProtocolVersion() string

func (*ChainInfoResponse) GetWitnessList

func (m *ChainInfoResponse) GetWitnessList() []string

func (*ChainInfoResponse) ProtoMessage

func (*ChainInfoResponse) ProtoMessage()

func (*ChainInfoResponse) Reset

func (m *ChainInfoResponse) Reset()

func (*ChainInfoResponse) String

func (m *ChainInfoResponse) String() string

func (*ChainInfoResponse) XXX_DiscardUnknown

func (m *ChainInfoResponse) XXX_DiscardUnknown()

func (*ChainInfoResponse) XXX_Marshal

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

func (*ChainInfoResponse) XXX_Merge

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

func (*ChainInfoResponse) XXX_Size

func (m *ChainInfoResponse) XXX_Size() int

func (*ChainInfoResponse) XXX_Unmarshal

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

type Contract

type Contract struct {
	// contract id
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// contract code
	Code string `protobuf:"bytes,2,opt,name=code,proto3" json:"code,omitempty"`
	// contract language
	Language string `protobuf:"bytes,3,opt,name=language,proto3" json:"language,omitempty"`
	// contract version
	Version string `protobuf:"bytes,4,opt,name=version,proto3" json:"version,omitempty"`
	// contract abis
	Abis                 []*Contract_ABI `protobuf:"bytes,5,rep,name=abis,proto3" json:"abis,omitempty"`
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_unrecognized     []byte          `json:"-"`
	XXX_sizecache        int32           `json:"-"`
}

The message defines the contract struct.

func (*Contract) Descriptor

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

func (*Contract) GetAbis

func (m *Contract) GetAbis() []*Contract_ABI

func (*Contract) GetCode

func (m *Contract) GetCode() string

func (*Contract) GetId

func (m *Contract) GetId() string

func (*Contract) GetLanguage

func (m *Contract) GetLanguage() string

func (*Contract) GetVersion

func (m *Contract) GetVersion() string

func (*Contract) ProtoMessage

func (*Contract) ProtoMessage()

func (*Contract) Reset

func (m *Contract) Reset()

func (*Contract) String

func (m *Contract) String() string

func (*Contract) XXX_DiscardUnknown

func (m *Contract) XXX_DiscardUnknown()

func (*Contract) XXX_Marshal

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

func (*Contract) XXX_Merge

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

func (*Contract) XXX_Size

func (m *Contract) XXX_Size() int

func (*Contract) XXX_Unmarshal

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

type ContractVote

type ContractVote struct {
	// vote information
	VoteInfos            []*VoteInfo `protobuf:"bytes,1,rep,name=vote_infos,json=voteInfos,proto3" json:"vote_infos,omitempty"`
	XXX_NoUnkeyedLiteral struct{}    `json:"-"`
	XXX_unrecognized     []byte      `json:"-"`
	XXX_sizecache        int32       `json:"-"`
}

The message defines the contract vote info

func (*ContractVote) Descriptor

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

func (*ContractVote) GetVoteInfos

func (m *ContractVote) GetVoteInfos() []*VoteInfo

func (*ContractVote) ProtoMessage

func (*ContractVote) ProtoMessage()

func (*ContractVote) Reset

func (m *ContractVote) Reset()

func (*ContractVote) String

func (m *ContractVote) String() string

func (*ContractVote) XXX_DiscardUnknown

func (m *ContractVote) XXX_DiscardUnknown()

func (*ContractVote) XXX_Marshal

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

func (*ContractVote) XXX_Merge

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

func (*ContractVote) XXX_Size

func (m *ContractVote) XXX_Size() int

func (*ContractVote) XXX_Unmarshal

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

type Contract_ABI

type Contract_ABI struct {
	// abi name
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// abi arguments
	Args []string `protobuf:"bytes,2,rep,name=args,proto3" json:"args,omitempty"`
	// abi amount limt
	AmountLimit          []*AmountLimit `protobuf:"bytes,3,rep,name=amount_limit,json=amountLimit,proto3" json:"amount_limit,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

The message defines the ABI struct.

func (*Contract_ABI) Descriptor

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

func (*Contract_ABI) GetAmountLimit

func (m *Contract_ABI) GetAmountLimit() []*AmountLimit

func (*Contract_ABI) GetArgs

func (m *Contract_ABI) GetArgs() []string

func (*Contract_ABI) GetName

func (m *Contract_ABI) GetName() string

func (*Contract_ABI) ProtoMessage

func (*Contract_ABI) ProtoMessage()

func (*Contract_ABI) Reset

func (m *Contract_ABI) Reset()

func (*Contract_ABI) String

func (m *Contract_ABI) String() string

func (*Contract_ABI) XXX_DiscardUnknown

func (m *Contract_ABI) XXX_DiscardUnknown()

func (*Contract_ABI) XXX_Marshal

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

func (*Contract_ABI) XXX_Merge

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

func (*Contract_ABI) XXX_Size

func (m *Contract_ABI) XXX_Size() int

func (*Contract_ABI) XXX_Unmarshal

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

type EmptyRequest

type EmptyRequest struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

The message defines an empty request.

func (*EmptyRequest) Descriptor

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

func (*EmptyRequest) ProtoMessage

func (*EmptyRequest) ProtoMessage()

func (*EmptyRequest) Reset

func (m *EmptyRequest) Reset()

func (*EmptyRequest) String

func (m *EmptyRequest) String() string

func (*EmptyRequest) XXX_DiscardUnknown

func (m *EmptyRequest) XXX_DiscardUnknown()

func (*EmptyRequest) XXX_Marshal

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

func (*EmptyRequest) XXX_Merge

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

func (*EmptyRequest) XXX_Size

func (m *EmptyRequest) XXX_Size() int

func (*EmptyRequest) XXX_Unmarshal

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

type Event

type Event struct {
	// event topic
	Topic Event_Topic `protobuf:"varint,1,opt,name=topic,proto3,enum=rpcpb.Event_Topic" json:"topic,omitempty"`
	// event data
	Data string `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"`
	// event time
	Time                 int64    `protobuf:"varint,3,opt,name=time,proto3" json:"time,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

The message defines event struct.

func (*Event) Descriptor

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

func (*Event) GetData

func (m *Event) GetData() string

func (*Event) GetTime

func (m *Event) GetTime() int64

func (*Event) GetTopic

func (m *Event) GetTopic() Event_Topic

func (*Event) ProtoMessage

func (*Event) ProtoMessage()

func (*Event) Reset

func (m *Event) Reset()

func (*Event) String

func (m *Event) String() string

func (*Event) XXX_DiscardUnknown

func (m *Event) XXX_DiscardUnknown()

func (*Event) XXX_Marshal

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

func (*Event) XXX_Merge

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

func (*Event) XXX_Size

func (m *Event) XXX_Size() int

func (*Event) XXX_Unmarshal

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

type Event_Topic

type Event_Topic int32
const (
	// contract receipt
	Event_CONTRACT_RECEIPT Event_Topic = 0
	// contract event
	Event_CONTRACT_EVENT Event_Topic = 1
)

func (Event_Topic) EnumDescriptor

func (Event_Topic) EnumDescriptor() ([]byte, []int)

func (Event_Topic) String

func (x Event_Topic) String() string

type FrozenBalance

type FrozenBalance struct {
	// balance amount
	Amount float64 `protobuf:"fixed64,1,opt,name=amount,proto3" json:"amount,omitempty"`
	// free time
	Time                 int64    `protobuf:"varint,2,opt,name=time,proto3" json:"time,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

The message defines the account's frozen balance.

func (*FrozenBalance) Descriptor

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

func (*FrozenBalance) GetAmount

func (m *FrozenBalance) GetAmount() float64

func (*FrozenBalance) GetTime

func (m *FrozenBalance) GetTime() int64

func (*FrozenBalance) ProtoMessage

func (*FrozenBalance) ProtoMessage()

func (*FrozenBalance) Reset

func (m *FrozenBalance) Reset()

func (*FrozenBalance) String

func (m *FrozenBalance) String() string

func (*FrozenBalance) XXX_DiscardUnknown

func (m *FrozenBalance) XXX_DiscardUnknown()

func (*FrozenBalance) XXX_Marshal

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

func (*FrozenBalance) XXX_Merge

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

func (*FrozenBalance) XXX_Size

func (m *FrozenBalance) XXX_Size() int

func (*FrozenBalance) XXX_Unmarshal

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

type GasRatioResponse

type GasRatioResponse struct {
	// lowest gas ratio in head block
	LowestGasRatio float64 `protobuf:"fixed64,1,opt,name=lowest_gas_ratio,json=lowestGasRatio,proto3" json:"lowest_gas_ratio,omitempty"`
	// median gas ratio in head block
	MedianGasRatio       float64  `protobuf:"fixed64,2,opt,name=median_gas_ratio,json=medianGasRatio,proto3" json:"median_gas_ratio,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GasRatioResponse) Descriptor

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

func (*GasRatioResponse) GetLowestGasRatio

func (m *GasRatioResponse) GetLowestGasRatio() float64

func (*GasRatioResponse) GetMedianGasRatio

func (m *GasRatioResponse) GetMedianGasRatio() float64

func (*GasRatioResponse) ProtoMessage

func (*GasRatioResponse) ProtoMessage()

func (*GasRatioResponse) Reset

func (m *GasRatioResponse) Reset()

func (*GasRatioResponse) String

func (m *GasRatioResponse) String() string

func (*GasRatioResponse) XXX_DiscardUnknown

func (m *GasRatioResponse) XXX_DiscardUnknown()

func (*GasRatioResponse) XXX_Marshal

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

func (*GasRatioResponse) XXX_Merge

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

func (*GasRatioResponse) XXX_Size

func (m *GasRatioResponse) XXX_Size() int

func (*GasRatioResponse) XXX_Unmarshal

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

type GetAccountRequest

type GetAccountRequest struct {
	// account name
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// get account by longest chain's head block or last irreversible block
	ByLongestChain       bool     `protobuf:"varint,2,opt,name=by_longest_chain,json=byLongestChain,proto3" json:"by_longest_chain,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

The message defines the get account request.

func (*GetAccountRequest) Descriptor

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

func (*GetAccountRequest) GetByLongestChain

func (m *GetAccountRequest) GetByLongestChain() bool

func (*GetAccountRequest) GetName

func (m *GetAccountRequest) GetName() string

func (*GetAccountRequest) ProtoMessage

func (*GetAccountRequest) ProtoMessage()

func (*GetAccountRequest) Reset

func (m *GetAccountRequest) Reset()

func (*GetAccountRequest) String

func (m *GetAccountRequest) String() string

func (*GetAccountRequest) XXX_DiscardUnknown

func (m *GetAccountRequest) XXX_DiscardUnknown()

func (*GetAccountRequest) XXX_Marshal

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

func (*GetAccountRequest) XXX_Merge

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

func (*GetAccountRequest) XXX_Size

func (m *GetAccountRequest) XXX_Size() int

func (*GetAccountRequest) XXX_Unmarshal

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

type GetBatchContractStorageRequest

type GetBatchContractStorageRequest struct {
	// contract id
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// the batch query
	KeyFields []*GetBatchContractStorageRequest_KeyField `protobuf:"bytes,2,rep,name=key_fields,json=keyFields,proto3" json:"key_fields,omitempty"`
	// get data by longest chain's head block or last irreversible block
	ByLongestChain       bool     `protobuf:"varint,3,opt,name=by_longest_chain,json=byLongestChain,proto3" json:"by_longest_chain,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

The message defines get batch contract storage request.

func (*GetBatchContractStorageRequest) Descriptor

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

func (*GetBatchContractStorageRequest) GetByLongestChain

func (m *GetBatchContractStorageRequest) GetByLongestChain() bool

func (*GetBatchContractStorageRequest) GetId

func (*GetBatchContractStorageRequest) GetKeyFields

func (*GetBatchContractStorageRequest) ProtoMessage

func (*GetBatchContractStorageRequest) ProtoMessage()

func (*GetBatchContractStorageRequest) Reset

func (m *GetBatchContractStorageRequest) Reset()

func (*GetBatchContractStorageRequest) String

func (*GetBatchContractStorageRequest) XXX_DiscardUnknown

func (m *GetBatchContractStorageRequest) XXX_DiscardUnknown()

func (*GetBatchContractStorageRequest) XXX_Marshal

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

func (*GetBatchContractStorageRequest) XXX_Merge

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

func (*GetBatchContractStorageRequest) XXX_Size

func (m *GetBatchContractStorageRequest) XXX_Size() int

func (*GetBatchContractStorageRequest) XXX_Unmarshal

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

type GetBatchContractStorageRequest_KeyField

type GetBatchContractStorageRequest_KeyField struct {
	// the key in StateDB
	Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	// get the value from StateDB, fields is needed if StateDB[key] is a map.(we get StateDB[key][field] in this case)
	Field                string   `protobuf:"bytes,2,opt,name=field,proto3" json:"field,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

The message defines GetContractStorage request params.

func (*GetBatchContractStorageRequest_KeyField) Descriptor

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

func (*GetBatchContractStorageRequest_KeyField) GetField

func (*GetBatchContractStorageRequest_KeyField) GetKey

func (*GetBatchContractStorageRequest_KeyField) ProtoMessage

func (*GetBatchContractStorageRequest_KeyField) Reset

func (*GetBatchContractStorageRequest_KeyField) String

func (*GetBatchContractStorageRequest_KeyField) XXX_DiscardUnknown

func (m *GetBatchContractStorageRequest_KeyField) XXX_DiscardUnknown()

func (*GetBatchContractStorageRequest_KeyField) XXX_Marshal

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

func (*GetBatchContractStorageRequest_KeyField) XXX_Merge

func (*GetBatchContractStorageRequest_KeyField) XXX_Size

func (*GetBatchContractStorageRequest_KeyField) XXX_Unmarshal

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

type GetBatchContractStorageResponse

type GetBatchContractStorageResponse struct {
	// the repeated json string data
	Datas []string `protobuf:"bytes,1,rep,name=datas,proto3" json:"datas,omitempty"`
	// block hash
	BlockHash string `protobuf:"bytes,2,opt,name=block_hash,json=blockHash,proto3" json:"block_hash,omitempty"`
	// block number
	BlockNumber          int64    `protobuf:"varint,3,opt,name=block_number,json=blockNumber,proto3" json:"block_number,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

The message defines get batch contract storage response.

func (*GetBatchContractStorageResponse) Descriptor

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

func (*GetBatchContractStorageResponse) GetBlockHash

func (m *GetBatchContractStorageResponse) GetBlockHash() string

func (*GetBatchContractStorageResponse) GetBlockNumber

func (m *GetBatchContractStorageResponse) GetBlockNumber() int64

func (*GetBatchContractStorageResponse) GetDatas

func (m *GetBatchContractStorageResponse) GetDatas() []string

func (*GetBatchContractStorageResponse) ProtoMessage

func (*GetBatchContractStorageResponse) ProtoMessage()

func (*GetBatchContractStorageResponse) Reset

func (*GetBatchContractStorageResponse) String

func (*GetBatchContractStorageResponse) XXX_DiscardUnknown

func (m *GetBatchContractStorageResponse) XXX_DiscardUnknown()

func (*GetBatchContractStorageResponse) XXX_Marshal

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

func (*GetBatchContractStorageResponse) XXX_Merge

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

func (*GetBatchContractStorageResponse) XXX_Size

func (m *GetBatchContractStorageResponse) XXX_Size() int

func (*GetBatchContractStorageResponse) XXX_Unmarshal

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

type GetBlockByHashRequest

type GetBlockByHashRequest struct {
	// block hash
	Hash string `protobuf:"bytes,1,opt,name=hash,proto3" json:"hash,omitempty"`
	// complete means whether including the full transactions and transaction receipts
	Complete             bool     `protobuf:"varint,2,opt,name=complete,proto3" json:"complete,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

The request message containing the block's hash.

func (*GetBlockByHashRequest) Descriptor

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

func (*GetBlockByHashRequest) GetComplete

func (m *GetBlockByHashRequest) GetComplete() bool

func (*GetBlockByHashRequest) GetHash

func (m *GetBlockByHashRequest) GetHash() string

func (*GetBlockByHashRequest) ProtoMessage

func (*GetBlockByHashRequest) ProtoMessage()

func (*GetBlockByHashRequest) Reset

func (m *GetBlockByHashRequest) Reset()

func (*GetBlockByHashRequest) String

func (m *GetBlockByHashRequest) String() string

func (*GetBlockByHashRequest) XXX_DiscardUnknown

func (m *GetBlockByHashRequest) XXX_DiscardUnknown()

func (*GetBlockByHashRequest) XXX_Marshal

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

func (*GetBlockByHashRequest) XXX_Merge

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

func (*GetBlockByHashRequest) XXX_Size

func (m *GetBlockByHashRequest) XXX_Size() int

func (*GetBlockByHashRequest) XXX_Unmarshal

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

type GetBlockByNumberRequest

type GetBlockByNumberRequest struct {
	// block number
	Number int64 `protobuf:"varint,1,opt,name=number,proto3" json:"number,omitempty"`
	// complete means whether including the full transactions and transaction receipts
	Complete             bool     `protobuf:"varint,2,opt,name=complete,proto3" json:"complete,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

The request message containing the block's number.

func (*GetBlockByNumberRequest) Descriptor

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

func (*GetBlockByNumberRequest) GetComplete

func (m *GetBlockByNumberRequest) GetComplete() bool

func (*GetBlockByNumberRequest) GetNumber

func (m *GetBlockByNumberRequest) GetNumber() int64

func (*GetBlockByNumberRequest) ProtoMessage

func (*GetBlockByNumberRequest) ProtoMessage()

func (*GetBlockByNumberRequest) Reset

func (m *GetBlockByNumberRequest) Reset()

func (*GetBlockByNumberRequest) String

func (m *GetBlockByNumberRequest) String() string

func (*GetBlockByNumberRequest) XXX_DiscardUnknown

func (m *GetBlockByNumberRequest) XXX_DiscardUnknown()

func (*GetBlockByNumberRequest) XXX_Marshal

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

func (*GetBlockByNumberRequest) XXX_Merge

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

func (*GetBlockByNumberRequest) XXX_Size

func (m *GetBlockByNumberRequest) XXX_Size() int

func (*GetBlockByNumberRequest) XXX_Unmarshal

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

type GetContractRequest

type GetContractRequest struct {
	// contract id
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// get data by longest chain's head block or last irreversible block
	ByLongestChain       bool     `protobuf:"varint,2,opt,name=by_longest_chain,json=byLongestChain,proto3" json:"by_longest_chain,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

The message defines get contract request.

func (*GetContractRequest) Descriptor

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

func (*GetContractRequest) GetByLongestChain

func (m *GetContractRequest) GetByLongestChain() bool

func (*GetContractRequest) GetId

func (m *GetContractRequest) GetId() string

func (*GetContractRequest) ProtoMessage

func (*GetContractRequest) ProtoMessage()

func (*GetContractRequest) Reset

func (m *GetContractRequest) Reset()

func (*GetContractRequest) String

func (m *GetContractRequest) String() string

func (*GetContractRequest) XXX_DiscardUnknown

func (m *GetContractRequest) XXX_DiscardUnknown()

func (*GetContractRequest) XXX_Marshal

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

func (*GetContractRequest) XXX_Merge

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

func (*GetContractRequest) XXX_Size

func (m *GetContractRequest) XXX_Size() int

func (*GetContractRequest) XXX_Unmarshal

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

type GetContractStorageFieldsRequest

type GetContractStorageFieldsRequest struct {
	// contract id
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// get the fields from StateDB
	Key string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
	// get data by longest chain's head block or last irreversible block
	ByLongestChain       bool     `protobuf:"varint,3,opt,name=by_longest_chain,json=byLongestChain,proto3" json:"by_longest_chain,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

The message defines get contract storage request.

func (*GetContractStorageFieldsRequest) Descriptor

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

func (*GetContractStorageFieldsRequest) GetByLongestChain

func (m *GetContractStorageFieldsRequest) GetByLongestChain() bool

func (*GetContractStorageFieldsRequest) GetId

func (*GetContractStorageFieldsRequest) GetKey

func (*GetContractStorageFieldsRequest) ProtoMessage

func (*GetContractStorageFieldsRequest) ProtoMessage()

func (*GetContractStorageFieldsRequest) Reset

func (*GetContractStorageFieldsRequest) String

func (*GetContractStorageFieldsRequest) XXX_DiscardUnknown

func (m *GetContractStorageFieldsRequest) XXX_DiscardUnknown()

func (*GetContractStorageFieldsRequest) XXX_Marshal

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

func (*GetContractStorageFieldsRequest) XXX_Merge

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

func (*GetContractStorageFieldsRequest) XXX_Size

func (m *GetContractStorageFieldsRequest) XXX_Size() int

func (*GetContractStorageFieldsRequest) XXX_Unmarshal

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

type GetContractStorageFieldsResponse

type GetContractStorageFieldsResponse struct {
	// the fields.
	Fields []string `protobuf:"bytes,1,rep,name=fields,proto3" json:"fields,omitempty"`
	// block hash
	BlockHash string `protobuf:"bytes,2,opt,name=block_hash,json=blockHash,proto3" json:"block_hash,omitempty"`
	// block number
	BlockNumber          int64    `protobuf:"varint,3,opt,name=block_number,json=blockNumber,proto3" json:"block_number,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

The message defines get contract storage response.

func (*GetContractStorageFieldsResponse) Descriptor

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

func (*GetContractStorageFieldsResponse) GetBlockHash

func (m *GetContractStorageFieldsResponse) GetBlockHash() string

func (*GetContractStorageFieldsResponse) GetBlockNumber

func (m *GetContractStorageFieldsResponse) GetBlockNumber() int64

func (*GetContractStorageFieldsResponse) GetFields

func (m *GetContractStorageFieldsResponse) GetFields() []string

func (*GetContractStorageFieldsResponse) ProtoMessage

func (*GetContractStorageFieldsResponse) ProtoMessage()

func (*GetContractStorageFieldsResponse) Reset

func (*GetContractStorageFieldsResponse) String

func (*GetContractStorageFieldsResponse) XXX_DiscardUnknown

func (m *GetContractStorageFieldsResponse) XXX_DiscardUnknown()

func (*GetContractStorageFieldsResponse) XXX_Marshal

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

func (*GetContractStorageFieldsResponse) XXX_Merge

func (*GetContractStorageFieldsResponse) XXX_Size

func (m *GetContractStorageFieldsResponse) XXX_Size() int

func (*GetContractStorageFieldsResponse) XXX_Unmarshal

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

type GetContractStorageRequest

type GetContractStorageRequest struct {
	// contract id
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// the key in the StateDB
	Key string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
	// get the value from StateDB, field is needed if StateDB[key] is a map.(we get StateDB[key][field] in this case)
	Field string `protobuf:"bytes,3,opt,name=field,proto3" json:"field,omitempty"`
	// get data by longest chain's head block or last irreversible block
	ByLongestChain       bool     `protobuf:"varint,4,opt,name=by_longest_chain,json=byLongestChain,proto3" json:"by_longest_chain,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

The message defines get contract storage request.

func (*GetContractStorageRequest) Descriptor

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

func (*GetContractStorageRequest) GetByLongestChain

func (m *GetContractStorageRequest) GetByLongestChain() bool

func (*GetContractStorageRequest) GetField

func (m *GetContractStorageRequest) GetField() string

func (*GetContractStorageRequest) GetId

func (m *GetContractStorageRequest) GetId() string

func (*GetContractStorageRequest) GetKey

func (m *GetContractStorageRequest) GetKey() string

func (*GetContractStorageRequest) ProtoMessage

func (*GetContractStorageRequest) ProtoMessage()

func (*GetContractStorageRequest) Reset

func (m *GetContractStorageRequest) Reset()

func (*GetContractStorageRequest) String

func (m *GetContractStorageRequest) String() string

func (*GetContractStorageRequest) XXX_DiscardUnknown

func (m *GetContractStorageRequest) XXX_DiscardUnknown()

func (*GetContractStorageRequest) XXX_Marshal

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

func (*GetContractStorageRequest) XXX_Merge

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

func (*GetContractStorageRequest) XXX_Size

func (m *GetContractStorageRequest) XXX_Size() int

func (*GetContractStorageRequest) XXX_Unmarshal

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

type GetContractStorageResponse

type GetContractStorageResponse struct {
	// the json string data
	Data string `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
	// block hash
	BlockHash string `protobuf:"bytes,2,opt,name=block_hash,json=blockHash,proto3" json:"block_hash,omitempty"`
	// block number
	BlockNumber          int64    `protobuf:"varint,3,opt,name=block_number,json=blockNumber,proto3" json:"block_number,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

The message defines get contract storage response.

func (*GetContractStorageResponse) Descriptor

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

func (*GetContractStorageResponse) GetBlockHash

func (m *GetContractStorageResponse) GetBlockHash() string

func (*GetContractStorageResponse) GetBlockNumber

func (m *GetContractStorageResponse) GetBlockNumber() int64

func (*GetContractStorageResponse) GetData

func (m *GetContractStorageResponse) GetData() string

func (*GetContractStorageResponse) ProtoMessage

func (*GetContractStorageResponse) ProtoMessage()

func (*GetContractStorageResponse) Reset

func (m *GetContractStorageResponse) Reset()

func (*GetContractStorageResponse) String

func (m *GetContractStorageResponse) String() string

func (*GetContractStorageResponse) XXX_DiscardUnknown

func (m *GetContractStorageResponse) XXX_DiscardUnknown()

func (*GetContractStorageResponse) XXX_Marshal

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

func (*GetContractStorageResponse) XXX_Merge

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

func (*GetContractStorageResponse) XXX_Size

func (m *GetContractStorageResponse) XXX_Size() int

func (*GetContractStorageResponse) XXX_Unmarshal

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

type GetProducerVoteInfoRequest

type GetProducerVoteInfoRequest struct {
	// account name
	Account string `protobuf:"bytes,1,opt,name=account,proto3" json:"account,omitempty"`
	// get data by longest chain's head block or last irreversible block
	ByLongestChain       bool     `protobuf:"varint,2,opt,name=by_longest_chain,json=byLongestChain,proto3" json:"by_longest_chain,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GetProducerVoteInfoRequest) Descriptor

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

func (*GetProducerVoteInfoRequest) GetAccount

func (m *GetProducerVoteInfoRequest) GetAccount() string

func (*GetProducerVoteInfoRequest) GetByLongestChain

func (m *GetProducerVoteInfoRequest) GetByLongestChain() bool

func (*GetProducerVoteInfoRequest) ProtoMessage

func (*GetProducerVoteInfoRequest) ProtoMessage()

func (*GetProducerVoteInfoRequest) Reset

func (m *GetProducerVoteInfoRequest) Reset()

func (*GetProducerVoteInfoRequest) String

func (m *GetProducerVoteInfoRequest) String() string

func (*GetProducerVoteInfoRequest) XXX_DiscardUnknown

func (m *GetProducerVoteInfoRequest) XXX_DiscardUnknown()

func (*GetProducerVoteInfoRequest) XXX_Marshal

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

func (*GetProducerVoteInfoRequest) XXX_Merge

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

func (*GetProducerVoteInfoRequest) XXX_Size

func (m *GetProducerVoteInfoRequest) XXX_Size() int

func (*GetProducerVoteInfoRequest) XXX_Unmarshal

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

type GetProducerVoteInfoResponse

type GetProducerVoteInfoResponse struct {
	// producer's public key
	Pubkey string `protobuf:"bytes,1,opt,name=pubkey,proto3" json:"pubkey,omitempty"`
	// producer's location
	Loc string `protobuf:"bytes,2,opt,name=loc,proto3" json:"loc,omitempty"`
	// producer's url
	Url string `protobuf:"bytes,3,opt,name=url,proto3" json:"url,omitempty"`
	// producer's net id
	NetId string `protobuf:"bytes,4,opt,name=net_id,json=netId,proto3" json:"net_id,omitempty"`
	// is producer
	IsProducer bool `protobuf:"varint,5,opt,name=is_producer,json=isProducer,proto3" json:"is_producer,omitempty"`
	// is approved
	Status string `protobuf:"bytes,6,opt,name=status,proto3" json:"status,omitempty"`
	// is online
	Online bool `protobuf:"varint,7,opt,name=online,proto3" json:"online,omitempty"`
	// votes
	Votes                float64  `protobuf:"fixed64,8,opt,name=votes,proto3" json:"votes,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GetProducerVoteInfoResponse) Descriptor

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

func (*GetProducerVoteInfoResponse) GetIsProducer

func (m *GetProducerVoteInfoResponse) GetIsProducer() bool

func (*GetProducerVoteInfoResponse) GetLoc

func (m *GetProducerVoteInfoResponse) GetLoc() string

func (*GetProducerVoteInfoResponse) GetNetId

func (m *GetProducerVoteInfoResponse) GetNetId() string

func (*GetProducerVoteInfoResponse) GetOnline

func (m *GetProducerVoteInfoResponse) GetOnline() bool

func (*GetProducerVoteInfoResponse) GetPubkey

func (m *GetProducerVoteInfoResponse) GetPubkey() string

func (*GetProducerVoteInfoResponse) GetStatus

func (m *GetProducerVoteInfoResponse) GetStatus() string

func (*GetProducerVoteInfoResponse) GetUrl

func (m *GetProducerVoteInfoResponse) GetUrl() string

func (*GetProducerVoteInfoResponse) GetVotes

func (m *GetProducerVoteInfoResponse) GetVotes() float64

func (*GetProducerVoteInfoResponse) ProtoMessage

func (*GetProducerVoteInfoResponse) ProtoMessage()

func (*GetProducerVoteInfoResponse) Reset

func (m *GetProducerVoteInfoResponse) Reset()

func (*GetProducerVoteInfoResponse) String

func (m *GetProducerVoteInfoResponse) String() string

func (*GetProducerVoteInfoResponse) XXX_DiscardUnknown

func (m *GetProducerVoteInfoResponse) XXX_DiscardUnknown()

func (*GetProducerVoteInfoResponse) XXX_Marshal

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

func (*GetProducerVoteInfoResponse) XXX_Merge

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

func (*GetProducerVoteInfoResponse) XXX_Size

func (m *GetProducerVoteInfoResponse) XXX_Size() int

func (*GetProducerVoteInfoResponse) XXX_Unmarshal

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

type GetToken721BalanceResponse

type GetToken721BalanceResponse struct {
	// token balance
	Balance int64 `protobuf:"varint,1,opt,name=balance,proto3" json:"balance,omitempty"`
	// balance information
	TokenIDs             []string `protobuf:"bytes,2,rep,name=tokenIDs,proto3" json:"tokenIDs,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

The message defines get token721 balance response.

func (*GetToken721BalanceResponse) Descriptor

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

func (*GetToken721BalanceResponse) GetBalance

func (m *GetToken721BalanceResponse) GetBalance() int64

func (*GetToken721BalanceResponse) GetTokenIDs

func (m *GetToken721BalanceResponse) GetTokenIDs() []string

func (*GetToken721BalanceResponse) ProtoMessage

func (*GetToken721BalanceResponse) ProtoMessage()

func (*GetToken721BalanceResponse) Reset

func (m *GetToken721BalanceResponse) Reset()

func (*GetToken721BalanceResponse) String

func (m *GetToken721BalanceResponse) String() string

func (*GetToken721BalanceResponse) XXX_DiscardUnknown

func (m *GetToken721BalanceResponse) XXX_DiscardUnknown()

func (*GetToken721BalanceResponse) XXX_Marshal

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

func (*GetToken721BalanceResponse) XXX_Merge

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

func (*GetToken721BalanceResponse) XXX_Size

func (m *GetToken721BalanceResponse) XXX_Size() int

func (*GetToken721BalanceResponse) XXX_Unmarshal

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

type GetToken721InfoRequest

type GetToken721InfoRequest struct {
	// the token name
	Token string `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty"`
	// token id
	TokenId string `protobuf:"bytes,2,opt,name=token_id,json=tokenId,proto3" json:"token_id,omitempty"`
	// get data by longest chain's head block or last irreversible block
	ByLongestChain       bool     `protobuf:"varint,3,opt,name=by_longest_chain,json=byLongestChain,proto3" json:"by_longest_chain,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

The message defines get token721 info request.

func (*GetToken721InfoRequest) Descriptor

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

func (*GetToken721InfoRequest) GetByLongestChain

func (m *GetToken721InfoRequest) GetByLongestChain() bool

func (*GetToken721InfoRequest) GetToken

func (m *GetToken721InfoRequest) GetToken() string

func (*GetToken721InfoRequest) GetTokenId

func (m *GetToken721InfoRequest) GetTokenId() string

func (*GetToken721InfoRequest) ProtoMessage

func (*GetToken721InfoRequest) ProtoMessage()

func (*GetToken721InfoRequest) Reset

func (m *GetToken721InfoRequest) Reset()

func (*GetToken721InfoRequest) String

func (m *GetToken721InfoRequest) String() string

func (*GetToken721InfoRequest) XXX_DiscardUnknown

func (m *GetToken721InfoRequest) XXX_DiscardUnknown()

func (*GetToken721InfoRequest) XXX_Marshal

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

func (*GetToken721InfoRequest) XXX_Merge

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

func (*GetToken721InfoRequest) XXX_Size

func (m *GetToken721InfoRequest) XXX_Size() int

func (*GetToken721InfoRequest) XXX_Unmarshal

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

type GetToken721MetadataResponse

type GetToken721MetadataResponse struct {
	// token metadata
	Metadata             string   `protobuf:"bytes,1,opt,name=metadata,proto3" json:"metadata,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

The message defines get token721 metadata response.

func (*GetToken721MetadataResponse) Descriptor

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

func (*GetToken721MetadataResponse) GetMetadata

func (m *GetToken721MetadataResponse) GetMetadata() string

func (*GetToken721MetadataResponse) ProtoMessage

func (*GetToken721MetadataResponse) ProtoMessage()

func (*GetToken721MetadataResponse) Reset

func (m *GetToken721MetadataResponse) Reset()

func (*GetToken721MetadataResponse) String

func (m *GetToken721MetadataResponse) String() string

func (*GetToken721MetadataResponse) XXX_DiscardUnknown

func (m *GetToken721MetadataResponse) XXX_DiscardUnknown()

func (*GetToken721MetadataResponse) XXX_Marshal

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

func (*GetToken721MetadataResponse) XXX_Merge

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

func (*GetToken721MetadataResponse) XXX_Size

func (m *GetToken721MetadataResponse) XXX_Size() int

func (*GetToken721MetadataResponse) XXX_Unmarshal

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

type GetToken721OwnerResponse

type GetToken721OwnerResponse struct {
	// token owner
	Owner                string   `protobuf:"bytes,1,opt,name=owner,proto3" json:"owner,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

The message defines get token721 owner response.

func (*GetToken721OwnerResponse) Descriptor

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

func (*GetToken721OwnerResponse) GetOwner

func (m *GetToken721OwnerResponse) GetOwner() string

func (*GetToken721OwnerResponse) ProtoMessage

func (*GetToken721OwnerResponse) ProtoMessage()

func (*GetToken721OwnerResponse) Reset

func (m *GetToken721OwnerResponse) Reset()

func (*GetToken721OwnerResponse) String

func (m *GetToken721OwnerResponse) String() string

func (*GetToken721OwnerResponse) XXX_DiscardUnknown

func (m *GetToken721OwnerResponse) XXX_DiscardUnknown()

func (*GetToken721OwnerResponse) XXX_Marshal

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

func (*GetToken721OwnerResponse) XXX_Merge

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

func (*GetToken721OwnerResponse) XXX_Size

func (m *GetToken721OwnerResponse) XXX_Size() int

func (*GetToken721OwnerResponse) XXX_Unmarshal

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

type GetTokenBalanceRequest

type GetTokenBalanceRequest struct {
	// account name
	Account string `protobuf:"bytes,1,opt,name=account,proto3" json:"account,omitempty"`
	// the token name
	Token string `protobuf:"bytes,2,opt,name=token,proto3" json:"token,omitempty"`
	// get data by longest chain's head block or last irreversible block
	ByLongestChain       bool     `protobuf:"varint,3,opt,name=by_longest_chain,json=byLongestChain,proto3" json:"by_longest_chain,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

The message defines get token balance request.

func (*GetTokenBalanceRequest) Descriptor

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

func (*GetTokenBalanceRequest) GetAccount

func (m *GetTokenBalanceRequest) GetAccount() string

func (*GetTokenBalanceRequest) GetByLongestChain

func (m *GetTokenBalanceRequest) GetByLongestChain() bool

func (*GetTokenBalanceRequest) GetToken

func (m *GetTokenBalanceRequest) GetToken() string

func (*GetTokenBalanceRequest) ProtoMessage

func (*GetTokenBalanceRequest) ProtoMessage()

func (*GetTokenBalanceRequest) Reset

func (m *GetTokenBalanceRequest) Reset()

func (*GetTokenBalanceRequest) String

func (m *GetTokenBalanceRequest) String() string

func (*GetTokenBalanceRequest) XXX_DiscardUnknown

func (m *GetTokenBalanceRequest) XXX_DiscardUnknown()

func (*GetTokenBalanceRequest) XXX_Marshal

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

func (*GetTokenBalanceRequest) XXX_Merge

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

func (*GetTokenBalanceRequest) XXX_Size

func (m *GetTokenBalanceRequest) XXX_Size() int

func (*GetTokenBalanceRequest) XXX_Unmarshal

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

type GetTokenBalanceResponse

type GetTokenBalanceResponse struct {
	// token balance
	Balance float64 `protobuf:"fixed64,1,opt,name=balance,proto3" json:"balance,omitempty"`
	// frozen balance information
	FrozenBalances       []*FrozenBalance `protobuf:"bytes,2,rep,name=frozen_balances,json=frozenBalances,proto3" json:"frozen_balances,omitempty"`
	XXX_NoUnkeyedLiteral struct{}         `json:"-"`
	XXX_unrecognized     []byte           `json:"-"`
	XXX_sizecache        int32            `json:"-"`
}

The message defines get token balance response.

func (*GetTokenBalanceResponse) Descriptor

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

func (*GetTokenBalanceResponse) GetBalance

func (m *GetTokenBalanceResponse) GetBalance() float64

func (*GetTokenBalanceResponse) GetFrozenBalances

func (m *GetTokenBalanceResponse) GetFrozenBalances() []*FrozenBalance

func (*GetTokenBalanceResponse) ProtoMessage

func (*GetTokenBalanceResponse) ProtoMessage()

func (*GetTokenBalanceResponse) Reset

func (m *GetTokenBalanceResponse) Reset()

func (*GetTokenBalanceResponse) String

func (m *GetTokenBalanceResponse) String() string

func (*GetTokenBalanceResponse) XXX_DiscardUnknown

func (m *GetTokenBalanceResponse) XXX_DiscardUnknown()

func (*GetTokenBalanceResponse) XXX_Marshal

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

func (*GetTokenBalanceResponse) XXX_Merge

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

func (*GetTokenBalanceResponse) XXX_Size

func (m *GetTokenBalanceResponse) XXX_Size() int

func (*GetTokenBalanceResponse) XXX_Unmarshal

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

type GetTokenInfoRequest

type GetTokenInfoRequest struct {
	// token symbol
	Symbol string `protobuf:"bytes,1,opt,name=symbol,proto3" json:"symbol,omitempty"`
	// get tokeninfo by longest chain's head block or last irreversible block
	ByLongestChain       bool     `protobuf:"varint,2,opt,name=by_longest_chain,json=byLongestChain,proto3" json:"by_longest_chain,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

The message defines the get tokeninfo request.

func (*GetTokenInfoRequest) Descriptor

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

func (*GetTokenInfoRequest) GetByLongestChain

func (m *GetTokenInfoRequest) GetByLongestChain() bool

func (*GetTokenInfoRequest) GetSymbol

func (m *GetTokenInfoRequest) GetSymbol() string

func (*GetTokenInfoRequest) ProtoMessage

func (*GetTokenInfoRequest) ProtoMessage()

func (*GetTokenInfoRequest) Reset

func (m *GetTokenInfoRequest) Reset()

func (*GetTokenInfoRequest) String

func (m *GetTokenInfoRequest) String() string

func (*GetTokenInfoRequest) XXX_DiscardUnknown

func (m *GetTokenInfoRequest) XXX_DiscardUnknown()

func (*GetTokenInfoRequest) XXX_Marshal

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

func (*GetTokenInfoRequest) XXX_Merge

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

func (*GetTokenInfoRequest) XXX_Size

func (m *GetTokenInfoRequest) XXX_Size() int

func (*GetTokenInfoRequest) XXX_Unmarshal

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

type ListContractStorageRequest

type ListContractStorageRequest struct {
	// contract id
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// Optional. keys will be in [from, to) and prefixed with `prefix`
	From   string `protobuf:"bytes,2,opt,name=from,proto3" json:"from,omitempty"`
	To     string `protobuf:"bytes,3,opt,name=to,proto3" json:"to,omitempty"`
	Prefix string `protobuf:"bytes,4,opt,name=prefix,proto3" json:"prefix,omitempty"`
	// 'kv' or 'map'
	StorageType ListContractStorageRequest_StorageType `` /* 126-byte string literal not displayed */
	// max count to return. up to 500
	Limit int64 `protobuf:"varint,6,opt,name=limit,proto3" json:"limit,omitempty"`
	// get data by longest chain's head block or last irreversible block
	ByLongestChain       bool     `protobuf:"varint,7,opt,name=by_longest_chain,json=byLongestChain,proto3" json:"by_longest_chain,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ListContractStorageRequest) Descriptor

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

func (*ListContractStorageRequest) GetByLongestChain

func (m *ListContractStorageRequest) GetByLongestChain() bool

func (*ListContractStorageRequest) GetFrom

func (m *ListContractStorageRequest) GetFrom() string

func (*ListContractStorageRequest) GetId

func (*ListContractStorageRequest) GetLimit

func (m *ListContractStorageRequest) GetLimit() int64

func (*ListContractStorageRequest) GetPrefix

func (m *ListContractStorageRequest) GetPrefix() string

func (*ListContractStorageRequest) GetStorageType

func (*ListContractStorageRequest) GetTo

func (*ListContractStorageRequest) ProtoMessage

func (*ListContractStorageRequest) ProtoMessage()

func (*ListContractStorageRequest) Reset

func (m *ListContractStorageRequest) Reset()

func (*ListContractStorageRequest) String

func (m *ListContractStorageRequest) String() string

func (*ListContractStorageRequest) XXX_DiscardUnknown

func (m *ListContractStorageRequest) XXX_DiscardUnknown()

func (*ListContractStorageRequest) XXX_Marshal

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

func (*ListContractStorageRequest) XXX_Merge

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

func (*ListContractStorageRequest) XXX_Size

func (m *ListContractStorageRequest) XXX_Size() int

func (*ListContractStorageRequest) XXX_Unmarshal

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

type ListContractStorageRequest_StorageType

type ListContractStorageRequest_StorageType int32
const (
	// written by storage.put(..., ...)
	ListContractStorageRequest_KV ListContractStorageRequest_StorageType = 0
	// written by storage.mapPut(..., ..., ...)
	ListContractStorageRequest_MAP ListContractStorageRequest_StorageType = 1
)

func (ListContractStorageRequest_StorageType) EnumDescriptor

func (ListContractStorageRequest_StorageType) EnumDescriptor() ([]byte, []int)

func (ListContractStorageRequest_StorageType) String

type ListContractStorageResponse

type ListContractStorageResponse struct {
	Datas []*ListContractStorageResponse_Data `protobuf:"bytes,1,rep,name=datas,proto3" json:"datas,omitempty"`
	// block hash
	BlockHash string `protobuf:"bytes,2,opt,name=block_hash,json=blockHash,proto3" json:"block_hash,omitempty"`
	// block number
	BlockNumber          int64    `protobuf:"varint,3,opt,name=block_number,json=blockNumber,proto3" json:"block_number,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ListContractStorageResponse) Descriptor

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

func (*ListContractStorageResponse) GetBlockHash

func (m *ListContractStorageResponse) GetBlockHash() string

func (*ListContractStorageResponse) GetBlockNumber

func (m *ListContractStorageResponse) GetBlockNumber() int64

func (*ListContractStorageResponse) GetDatas

func (*ListContractStorageResponse) ProtoMessage

func (*ListContractStorageResponse) ProtoMessage()

func (*ListContractStorageResponse) Reset

func (m *ListContractStorageResponse) Reset()

func (*ListContractStorageResponse) String

func (m *ListContractStorageResponse) String() string

func (*ListContractStorageResponse) XXX_DiscardUnknown

func (m *ListContractStorageResponse) XXX_DiscardUnknown()

func (*ListContractStorageResponse) XXX_Marshal

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

func (*ListContractStorageResponse) XXX_Merge

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

func (*ListContractStorageResponse) XXX_Size

func (m *ListContractStorageResponse) XXX_Size() int

func (*ListContractStorageResponse) XXX_Unmarshal

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

type ListContractStorageResponse_Data

type ListContractStorageResponse_Data struct {
	// the key in StateDB
	Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	// the value from StateDB
	Value                string   `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ListContractStorageResponse_Data) Descriptor

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

func (*ListContractStorageResponse_Data) GetKey

func (*ListContractStorageResponse_Data) GetValue

func (*ListContractStorageResponse_Data) ProtoMessage

func (*ListContractStorageResponse_Data) ProtoMessage()

func (*ListContractStorageResponse_Data) Reset

func (*ListContractStorageResponse_Data) String

func (*ListContractStorageResponse_Data) XXX_DiscardUnknown

func (m *ListContractStorageResponse_Data) XXX_DiscardUnknown()

func (*ListContractStorageResponse_Data) XXX_Marshal

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

func (*ListContractStorageResponse_Data) XXX_Merge

func (*ListContractStorageResponse_Data) XXX_Size

func (m *ListContractStorageResponse_Data) XXX_Size() int

func (*ListContractStorageResponse_Data) XXX_Unmarshal

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

type NetworkInfo

type NetworkInfo struct {
	// local network ID
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// peer connection count
	PeerCount            int32    `protobuf:"varint,2,opt,name=peer_count,json=peerCount,proto3" json:"peer_count,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

The message defines network connection information.

func (*NetworkInfo) Descriptor

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

func (*NetworkInfo) GetId

func (m *NetworkInfo) GetId() string

func (*NetworkInfo) GetPeerCount

func (m *NetworkInfo) GetPeerCount() int32

func (*NetworkInfo) ProtoMessage

func (*NetworkInfo) ProtoMessage()

func (*NetworkInfo) Reset

func (m *NetworkInfo) Reset()

func (*NetworkInfo) String

func (m *NetworkInfo) String() string

func (*NetworkInfo) XXX_DiscardUnknown

func (m *NetworkInfo) XXX_DiscardUnknown()

func (*NetworkInfo) XXX_Marshal

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

func (*NetworkInfo) XXX_Merge

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

func (*NetworkInfo) XXX_Size

func (m *NetworkInfo) XXX_Size() int

func (*NetworkInfo) XXX_Unmarshal

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

type NodeInfoResponse

type NodeInfoResponse struct {
	// build time
	BuildTime string `protobuf:"bytes,1,opt,name=build_time,json=buildTime,proto3" json:"build_time,omitempty"`
	// git hash
	GitHash string `protobuf:"bytes,2,opt,name=git_hash,json=gitHash,proto3" json:"git_hash,omitempty"`
	// node mode
	Mode string `protobuf:"bytes,3,opt,name=mode,proto3" json:"mode,omitempty"`
	// network connection information
	Network *NetworkInfo `protobuf:"bytes,4,opt,name=network,proto3" json:"network,omitempty"`
	// code version string
	CodeVersion string `protobuf:"bytes,5,opt,name=code_version,json=codeVersion,proto3" json:"code_version,omitempty"`
	// server time
	ServerTime           int64    `protobuf:"varint,6,opt,name=server_time,json=serverTime,proto3" json:"server_time,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

The message containing the node's information.

func (*NodeInfoResponse) Descriptor

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

func (*NodeInfoResponse) GetBuildTime

func (m *NodeInfoResponse) GetBuildTime() string

func (*NodeInfoResponse) GetCodeVersion

func (m *NodeInfoResponse) GetCodeVersion() string

func (*NodeInfoResponse) GetGitHash

func (m *NodeInfoResponse) GetGitHash() string

func (*NodeInfoResponse) GetMode

func (m *NodeInfoResponse) GetMode() string

func (*NodeInfoResponse) GetNetwork

func (m *NodeInfoResponse) GetNetwork() *NetworkInfo

func (*NodeInfoResponse) GetServerTime

func (m *NodeInfoResponse) GetServerTime() int64

func (*NodeInfoResponse) ProtoMessage

func (*NodeInfoResponse) ProtoMessage()

func (*NodeInfoResponse) Reset

func (m *NodeInfoResponse) Reset()

func (*NodeInfoResponse) String

func (m *NodeInfoResponse) String() string

func (*NodeInfoResponse) XXX_DiscardUnknown

func (m *NodeInfoResponse) XXX_DiscardUnknown()

func (*NodeInfoResponse) XXX_Marshal

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

func (*NodeInfoResponse) XXX_Merge

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

func (*NodeInfoResponse) XXX_Size

func (m *NodeInfoResponse) XXX_Size() int

func (*NodeInfoResponse) XXX_Unmarshal

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

type RAMInfoResponse

type RAMInfoResponse struct {
	// how many bytes have been used
	UsedRam int64 `protobuf:"varint,1,opt,name=used_ram,json=usedRam,proto3" json:"used_ram,omitempty"`
	// how many bytes have not been used
	AvailableRam int64 `protobuf:"varint,2,opt,name=available_ram,json=availableRam,proto3" json:"available_ram,omitempty"`
	// total ram byte
	TotalRam int64 `protobuf:"varint,3,opt,name=total_ram,json=totalRam,proto3" json:"total_ram,omitempty"`
	// User can sell NUM bytes RAM to system to get `NUM * sell_price` AIOUs
	SellPrice float64 `protobuf:"fixed64,4,opt,name=sell_price,json=sellPrice,proto3" json:"sell_price,omitempty"`
	// User can spend approximate `NUM * buy_price` AIOUs for NUM bytes RAM
	BuyPrice             float64  `protobuf:"fixed64,5,opt,name=buy_price,json=buyPrice,proto3" json:"buy_price,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

The message containing blockchain's ram information.

func (*RAMInfoResponse) Descriptor

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

func (*RAMInfoResponse) GetAvailableRam

func (m *RAMInfoResponse) GetAvailableRam() int64

func (*RAMInfoResponse) GetBuyPrice

func (m *RAMInfoResponse) GetBuyPrice() float64

func (*RAMInfoResponse) GetSellPrice

func (m *RAMInfoResponse) GetSellPrice() float64

func (*RAMInfoResponse) GetTotalRam

func (m *RAMInfoResponse) GetTotalRam() int64

func (*RAMInfoResponse) GetUsedRam

func (m *RAMInfoResponse) GetUsedRam() int64

func (*RAMInfoResponse) ProtoMessage

func (*RAMInfoResponse) ProtoMessage()

func (*RAMInfoResponse) Reset

func (m *RAMInfoResponse) Reset()

func (*RAMInfoResponse) String

func (m *RAMInfoResponse) String() string

func (*RAMInfoResponse) XXX_DiscardUnknown

func (m *RAMInfoResponse) XXX_DiscardUnknown()

func (*RAMInfoResponse) XXX_Marshal

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

func (*RAMInfoResponse) XXX_Merge

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

func (*RAMInfoResponse) XXX_Size

func (m *RAMInfoResponse) XXX_Size() int

func (*RAMInfoResponse) XXX_Unmarshal

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

type SendTransactionResponse

type SendTransactionResponse struct {
	// the final transaction hash
	Hash string `protobuf:"bytes,1,opt,name=hash,proto3" json:"hash,omitempty"`
	// the tx_receipt of execution in advance
	PreTxReceipt         *TxReceipt `protobuf:"bytes,2,opt,name=pre_tx_receipt,json=preTxReceipt,proto3" json:"pre_tx_receipt,omitempty"`
	XXX_NoUnkeyedLiteral struct{}   `json:"-"`
	XXX_unrecognized     []byte     `json:"-"`
	XXX_sizecache        int32      `json:"-"`
}

The message defines send transaction response.

func (*SendTransactionResponse) Descriptor

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

func (*SendTransactionResponse) GetHash

func (m *SendTransactionResponse) GetHash() string

func (*SendTransactionResponse) GetPreTxReceipt

func (m *SendTransactionResponse) GetPreTxReceipt() *TxReceipt

func (*SendTransactionResponse) ProtoMessage

func (*SendTransactionResponse) ProtoMessage()

func (*SendTransactionResponse) Reset

func (m *SendTransactionResponse) Reset()

func (*SendTransactionResponse) String

func (m *SendTransactionResponse) String() string

func (*SendTransactionResponse) XXX_DiscardUnknown

func (m *SendTransactionResponse) XXX_DiscardUnknown()

func (*SendTransactionResponse) XXX_Marshal

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

func (*SendTransactionResponse) XXX_Merge

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

func (*SendTransactionResponse) XXX_Size

func (m *SendTransactionResponse) XXX_Size() int

func (*SendTransactionResponse) XXX_Unmarshal

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

type Signature

type Signature struct {
	// signature algorithm
	Algorithm Signature_Algorithm `protobuf:"varint,1,opt,name=algorithm,proto3,enum=rpcpb.Signature_Algorithm" json:"algorithm,omitempty"`
	// signature bytes
	Signature []byte `protobuf:"bytes,2,opt,name=signature,proto3" json:"signature,omitempty"`
	// public key
	PublicKey            []byte   `protobuf:"bytes,3,opt,name=public_key,json=publicKey,proto3" json:"public_key,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

The message defines signature struct.

func (*Signature) Descriptor

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

func (*Signature) GetAlgorithm

func (m *Signature) GetAlgorithm() Signature_Algorithm

func (*Signature) GetPublicKey

func (m *Signature) GetPublicKey() []byte

func (*Signature) GetSignature

func (m *Signature) GetSignature() []byte

func (*Signature) ProtoMessage

func (*Signature) ProtoMessage()

func (*Signature) Reset

func (m *Signature) Reset()

func (*Signature) String

func (m *Signature) String() string

func (*Signature) XXX_DiscardUnknown

func (m *Signature) XXX_DiscardUnknown()

func (*Signature) XXX_Marshal

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

func (*Signature) XXX_Merge

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

func (*Signature) XXX_Size

func (m *Signature) XXX_Size() int

func (*Signature) XXX_Unmarshal

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

type Signature_Algorithm

type Signature_Algorithm int32

The enumeration defines the signature algorithm.

const (
	// unknown
	Signature_UNKNOWN Signature_Algorithm = 0
	// secp256k1
	Signature_SECP256K1 Signature_Algorithm = 1
	// ed25519
	Signature_ED25519 Signature_Algorithm = 2
)

func (Signature_Algorithm) EnumDescriptor

func (Signature_Algorithm) EnumDescriptor() ([]byte, []int)

func (Signature_Algorithm) String

func (x Signature_Algorithm) String() string

type SubscribeRequest

type SubscribeRequest struct {
	Topics               []Event_Topic            `protobuf:"varint,1,rep,packed,name=topics,proto3,enum=rpcpb.Event_Topic" json:"topics,omitempty"`
	Filter               *SubscribeRequest_Filter `protobuf:"bytes,2,opt,name=filter,proto3" json:"filter,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                 `json:"-"`
	XXX_unrecognized     []byte                   `json:"-"`
	XXX_sizecache        int32                    `json:"-"`
}

The message defines subscribe request.

func (*SubscribeRequest) Descriptor

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

func (*SubscribeRequest) GetFilter

func (m *SubscribeRequest) GetFilter() *SubscribeRequest_Filter

func (*SubscribeRequest) GetTopics

func (m *SubscribeRequest) GetTopics() []Event_Topic

func (*SubscribeRequest) ProtoMessage

func (*SubscribeRequest) ProtoMessage()

func (*SubscribeRequest) Reset

func (m *SubscribeRequest) Reset()

func (*SubscribeRequest) String

func (m *SubscribeRequest) String() string

func (*SubscribeRequest) XXX_DiscardUnknown

func (m *SubscribeRequest) XXX_DiscardUnknown()

func (*SubscribeRequest) XXX_Marshal

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

func (*SubscribeRequest) XXX_Merge

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

func (*SubscribeRequest) XXX_Size

func (m *SubscribeRequest) XXX_Size() int

func (*SubscribeRequest) XXX_Unmarshal

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

type SubscribeRequest_Filter

type SubscribeRequest_Filter struct {
	// contract id
	ContractId           string   `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*SubscribeRequest_Filter) Descriptor

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

func (*SubscribeRequest_Filter) GetContractId

func (m *SubscribeRequest_Filter) GetContractId() string

func (*SubscribeRequest_Filter) ProtoMessage

func (*SubscribeRequest_Filter) ProtoMessage()

func (*SubscribeRequest_Filter) Reset

func (m *SubscribeRequest_Filter) Reset()

func (*SubscribeRequest_Filter) String

func (m *SubscribeRequest_Filter) String() string

func (*SubscribeRequest_Filter) XXX_DiscardUnknown

func (m *SubscribeRequest_Filter) XXX_DiscardUnknown()

func (*SubscribeRequest_Filter) XXX_Marshal

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

func (*SubscribeRequest_Filter) XXX_Merge

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

func (*SubscribeRequest_Filter) XXX_Size

func (m *SubscribeRequest_Filter) XXX_Size() int

func (*SubscribeRequest_Filter) XXX_Unmarshal

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

type SubscribeResponse

type SubscribeResponse struct {
	Event                *Event   `protobuf:"bytes,1,opt,name=event,proto3" json:"event,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

The message defines subscribe response.

func (*SubscribeResponse) Descriptor

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

func (*SubscribeResponse) GetEvent

func (m *SubscribeResponse) GetEvent() *Event

func (*SubscribeResponse) ProtoMessage

func (*SubscribeResponse) ProtoMessage()

func (*SubscribeResponse) Reset

func (m *SubscribeResponse) Reset()

func (*SubscribeResponse) String

func (m *SubscribeResponse) String() string

func (*SubscribeResponse) XXX_DiscardUnknown

func (m *SubscribeResponse) XXX_DiscardUnknown()

func (*SubscribeResponse) XXX_Marshal

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

func (*SubscribeResponse) XXX_Merge

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

func (*SubscribeResponse) XXX_Size

func (m *SubscribeResponse) XXX_Size() int

func (*SubscribeResponse) XXX_Unmarshal

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

type TokenInfo

type TokenInfo struct {
	// token symbol
	Symbol string `protobuf:"bytes,1,opt,name=symbol,proto3" json:"symbol,omitempty"`
	// token full name
	FullName string `protobuf:"bytes,2,opt,name=full_name,json=fullName,proto3" json:"full_name,omitempty"`
	// token issuer
	Issuer string `protobuf:"bytes,3,opt,name=issuer,proto3" json:"issuer,omitempty"`
	// the amount of total supply, the result is total_supply_float multiplied by deciaml
	TotalSupply int64 `protobuf:"varint,4,opt,name=total_supply,json=totalSupply,proto3" json:"total_supply,omitempty"`
	// the amount of current supply, the result is current_supply_float multiplied by deciaml
	CurrentSupply int64 `protobuf:"varint,5,opt,name=current_supply,json=currentSupply,proto3" json:"current_supply,omitempty"`
	// token decimal
	Decimal int32 `protobuf:"varint,6,opt,name=decimal,proto3" json:"decimal,omitempty"`
	// whether the token can be transfered
	CanTransfer bool `protobuf:"varint,7,opt,name=can_transfer,json=canTransfer,proto3" json:"can_transfer,omitempty"`
	// whether the token can only be transfered by issuer
	OnlyIssuerCanTransfer bool `` /* 129-byte string literal not displayed */
	// the amount of total supply
	TotalSupplyFloat float64 `protobuf:"fixed64,9,opt,name=total_supply_float,json=totalSupplyFloat,proto3" json:"total_supply_float,omitempty"`
	// the amount of current supply
	CurrentSupplyFloat   float64  `protobuf:"fixed64,10,opt,name=current_supply_float,json=currentSupplyFloat,proto3" json:"current_supply_float,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

The message defines the token information.

func (*TokenInfo) Descriptor

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

func (*TokenInfo) GetCanTransfer

func (m *TokenInfo) GetCanTransfer() bool

func (*TokenInfo) GetCurrentSupply

func (m *TokenInfo) GetCurrentSupply() int64

func (*TokenInfo) GetCurrentSupplyFloat

func (m *TokenInfo) GetCurrentSupplyFloat() float64

func (*TokenInfo) GetDecimal

func (m *TokenInfo) GetDecimal() int32

func (*TokenInfo) GetFullName

func (m *TokenInfo) GetFullName() string

func (*TokenInfo) GetIssuer

func (m *TokenInfo) GetIssuer() string

func (*TokenInfo) GetOnlyIssuerCanTransfer

func (m *TokenInfo) GetOnlyIssuerCanTransfer() bool

func (*TokenInfo) GetSymbol

func (m *TokenInfo) GetSymbol() string

func (*TokenInfo) GetTotalSupply

func (m *TokenInfo) GetTotalSupply() int64

func (*TokenInfo) GetTotalSupplyFloat

func (m *TokenInfo) GetTotalSupplyFloat() float64

func (*TokenInfo) ProtoMessage

func (*TokenInfo) ProtoMessage()

func (*TokenInfo) Reset

func (m *TokenInfo) Reset()

func (*TokenInfo) String

func (m *TokenInfo) String() string

func (*TokenInfo) XXX_DiscardUnknown

func (m *TokenInfo) XXX_DiscardUnknown()

func (*TokenInfo) XXX_Marshal

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

func (*TokenInfo) XXX_Merge

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

func (*TokenInfo) XXX_Size

func (m *TokenInfo) XXX_Size() int

func (*TokenInfo) XXX_Unmarshal

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

type Transaction

type Transaction struct {
	// transaction hash
	Hash string `protobuf:"bytes,1,opt,name=hash,proto3" json:"hash,omitempty"`
	// transaction timestamp
	Time int64 `protobuf:"varint,2,opt,name=time,proto3" json:"time,omitempty"`
	// expiration timestamp
	Expiration int64 `protobuf:"varint,3,opt,name=expiration,proto3" json:"expiration,omitempty"`
	// gas gas_ratio
	GasRatio float64 `protobuf:"fixed64,4,opt,name=gas_ratio,json=gasRatio,proto3" json:"gas_ratio,omitempty"`
	// gas limit
	GasLimit float64 `protobuf:"fixed64,5,opt,name=gas_limit,json=gasLimit,proto3" json:"gas_limit,omitempty"`
	// delay nanoseconds
	Delay int64 `protobuf:"varint,6,opt,name=delay,proto3" json:"delay,omitempty"`
	// chain id
	ChainId uint32 `protobuf:"varint,7,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	// action list
	Actions []*Action `protobuf:"bytes,8,rep,name=actions,proto3" json:"actions,omitempty"`
	// signer list
	Signers []string `protobuf:"bytes,9,rep,name=signers,proto3" json:"signers,omitempty"`
	// publisher
	Publisher string `protobuf:"bytes,10,opt,name=publisher,proto3" json:"publisher,omitempty"`
	// referred transaction hash
	ReferredTx string `protobuf:"bytes,11,opt,name=referred_tx,json=referredTx,proto3" json:"referred_tx,omitempty"`
	// amount limit
	AmountLimit []*AmountLimit `protobuf:"bytes,12,rep,name=amount_limit,json=amountLimit,proto3" json:"amount_limit,omitempty"`
	// transaction receipt
	TxReceipt            *TxReceipt `protobuf:"bytes,13,opt,name=tx_receipt,json=txReceipt,proto3" json:"tx_receipt,omitempty"`
	XXX_NoUnkeyedLiteral struct{}   `json:"-"`
	XXX_unrecognized     []byte     `json:"-"`
	XXX_sizecache        int32      `json:"-"`
}

The message defines transaction struct.

func (*Transaction) Descriptor

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

func (*Transaction) GetActions

func (m *Transaction) GetActions() []*Action

func (*Transaction) GetAmountLimit

func (m *Transaction) GetAmountLimit() []*AmountLimit

func (*Transaction) GetChainId

func (m *Transaction) GetChainId() uint32

func (*Transaction) GetDelay

func (m *Transaction) GetDelay() int64

func (*Transaction) GetExpiration

func (m *Transaction) GetExpiration() int64

func (*Transaction) GetGasLimit

func (m *Transaction) GetGasLimit() float64

func (*Transaction) GetGasRatio

func (m *Transaction) GetGasRatio() float64

func (*Transaction) GetHash

func (m *Transaction) GetHash() string

func (*Transaction) GetPublisher

func (m *Transaction) GetPublisher() string

func (*Transaction) GetReferredTx

func (m *Transaction) GetReferredTx() string

func (*Transaction) GetSigners

func (m *Transaction) GetSigners() []string

func (*Transaction) GetTime

func (m *Transaction) GetTime() int64

func (*Transaction) GetTxReceipt

func (m *Transaction) GetTxReceipt() *TxReceipt

func (*Transaction) ProtoMessage

func (*Transaction) ProtoMessage()

func (*Transaction) Reset

func (m *Transaction) Reset()

func (*Transaction) String

func (m *Transaction) String() string

func (*Transaction) XXX_DiscardUnknown

func (m *Transaction) XXX_DiscardUnknown()

func (*Transaction) XXX_Marshal

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

func (*Transaction) XXX_Merge

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

func (*Transaction) XXX_Size

func (m *Transaction) XXX_Size() int

func (*Transaction) XXX_Unmarshal

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

type TransactionRequest

type TransactionRequest struct {
	// transaction timestamp
	Time int64 `protobuf:"varint,1,opt,name=time,proto3" json:"time,omitempty"`
	// expiration timestamp
	Expiration int64 `protobuf:"varint,2,opt,name=expiration,proto3" json:"expiration,omitempty"`
	// gas price
	GasRatio float64 `protobuf:"fixed64,3,opt,name=gas_ratio,json=gasRatio,proto3" json:"gas_ratio,omitempty"`
	// gas limit
	GasLimit float64 `protobuf:"fixed64,4,opt,name=gas_limit,json=gasLimit,proto3" json:"gas_limit,omitempty"`
	// delay nanoseconds
	Delay int64 `protobuf:"varint,5,opt,name=delay,proto3" json:"delay,omitempty"`
	// chain id
	ChainId uint32 `protobuf:"varint,6,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	// action list
	Actions []*Action `protobuf:"bytes,7,rep,name=actions,proto3" json:"actions,omitempty"`
	// amount limit
	AmountLimit []*AmountLimit `protobuf:"bytes,8,rep,name=amount_limit,json=amountLimit,proto3" json:"amount_limit,omitempty"`
	// signer list
	Signers []string `protobuf:"bytes,9,rep,name=signers,proto3" json:"signers,omitempty"`
	// signatures of signers
	Signatures []*Signature `protobuf:"bytes,10,rep,name=signatures,proto3" json:"signatures,omitempty"`
	// publisher
	Publisher string `protobuf:"bytes,11,opt,name=publisher,proto3" json:"publisher,omitempty"`
	// signatures of publisher
	PublisherSigs        []*Signature `protobuf:"bytes,12,rep,name=publisher_sigs,json=publisherSigs,proto3" json:"publisher_sigs,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

The message defines the transaction request.

func (*TransactionRequest) Descriptor

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

func (*TransactionRequest) GetActions

func (m *TransactionRequest) GetActions() []*Action

func (*TransactionRequest) GetAmountLimit

func (m *TransactionRequest) GetAmountLimit() []*AmountLimit

func (*TransactionRequest) GetChainId

func (m *TransactionRequest) GetChainId() uint32

func (*TransactionRequest) GetDelay

func (m *TransactionRequest) GetDelay() int64

func (*TransactionRequest) GetExpiration

func (m *TransactionRequest) GetExpiration() int64

func (*TransactionRequest) GetGasLimit

func (m *TransactionRequest) GetGasLimit() float64

func (*TransactionRequest) GetGasRatio

func (m *TransactionRequest) GetGasRatio() float64

func (*TransactionRequest) GetPublisher

func (m *TransactionRequest) GetPublisher() string

func (*TransactionRequest) GetPublisherSigs

func (m *TransactionRequest) GetPublisherSigs() []*Signature

func (*TransactionRequest) GetSignatures

func (m *TransactionRequest) GetSignatures() []*Signature

func (*TransactionRequest) GetSigners

func (m *TransactionRequest) GetSigners() []string

func (*TransactionRequest) GetTime

func (m *TransactionRequest) GetTime() int64

func (*TransactionRequest) ProtoMessage

func (*TransactionRequest) ProtoMessage()

func (*TransactionRequest) Reset

func (m *TransactionRequest) Reset()

func (*TransactionRequest) String

func (m *TransactionRequest) String() string

func (*TransactionRequest) XXX_DiscardUnknown

func (m *TransactionRequest) XXX_DiscardUnknown()

func (*TransactionRequest) XXX_Marshal

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

func (*TransactionRequest) XXX_Merge

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

func (*TransactionRequest) XXX_Size

func (m *TransactionRequest) XXX_Size() int

func (*TransactionRequest) XXX_Unmarshal

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

type TransactionResponse

type TransactionResponse struct {
	// transaction status
	Status TransactionResponse_Status `protobuf:"varint,1,opt,name=status,proto3,enum=rpcpb.TransactionResponse_Status" json:"status,omitempty"`
	// transaction
	Transaction *Transaction `protobuf:"bytes,2,opt,name=transaction,proto3" json:"transaction,omitempty"`
	// block number
	BlockNumber          int64    `protobuf:"varint,3,opt,name=block_number,json=blockNumber,proto3" json:"block_number,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

The message defines transaction response.

func (*TransactionResponse) Descriptor

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

func (*TransactionResponse) GetBlockNumber

func (m *TransactionResponse) GetBlockNumber() int64

func (*TransactionResponse) GetStatus

func (*TransactionResponse) GetTransaction

func (m *TransactionResponse) GetTransaction() *Transaction

func (*TransactionResponse) ProtoMessage

func (*TransactionResponse) ProtoMessage()

func (*TransactionResponse) Reset

func (m *TransactionResponse) Reset()

func (*TransactionResponse) String

func (m *TransactionResponse) String() string

func (*TransactionResponse) XXX_DiscardUnknown

func (m *TransactionResponse) XXX_DiscardUnknown()

func (*TransactionResponse) XXX_Marshal

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

func (*TransactionResponse) XXX_Merge

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

func (*TransactionResponse) XXX_Size

func (m *TransactionResponse) XXX_Size() int

func (*TransactionResponse) XXX_Unmarshal

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

type TransactionResponse_Status

type TransactionResponse_Status int32

The enumeration defines transaction status.

const (
	// pending in transaction pool
	TransactionResponse_PENDING TransactionResponse_Status = 0
	// packed in a block that has not been confirmed
	TransactionResponse_PACKED TransactionResponse_Status = 1
	// packed in a block that is irreversible
	TransactionResponse_IRREVERSIBLE TransactionResponse_Status = 2
)

func (TransactionResponse_Status) EnumDescriptor

func (TransactionResponse_Status) EnumDescriptor() ([]byte, []int)

func (TransactionResponse_Status) String

type TxHashRequest

type TxHashRequest struct {
	// tx hash
	Hash                 string   `protobuf:"bytes,1,opt,name=hash,proto3" json:"hash,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

The request message containing the tx's hash.

func (*TxHashRequest) Descriptor

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

func (*TxHashRequest) GetHash

func (m *TxHashRequest) GetHash() string

func (*TxHashRequest) ProtoMessage

func (*TxHashRequest) ProtoMessage()

func (*TxHashRequest) Reset

func (m *TxHashRequest) Reset()

func (*TxHashRequest) String

func (m *TxHashRequest) String() string

func (*TxHashRequest) XXX_DiscardUnknown

func (m *TxHashRequest) XXX_DiscardUnknown()

func (*TxHashRequest) XXX_Marshal

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

func (*TxHashRequest) XXX_Merge

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

func (*TxHashRequest) XXX_Size

func (m *TxHashRequest) XXX_Size() int

func (*TxHashRequest) XXX_Unmarshal

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

type TxReceipt

type TxReceipt struct {
	// transaction hash
	TxHash string `protobuf:"bytes,1,opt,name=tx_hash,json=txHash,proto3" json:"tx_hash,omitempty"`
	// gas usage
	GasUsage float64 `protobuf:"fixed64,2,opt,name=gas_usage,json=gasUsage,proto3" json:"gas_usage,omitempty"`
	// ram usage
	RamUsage map[string]int64 `` /* 174-byte string literal not displayed */
	// status code
	StatusCode TxReceipt_StatusCode `protobuf:"varint,4,opt,name=status_code,json=statusCode,proto3,enum=rpcpb.TxReceipt_StatusCode" json:"status_code,omitempty"`
	// message
	Message string `protobuf:"bytes,5,opt,name=message,proto3" json:"message,omitempty"`
	// transaction returns
	Returns []string `protobuf:"bytes,6,rep,name=returns,proto3" json:"returns,omitempty"`
	// transaction receipts
	Receipts             []*TxReceipt_Receipt `protobuf:"bytes,7,rep,name=receipts,proto3" json:"receipts,omitempty"`
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

The message defines the transaction receipt struct.

func (*TxReceipt) Descriptor

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

func (*TxReceipt) GetGasUsage

func (m *TxReceipt) GetGasUsage() float64

func (*TxReceipt) GetMessage

func (m *TxReceipt) GetMessage() string

func (*TxReceipt) GetRamUsage

func (m *TxReceipt) GetRamUsage() map[string]int64

func (*TxReceipt) GetReceipts

func (m *TxReceipt) GetReceipts() []*TxReceipt_Receipt

func (*TxReceipt) GetReturns

func (m *TxReceipt) GetReturns() []string

func (*TxReceipt) GetStatusCode

func (m *TxReceipt) GetStatusCode() TxReceipt_StatusCode

func (*TxReceipt) GetTxHash

func (m *TxReceipt) GetTxHash() string

func (*TxReceipt) ProtoMessage

func (*TxReceipt) ProtoMessage()

func (*TxReceipt) Reset

func (m *TxReceipt) Reset()

func (*TxReceipt) String

func (m *TxReceipt) String() string

func (*TxReceipt) XXX_DiscardUnknown

func (m *TxReceipt) XXX_DiscardUnknown()

func (*TxReceipt) XXX_Marshal

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

func (*TxReceipt) XXX_Merge

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

func (*TxReceipt) XXX_Size

func (m *TxReceipt) XXX_Size() int

func (*TxReceipt) XXX_Unmarshal

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

type TxReceipt_Receipt

type TxReceipt_Receipt struct {
	// function name
	FuncName string `protobuf:"bytes,1,opt,name=func_name,json=funcName,proto3" json:"func_name,omitempty"`
	// content
	Content              string   `protobuf:"bytes,2,opt,name=content,proto3" json:"content,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

The message defines transaction execution receipt.

func (*TxReceipt_Receipt) Descriptor

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

func (*TxReceipt_Receipt) GetContent

func (m *TxReceipt_Receipt) GetContent() string

func (*TxReceipt_Receipt) GetFuncName

func (m *TxReceipt_Receipt) GetFuncName() string

func (*TxReceipt_Receipt) ProtoMessage

func (*TxReceipt_Receipt) ProtoMessage()

func (*TxReceipt_Receipt) Reset

func (m *TxReceipt_Receipt) Reset()

func (*TxReceipt_Receipt) String

func (m *TxReceipt_Receipt) String() string

func (*TxReceipt_Receipt) XXX_DiscardUnknown

func (m *TxReceipt_Receipt) XXX_DiscardUnknown()

func (*TxReceipt_Receipt) XXX_Marshal

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

func (*TxReceipt_Receipt) XXX_Merge

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

func (*TxReceipt_Receipt) XXX_Size

func (m *TxReceipt_Receipt) XXX_Size() int

func (*TxReceipt_Receipt) XXX_Unmarshal

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

type TxReceipt_StatusCode

type TxReceipt_StatusCode int32

The enumeration defines transaction receipt status code.

const (
	// success
	TxReceipt_SUCCESS TxReceipt_StatusCode = 0
	// run out of gas
	TxReceipt_GAS_RUN_OUT TxReceipt_StatusCode = 1
	// balance not enough
	TxReceipt_BALANCE_NOT_ENOUGH TxReceipt_StatusCode = 2
	// wrong parameter
	TxReceipt_WRONG_PARAMETER TxReceipt_StatusCode = 3
	// runtime error
	TxReceipt_RUNTIME_ERROR TxReceipt_StatusCode = 4
	// run out of time
	TxReceipt_TIMEOUT TxReceipt_StatusCode = 5
	// wrong transaction format
	TxReceipt_WRONG_TX_FORMAT TxReceipt_StatusCode = 6
	// more than one set code action in a transaction
	TxReceipt_DUPLICATE_SET_CODE TxReceipt_StatusCode = 7
	// unknown error
	TxReceipt_UNKNOWN_ERROR TxReceipt_StatusCode = 8
)

func (TxReceipt_StatusCode) EnumDescriptor

func (TxReceipt_StatusCode) EnumDescriptor() ([]byte, []int)

func (TxReceipt_StatusCode) String

func (x TxReceipt_StatusCode) String() string

type UnimplementedApiServiceServer

type UnimplementedApiServiceServer struct {
}

UnimplementedApiServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedApiServiceServer) ExecTransaction

func (*UnimplementedApiServiceServer) GetAccount

func (*UnimplementedApiServiceServer) GetBatchContractStorage

func (*UnimplementedApiServiceServer) GetBlockByHash

func (*UnimplementedApiServiceServer) GetBlockByNumber

func (*UnimplementedApiServiceServer) GetCandidateBonus

func (*UnimplementedApiServiceServer) GetChainInfo

func (*UnimplementedApiServiceServer) GetContract

func (*UnimplementedApiServiceServer) GetContractStorage

func (*UnimplementedApiServiceServer) GetContractStorageFields

func (*UnimplementedApiServiceServer) GetContractVote

func (*UnimplementedApiServiceServer) GetGasRatio

func (*UnimplementedApiServiceServer) GetNodeInfo

func (*UnimplementedApiServiceServer) GetProducerVoteInfo

func (*UnimplementedApiServiceServer) GetRAMInfo

func (*UnimplementedApiServiceServer) GetToken721Balance

func (*UnimplementedApiServiceServer) GetToken721Metadata

func (*UnimplementedApiServiceServer) GetToken721Owner

func (*UnimplementedApiServiceServer) GetTokenBalance

func (*UnimplementedApiServiceServer) GetTokenInfo

func (*UnimplementedApiServiceServer) GetTxByHash

func (*UnimplementedApiServiceServer) GetTxReceiptByTxHash

func (*UnimplementedApiServiceServer) GetTxReceiptByTxHash(ctx context.Context, req *TxHashRequest) (*TxReceipt, error)

func (*UnimplementedApiServiceServer) GetVoterBonus

func (*UnimplementedApiServiceServer) ListContractStorage

func (*UnimplementedApiServiceServer) SendTransaction

func (*UnimplementedApiServiceServer) Subscribe

type VoteInfo

type VoteInfo struct {
	// option name
	Option string `protobuf:"bytes,1,opt,name=option,proto3" json:"option,omitempty"`
	// votes
	Votes float64 `protobuf:"fixed64,2,opt,name=votes,proto3" json:"votes,omitempty"`
	// cleared votes
	ClearedVotes         float64  `protobuf:"fixed64,3,opt,name=cleared_votes,json=clearedVotes,proto3" json:"cleared_votes,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

The message defines the account's vote info.

func (*VoteInfo) Descriptor

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

func (*VoteInfo) GetClearedVotes

func (m *VoteInfo) GetClearedVotes() float64

func (*VoteInfo) GetOption

func (m *VoteInfo) GetOption() string

func (*VoteInfo) GetVotes

func (m *VoteInfo) GetVotes() float64

func (*VoteInfo) ProtoMessage

func (*VoteInfo) ProtoMessage()

func (*VoteInfo) Reset

func (m *VoteInfo) Reset()

func (*VoteInfo) String

func (m *VoteInfo) String() string

func (*VoteInfo) XXX_DiscardUnknown

func (m *VoteInfo) XXX_DiscardUnknown()

func (*VoteInfo) XXX_Marshal

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

func (*VoteInfo) XXX_Merge

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

func (*VoteInfo) XXX_Size

func (m *VoteInfo) XXX_Size() int

func (*VoteInfo) XXX_Unmarshal

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

type VoterBonus

type VoterBonus struct {
	// the totol voter bonus
	Bonus float64 `protobuf:"fixed64,1,opt,name=bonus,proto3" json:"bonus,omitempty"`
	// the voter bonus detail
	Detail               map[string]float64 `` /* 155-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{}           `json:"-"`
	XXX_unrecognized     []byte             `json:"-"`
	XXX_sizecache        int32              `json:"-"`
}

The message defines the getVoterBonus response.

func (*VoterBonus) Descriptor

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

func (*VoterBonus) GetBonus

func (m *VoterBonus) GetBonus() float64

func (*VoterBonus) GetDetail

func (m *VoterBonus) GetDetail() map[string]float64

func (*VoterBonus) ProtoMessage

func (*VoterBonus) ProtoMessage()

func (*VoterBonus) Reset

func (m *VoterBonus) Reset()

func (*VoterBonus) String

func (m *VoterBonus) String() string

func (*VoterBonus) XXX_DiscardUnknown

func (m *VoterBonus) XXX_DiscardUnknown()

func (*VoterBonus) XXX_Marshal

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

func (*VoterBonus) XXX_Merge

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

func (*VoterBonus) XXX_Size

func (m *VoterBonus) XXX_Size() int

func (*VoterBonus) XXX_Unmarshal

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

Jump to

Keyboard shortcuts

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