blockchain

package
v0.0.0-...-214c9eb Latest Latest
Warning

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

Go to latest
Published: Oct 7, 2019 License: MIT Imports: 3 Imported by: 4

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AccountState

type AccountState struct {
	Balance              uint64   `protobuf:"varint,1,opt,name=balance,proto3" json:"balance,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*AccountState) Descriptor

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

func (*AccountState) GetBalance

func (m *AccountState) GetBalance() uint64

func (*AccountState) ProtoMessage

func (*AccountState) ProtoMessage()

func (*AccountState) Reset

func (m *AccountState) Reset()

func (*AccountState) String

func (m *AccountState) String() string

func (*AccountState) XXX_DiscardUnknown

func (m *AccountState) XXX_DiscardUnknown()

func (*AccountState) XXX_Marshal

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

func (*AccountState) XXX_Merge

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

func (*AccountState) XXX_Size

func (m *AccountState) XXX_Size() int

func (*AccountState) XXX_Unmarshal

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

type Block

type Block struct {
	Index                uint64         `protobuf:"varint,1,opt,name=index,proto3" json:"index,omitempty"`
	Timestamp            uint64         `protobuf:"varint,2,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
	PrevHash             []byte         `protobuf:"bytes,3,opt,name=prevHash,proto3" json:"prevHash,omitempty"`
	Miner                string         `protobuf:"bytes,4,opt,name=miner,proto3" json:"miner,omitempty"`
	Transactions         []*Transaction `protobuf:"bytes,5,rep,name=transactions,proto3" json:"transactions,omitempty"`
	ReceiptsContracts    []*Receipt     `protobuf:"bytes,6,rep,name=receiptsContracts,proto3" json:"receiptsContracts,omitempty"`
	MerkleRootReceipt    []byte         `protobuf:"bytes,7,opt,name=merkleRootReceipt,proto3" json:"merkleRootReceipt,omitempty"`
	Shard                uint32         `protobuf:"varint,8,opt,name=shard,proto3" json:"shard,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*Block) Descriptor

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

func (*Block) GetIndex

func (m *Block) GetIndex() uint64

func (*Block) GetMerkleRootReceipt

func (m *Block) GetMerkleRootReceipt() []byte

func (*Block) GetMiner

func (m *Block) GetMiner() string

func (*Block) GetPrevHash

func (m *Block) GetPrevHash() []byte

func (*Block) GetReceiptsContracts

func (m *Block) GetReceiptsContracts() []*Receipt

func (*Block) GetShard

func (m *Block) GetShard() uint32

func (*Block) GetTimestamp

func (m *Block) GetTimestamp() uint64

func (*Block) GetTransactions

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

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 Bls

type Bls struct {
	Block                *Block   `protobuf:"bytes,1,opt,name=block,proto3" json:"block,omitempty"`
	Signature            []byte   `protobuf:"bytes,2,opt,name=signature,proto3" json:"signature,omitempty"`
	PubKey               []byte   `protobuf:"bytes,3,opt,name=pubKey,proto3" json:"pubKey,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*Bls) Descriptor

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

func (*Bls) GetBlock

func (m *Bls) GetBlock() *Block

func (*Bls) GetPubKey

func (m *Bls) GetPubKey() []byte

func (*Bls) GetSignature

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

func (*Bls) ProtoMessage

func (*Bls) ProtoMessage()

func (*Bls) Reset

func (m *Bls) Reset()

func (*Bls) String

func (m *Bls) String() string

func (*Bls) XXX_DiscardUnknown

func (m *Bls) XXX_DiscardUnknown()

func (*Bls) XXX_Marshal

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

func (*Bls) XXX_Merge

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

func (*Bls) XXX_Size

func (m *Bls) XXX_Size() int

func (*Bls) XXX_Unmarshal

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

type CasperVote

type CasperVote struct {
	Source               []byte   `protobuf:"bytes,1,opt,name=source,proto3" json:"source,omitempty"`
	Target               []byte   `protobuf:"bytes,2,opt,name=target,proto3" json:"target,omitempty"`
	SourceHeight         uint64   `protobuf:"varint,3,opt,name=sourceHeight,proto3" json:"sourceHeight,omitempty"`
	TargetHeight         uint64   `protobuf:"varint,4,opt,name=targetHeight,proto3" json:"targetHeight,omitempty"`
	R                    []byte   `protobuf:"bytes,5,opt,name=r,proto3" json:"r,omitempty"`
	S                    []byte   `protobuf:"bytes,6,opt,name=s,proto3" json:"s,omitempty"`
	PublicKey            string   `protobuf:"bytes,7,opt,name=publicKey,proto3" json:"publicKey,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*CasperVote) Descriptor

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

func (*CasperVote) GetPublicKey

func (m *CasperVote) GetPublicKey() string

func (*CasperVote) GetR

func (m *CasperVote) GetR() []byte

func (*CasperVote) GetS

func (m *CasperVote) GetS() []byte

func (*CasperVote) GetSource

func (m *CasperVote) GetSource() []byte

func (*CasperVote) GetSourceHeight

func (m *CasperVote) GetSourceHeight() uint64

func (*CasperVote) GetTarget

func (m *CasperVote) GetTarget() []byte

func (*CasperVote) GetTargetHeight

func (m *CasperVote) GetTargetHeight() uint64

func (*CasperVote) ProtoMessage

func (*CasperVote) ProtoMessage()

func (*CasperVote) Reset

func (m *CasperVote) Reset()

func (*CasperVote) String

func (m *CasperVote) String() string

func (*CasperVote) XXX_DiscardUnknown

func (m *CasperVote) XXX_DiscardUnknown()

func (*CasperVote) XXX_Marshal

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

func (*CasperVote) XXX_Merge

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

func (*CasperVote) XXX_Size

func (m *CasperVote) XXX_Size() int

func (*CasperVote) XXX_Unmarshal

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

type ContractState

type ContractState struct {
	Memory               []byte   `protobuf:"bytes,1,opt,name=memory,proto3" json:"memory,omitempty"`
	Globals              []uint64 `protobuf:"varint,2,rep,packed,name=globals,proto3" json:"globals,omitempty"`
	Locked               bool     `protobuf:"varint,3,opt,name=locked,proto3" json:"locked,omitempty"`
	AllowedWallet        []byte   `protobuf:"bytes,4,opt,name=allowedWallet,proto3" json:"allowedWallet,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ContractState) Descriptor

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

func (*ContractState) GetAllowedWallet

func (m *ContractState) GetAllowedWallet() []byte

func (*ContractState) GetGlobals

func (m *ContractState) GetGlobals() []uint64

func (*ContractState) GetLocked

func (m *ContractState) GetLocked() bool

func (*ContractState) GetMemory

func (m *ContractState) GetMemory() []byte

func (*ContractState) ProtoMessage

func (*ContractState) ProtoMessage()

func (*ContractState) Reset

func (m *ContractState) Reset()

func (*ContractState) String

func (m *ContractState) String() string

func (*ContractState) XXX_DiscardUnknown

func (m *ContractState) XXX_DiscardUnknown()

func (*ContractState) XXX_Marshal

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

func (*ContractState) XXX_Merge

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

func (*ContractState) XXX_Size

func (m *ContractState) XXX_Size() int

func (*ContractState) XXX_Unmarshal

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

type MerkleProof

type MerkleProof struct {
	MapLeaf              []string     `protobuf:"bytes,1,rep,name=mapLeaf,proto3" json:"mapLeaf,omitempty"`
	MapHash              [][]byte     `protobuf:"bytes,2,rep,name=mapHash,proto3" json:"mapHash,omitempty"`
	Root                 []byte       `protobuf:"bytes,3,opt,name=root,proto3" json:"root,omitempty"`
	Leaf                 []byte       `protobuf:"bytes,4,opt,name=leaf,proto3" json:"leaf,omitempty"`
	Receipt              *Receipt     `protobuf:"bytes,5,opt,name=receipt,proto3" json:"receipt,omitempty"`
	Transaction          *Transaction `protobuf:"bytes,6,opt,name=transaction,proto3" json:"transaction,omitempty"`
	Shard                uint32       `protobuf:"varint,7,opt,name=shard,proto3" json:"shard,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*MerkleProof) Descriptor

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

func (*MerkleProof) GetLeaf

func (m *MerkleProof) GetLeaf() []byte

func (*MerkleProof) GetMapHash

func (m *MerkleProof) GetMapHash() [][]byte

func (*MerkleProof) GetMapLeaf

func (m *MerkleProof) GetMapLeaf() []string

func (*MerkleProof) GetReceipt

func (m *MerkleProof) GetReceipt() *Receipt

func (*MerkleProof) GetRoot

func (m *MerkleProof) GetRoot() []byte

func (*MerkleProof) GetShard

func (m *MerkleProof) GetShard() uint32

func (*MerkleProof) GetTransaction

func (m *MerkleProof) GetTransaction() *Transaction

func (*MerkleProof) ProtoMessage

func (*MerkleProof) ProtoMessage()

func (*MerkleProof) Reset

func (m *MerkleProof) Reset()

func (*MerkleProof) String

func (m *MerkleProof) String() string

func (*MerkleProof) XXX_DiscardUnknown

func (m *MerkleProof) XXX_DiscardUnknown()

func (*MerkleProof) XXX_Marshal

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

func (*MerkleProof) XXX_Merge

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

func (*MerkleProof) XXX_Size

func (m *MerkleProof) XXX_Size() int

func (*MerkleProof) XXX_Unmarshal

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

type MerkleRootsSigned

type MerkleRootsSigned struct {
	Shard                     uint32   `protobuf:"varint,1,opt,name=shard,proto3" json:"shard,omitempty"`
	MerkleRootsReceipt        [][]byte `protobuf:"bytes,2,rep,name=merkleRootsReceipt,proto3" json:"merkleRootsReceipt,omitempty"`
	RSignedMerkleRootsReceipt []byte   `` /* 136-byte string literal not displayed */
	SSignedMerkleRootsReceipt []byte   `` /* 136-byte string literal not displayed */
	RValidators               [][]byte `protobuf:"bytes,5,rep,name=r_validators,json=rValidators,proto3" json:"r_validators,omitempty"`
	PValidators               [][]byte `protobuf:"bytes,6,rep,name=p_validators,json=pValidators,proto3" json:"p_validators,omitempty"`
	XXX_NoUnkeyedLiteral      struct{} `json:"-"`
	XXX_unrecognized          []byte   `json:"-"`
	XXX_sizecache             int32    `json:"-"`
}

func (*MerkleRootsSigned) Descriptor

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

func (*MerkleRootsSigned) GetMerkleRootsReceipt

func (m *MerkleRootsSigned) GetMerkleRootsReceipt() [][]byte

func (*MerkleRootsSigned) GetPValidators

func (m *MerkleRootsSigned) GetPValidators() [][]byte

func (*MerkleRootsSigned) GetRSignedMerkleRootsReceipt

func (m *MerkleRootsSigned) GetRSignedMerkleRootsReceipt() []byte

func (*MerkleRootsSigned) GetRValidators

func (m *MerkleRootsSigned) GetRValidators() [][]byte

func (*MerkleRootsSigned) GetSSignedMerkleRootsReceipt

func (m *MerkleRootsSigned) GetSSignedMerkleRootsReceipt() []byte

func (*MerkleRootsSigned) GetShard

func (m *MerkleRootsSigned) GetShard() uint32

func (*MerkleRootsSigned) ProtoMessage

func (*MerkleRootsSigned) ProtoMessage()

func (*MerkleRootsSigned) Reset

func (m *MerkleRootsSigned) Reset()

func (*MerkleRootsSigned) String

func (m *MerkleRootsSigned) String() string

func (*MerkleRootsSigned) XXX_DiscardUnknown

func (m *MerkleRootsSigned) XXX_DiscardUnknown()

func (*MerkleRootsSigned) XXX_Marshal

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

func (*MerkleRootsSigned) XXX_Merge

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

func (*MerkleRootsSigned) XXX_Size

func (m *MerkleRootsSigned) XXX_Size() int

func (*MerkleRootsSigned) XXX_Unmarshal

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

type MoneyWithdraw

type MoneyWithdraw struct {
	Wallet               string   `protobuf:"bytes,1,opt,name=wallet,proto3" json:"wallet,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*MoneyWithdraw) Descriptor

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

func (*MoneyWithdraw) GetWallet

func (m *MoneyWithdraw) GetWallet() string

func (*MoneyWithdraw) ProtoMessage

func (*MoneyWithdraw) ProtoMessage()

func (*MoneyWithdraw) Reset

func (m *MoneyWithdraw) Reset()

func (*MoneyWithdraw) String

func (m *MoneyWithdraw) String() string

func (*MoneyWithdraw) XXX_DiscardUnknown

func (m *MoneyWithdraw) XXX_DiscardUnknown()

func (*MoneyWithdraw) XXX_Marshal

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

func (*MoneyWithdraw) XXX_Merge

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

func (*MoneyWithdraw) XXX_Size

func (m *MoneyWithdraw) XXX_Size() int

func (*MoneyWithdraw) XXX_Unmarshal

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

type Receipt

type Receipt struct {
	Sender               string   `protobuf:"bytes,1,opt,name=sender,proto3" json:"sender,omitempty"`
	Recipient            string   `protobuf:"bytes,2,opt,name=recipient,proto3" json:"recipient,omitempty"`
	Amount               uint64   `protobuf:"varint,3,opt,name=amount,proto3" json:"amount,omitempty"`
	Nonce                uint32   `protobuf:"varint,4,opt,name=nonce,proto3" json:"nonce,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*Receipt) Descriptor

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

func (*Receipt) GetAmount

func (m *Receipt) GetAmount() uint64

func (*Receipt) GetNonce

func (m *Receipt) GetNonce() uint32

func (*Receipt) GetRecipient

func (m *Receipt) GetRecipient() string

func (*Receipt) GetSender

func (m *Receipt) GetSender() string

func (*Receipt) ProtoMessage

func (*Receipt) ProtoMessage()

func (*Receipt) Reset

func (m *Receipt) Reset()

func (*Receipt) String

func (m *Receipt) String() string

func (*Receipt) XXX_DiscardUnknown

func (m *Receipt) XXX_DiscardUnknown()

func (*Receipt) XXX_Marshal

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

func (*Receipt) XXX_Merge

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

func (*Receipt) XXX_Size

func (m *Receipt) XXX_Size() int

func (*Receipt) XXX_Unmarshal

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

type Schnorr

type Schnorr struct {
	R                    []byte   `protobuf:"bytes,1,opt,name=r,proto3" json:"r,omitempty"`
	P                    string   `protobuf:"bytes,2,opt,name=p,proto3" json:"p,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*Schnorr) Descriptor

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

func (*Schnorr) GetP

func (m *Schnorr) GetP() string

func (*Schnorr) GetR

func (m *Schnorr) GetR() []byte

func (*Schnorr) ProtoMessage

func (*Schnorr) ProtoMessage()

func (*Schnorr) Reset

func (m *Schnorr) Reset()

func (*Schnorr) String

func (m *Schnorr) String() string

func (*Schnorr) XXX_DiscardUnknown

func (m *Schnorr) XXX_DiscardUnknown()

func (*Schnorr) XXX_Marshal

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

func (*Schnorr) XXX_Merge

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

func (*Schnorr) XXX_Size

func (m *Schnorr) XXX_Size() int

func (*Schnorr) XXX_Unmarshal

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

type SignSchnorr

type SignSchnorr struct {
	Wallet               string   `protobuf:"bytes,1,opt,name=wallet,proto3" json:"wallet,omitempty"`
	RSchnorr             []byte   `protobuf:"bytes,2,opt,name=rSchnorr,proto3" json:"rSchnorr,omitempty"`
	PSchnorr             []byte   `protobuf:"bytes,3,opt,name=pSchnorr,proto3" json:"pSchnorr,omitempty"`
	SignReceipt          []byte   `protobuf:"bytes,4,opt,name=signReceipt,proto3" json:"signReceipt,omitempty"`
	MessageSignReceipt   []byte   `protobuf:"bytes,5,opt,name=messageSignReceipt,proto3" json:"messageSignReceipt,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*SignSchnorr) Descriptor

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

func (*SignSchnorr) GetMessageSignReceipt

func (m *SignSchnorr) GetMessageSignReceipt() []byte

func (*SignSchnorr) GetPSchnorr

func (m *SignSchnorr) GetPSchnorr() []byte

func (*SignSchnorr) GetRSchnorr

func (m *SignSchnorr) GetRSchnorr() []byte

func (*SignSchnorr) GetSignReceipt

func (m *SignSchnorr) GetSignReceipt() []byte

func (*SignSchnorr) GetWallet

func (m *SignSchnorr) GetWallet() string

func (*SignSchnorr) ProtoMessage

func (*SignSchnorr) ProtoMessage()

func (*SignSchnorr) Reset

func (m *SignSchnorr) Reset()

func (*SignSchnorr) String

func (m *SignSchnorr) String() string

func (*SignSchnorr) XXX_DiscardUnknown

func (m *SignSchnorr) XXX_DiscardUnknown()

func (*SignSchnorr) XXX_Marshal

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

func (*SignSchnorr) XXX_Merge

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

func (*SignSchnorr) XXX_Size

func (m *SignSchnorr) XXX_Size() int

func (*SignSchnorr) XXX_Unmarshal

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

type Transaction

type Transaction struct {
	Sender               []byte   `protobuf:"bytes,1,opt,name=sender,proto3" json:"sender,omitempty"`
	Recipient            string   `protobuf:"bytes,2,opt,name=recipient,proto3" json:"recipient,omitempty"`
	Nonce                uint32   `protobuf:"varint,3,opt,name=nonce,proto3" json:"nonce,omitempty"`
	Amount               uint64   `protobuf:"varint,4,opt,name=amount,proto3" json:"amount,omitempty"`
	Gas                  uint32   `protobuf:"varint,5,opt,name=gas,proto3" json:"gas,omitempty"`
	ContractCreation     bool     `protobuf:"varint,6,opt,name=contractCreation,proto3" json:"contractCreation,omitempty"`
	Function             string   `protobuf:"bytes,7,opt,name=function,proto3" json:"function,omitempty"`
	Args                 []uint64 `protobuf:"varint,8,rep,packed,name=args,proto3" json:"args,omitempty"`
	Data                 []byte   `protobuf:"bytes,9,opt,name=data,proto3" json:"data,omitempty"`
	R                    []byte   `protobuf:"bytes,10,opt,name=r,proto3" json:"r,omitempty"`
	S                    []byte   `protobuf:"bytes,11,opt,name=s,proto3" json:"s,omitempty"`
	PubSchnorrKey        []byte   `protobuf:"bytes,12,opt,name=pubSchnorrKey,proto3" json:"pubSchnorrKey,omitempty"`
	Shard                uint32   `protobuf:"varint,13,opt,name=shard,proto3" json:"shard,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*Transaction) Descriptor

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

func (*Transaction) GetAmount

func (m *Transaction) GetAmount() uint64

func (*Transaction) GetArgs

func (m *Transaction) GetArgs() []uint64

func (*Transaction) GetContractCreation

func (m *Transaction) GetContractCreation() bool

func (*Transaction) GetData

func (m *Transaction) GetData() []byte

func (*Transaction) GetFunction

func (m *Transaction) GetFunction() string

func (*Transaction) GetGas

func (m *Transaction) GetGas() uint32

func (*Transaction) GetNonce

func (m *Transaction) GetNonce() uint32

func (*Transaction) GetPubSchnorrKey

func (m *Transaction) GetPubSchnorrKey() []byte

func (*Transaction) GetR

func (m *Transaction) GetR() []byte

func (*Transaction) GetRecipient

func (m *Transaction) GetRecipient() string

func (*Transaction) GetS

func (m *Transaction) GetS() []byte

func (*Transaction) GetSender

func (m *Transaction) GetSender() []byte

func (*Transaction) GetShard

func (m *Transaction) GetShard() uint32

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 ValidatorWithdraw

type ValidatorWithdraw struct {
	PublicKey            []byte   `protobuf:"bytes,1,opt,name=publicKey,proto3" json:"publicKey,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ValidatorWithdraw) Descriptor

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

func (*ValidatorWithdraw) GetPublicKey

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

func (*ValidatorWithdraw) ProtoMessage

func (*ValidatorWithdraw) ProtoMessage()

func (*ValidatorWithdraw) Reset

func (m *ValidatorWithdraw) Reset()

func (*ValidatorWithdraw) String

func (m *ValidatorWithdraw) String() string

func (*ValidatorWithdraw) XXX_DiscardUnknown

func (m *ValidatorWithdraw) XXX_DiscardUnknown()

func (*ValidatorWithdraw) XXX_Marshal

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

func (*ValidatorWithdraw) XXX_Merge

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

func (*ValidatorWithdraw) XXX_Size

func (m *ValidatorWithdraw) XXX_Size() int

func (*ValidatorWithdraw) XXX_Unmarshal

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

Jump to

Keyboard shortcuts

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