systemSmartContracts

package
v1.1.18 Latest Latest
Warning

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

Go to latest
Published: Jan 8, 2021 License: GPL-3.0 Imports: 26 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	ErrInvalidLengthDelegation        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowDelegation          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupDelegation = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthEsdt        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowEsdt          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupEsdt = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthGovernance        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowGovernance          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupGovernance = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthStaking        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowStaking          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupStaking = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthValidator        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowValidator          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupValidator = fmt.Errorf("proto: unexpected end of group")
)

Functions

func CheckIfNil

func CheckIfNil(args *vmcommon.ContractCallInput) error

CheckIfNil verifies if contract call input is not nil

func NewDelegationManagerSystemSC added in v1.1.15

func NewDelegationManagerSystemSC(args ArgsNewDelegationManager) (*delegationManager, error)

NewDelegationManagerSystemSC creates a new delegation manager system SC

func NewDelegationSystemSC added in v1.1.15

func NewDelegationSystemSC(args ArgsNewDelegation) (*delegation, error)

NewDelegationSystemSC creates a new delegation system SC

func NewESDTSmartContract added in v1.0.114

func NewESDTSmartContract(args ArgsNewESDTSmartContract) (*esdt, error)

NewESDTSmartContract creates the esdt smart contract, which controls the issuing of tokens

func NewGovernanceContract added in v1.0.133

func NewGovernanceContract(args ArgsNewGovernanceContract) (*governanceContract, error)

NewGovernanceContract creates a new governance smart contract

func NewStakingSmartContract

func NewStakingSmartContract(
	args ArgsNewStakingSmartContract,
) (*stakingSC, error)

NewStakingSmartContract creates a staking smart contract

func NewVMContext

func NewVMContext(
	blockChainHook vm.BlockchainHook,
	cryptoHook vmcommon.CryptoHook,
	inputParser vm.ArgumentsParser,
	validatorAccountsDB state.AccountsAdapter,
	chanceComputer sharding.ChanceComputer,
) (*vmContext, error)

NewVMContext creates a context where smart contracts can run and write

func NewValidatorSmartContract added in v1.1.15

func NewValidatorSmartContract(
	args ArgsValidatorSmartContract,
) (*validatorSC, error)

NewValidatorSmartContract creates an validator smart contract

Types

type ArgsNewDelegation added in v1.1.15

type ArgsNewDelegation struct {
	DelegationSCConfig     config.DelegationSystemSCConfig
	StakingSCConfig        config.StakingSystemSCConfig
	Eei                    vm.SystemEI
	SigVerifier            vm.MessageSignVerifier
	DelegationMgrSCAddress []byte
	StakingSCAddress       []byte
	ValidatorSCAddress     []byte
	EndOfEpochAddress      []byte
	GasCost                vm.GasCost
	Marshalizer            marshal.Marshalizer
	EpochNotifier          vm.EpochNotifier
}

ArgsNewDelegation defines the arguments to create the delegation smart contract

type ArgsNewDelegationManager added in v1.1.15

type ArgsNewDelegationManager struct {
	DelegationMgrSCConfig  config.DelegationManagerSystemSCConfig
	DelegationSCConfig     config.DelegationSystemSCConfig
	Eei                    vm.SystemEI
	DelegationMgrSCAddress []byte
	StakingSCAddress       []byte
	ValidatorSCAddress     []byte
	GasCost                vm.GasCost
	Marshalizer            marshal.Marshalizer
	EpochNotifier          vm.EpochNotifier
}

ArgsNewDelegationManager defines the arguments to create the delegation manager system smart contract

type ArgsNewESDTSmartContract added in v1.0.114

type ArgsNewESDTSmartContract struct {
	Eei                    vm.SystemEI
	GasCost                vm.GasCost
	ESDTSCConfig           config.ESDTSystemSCConfig
	ESDTSCAddress          []byte
	Marshalizer            marshal.Marshalizer
	Hasher                 hashing.Hasher
	EpochNotifier          vm.EpochNotifier
	EndOfEpochSCAddress    []byte
	AddressPubKeyConverter core.PubkeyConverter
}

ArgsNewESDTSmartContract defines the arguments needed for the esdt contract

type ArgsNewGovernanceContract added in v1.0.133

type ArgsNewGovernanceContract struct {
	Eei                 vm.SystemEI
	GasCost             vm.GasCost
	GovernanceConfig    config.GovernanceSystemSCConfig
	ESDTSCAddress       []byte
	Marshalizer         marshal.Marshalizer
	Hasher              hashing.Hasher
	GovernanceSCAddress []byte
	StakingSCAddress    []byte
	ValidatorSCAddress  []byte
	EpochNotifier       vm.EpochNotifier
}

ArgsNewGovernanceContract defines the arguments needed for the on-chain governance contract

type ArgsNewStakingSmartContract

type ArgsNewStakingSmartContract struct {
	StakingSCConfig      config.StakingSystemSCConfig
	MinNumNodes          uint64
	Eei                  vm.SystemEI
	StakingAccessAddr    []byte
	JailAccessAddr       []byte
	EndOfEpochAccessAddr []byte
	GasCost              vm.GasCost
	Marshalizer          marshal.Marshalizer
	EpochNotifier        vm.EpochNotifier
}

ArgsNewStakingSmartContract holds the arguments needed to create a StakingSmartContract

type ArgsValidatorSmartContract added in v1.1.15

type ArgsValidatorSmartContract struct {
	StakingSCConfig    config.StakingSystemSCConfig
	GenesisTotalSupply *big.Int
	Eei                vm.SystemEI
	SigVerifier        vm.MessageSignVerifier
	StakingSCAddress   []byte
	ValidatorSCAddress []byte
	GasCost            vm.GasCost
	Marshalizer        marshal.Marshalizer
	EpochNotifier      vm.EpochNotifier
	EndOfEpochAddress  []byte
	MinDeposit         string
}

ArgsValidatorSmartContract is the arguments structure to create a new ValidatorSmartContract

type DelegationConfig added in v1.1.15

type DelegationConfig struct {
	MaxDelegationCap     *math_big.Int `` /* 154-byte string literal not displayed */
	InitialOwnerFunds    *math_big.Int `` /* 156-byte string literal not displayed */
	AutomaticActivation  bool          `protobuf:"varint,3,opt,name=AutomaticActivation,proto3" json:"AutomaticActivation"`
	ChangeableServiceFee bool          `protobuf:"varint,4,opt,name=ChangeableServiceFee,proto3" json:"ChangeableServiceFee"`
	CreatedNonce         uint64        `protobuf:"varint,5,opt,name=CreatedNonce,proto3" json:"CreatedNonce"`
	UnBondPeriod         uint64        `protobuf:"varint,6,opt,name=UnBondPeriod,proto3" json:"UnBondPeriod"`
}

func (*DelegationConfig) Descriptor added in v1.1.15

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

func (*DelegationConfig) Equal added in v1.1.15

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

func (*DelegationConfig) GetAutomaticActivation added in v1.1.15

func (m *DelegationConfig) GetAutomaticActivation() bool

func (*DelegationConfig) GetChangeableServiceFee added in v1.1.15

func (m *DelegationConfig) GetChangeableServiceFee() bool

func (*DelegationConfig) GetCreatedNonce added in v1.1.15

func (m *DelegationConfig) GetCreatedNonce() uint64

func (*DelegationConfig) GetInitialOwnerFunds added in v1.1.15

func (m *DelegationConfig) GetInitialOwnerFunds() *math_big.Int

func (*DelegationConfig) GetMaxDelegationCap added in v1.1.15

func (m *DelegationConfig) GetMaxDelegationCap() *math_big.Int

func (*DelegationConfig) GetUnBondPeriod added in v1.1.15

func (m *DelegationConfig) GetUnBondPeriod() uint64

func (*DelegationConfig) GoString added in v1.1.15

func (this *DelegationConfig) GoString() string

func (*DelegationConfig) Marshal added in v1.1.15

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

func (*DelegationConfig) MarshalTo added in v1.1.15

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

func (*DelegationConfig) MarshalToSizedBuffer added in v1.1.15

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

func (*DelegationConfig) ProtoMessage added in v1.1.15

func (*DelegationConfig) ProtoMessage()

func (*DelegationConfig) Reset added in v1.1.15

func (m *DelegationConfig) Reset()

func (*DelegationConfig) Size added in v1.1.15

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

func (*DelegationConfig) String added in v1.1.15

func (this *DelegationConfig) String() string

func (*DelegationConfig) Unmarshal added in v1.1.15

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

func (*DelegationConfig) XXX_DiscardUnknown added in v1.1.15

func (m *DelegationConfig) XXX_DiscardUnknown()

func (*DelegationConfig) XXX_Marshal added in v1.1.15

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

func (*DelegationConfig) XXX_Merge added in v1.1.15

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

func (*DelegationConfig) XXX_Size added in v1.1.15

func (m *DelegationConfig) XXX_Size() int

func (*DelegationConfig) XXX_Unmarshal added in v1.1.15

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

type DelegationContractList added in v1.1.15

type DelegationContractList struct {
	Addresses [][]byte `protobuf:"bytes,1,rep,name=Addresses,proto3" json:"Addresses"`
}

func (*DelegationContractList) Descriptor added in v1.1.15

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

func (*DelegationContractList) Equal added in v1.1.15

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

func (*DelegationContractList) GetAddresses added in v1.1.15

func (m *DelegationContractList) GetAddresses() [][]byte

func (*DelegationContractList) GoString added in v1.1.15

func (this *DelegationContractList) GoString() string

func (*DelegationContractList) Marshal added in v1.1.15

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

func (*DelegationContractList) MarshalTo added in v1.1.15

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

func (*DelegationContractList) MarshalToSizedBuffer added in v1.1.15

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

func (*DelegationContractList) ProtoMessage added in v1.1.15

func (*DelegationContractList) ProtoMessage()

func (*DelegationContractList) Reset added in v1.1.15

func (m *DelegationContractList) Reset()

func (*DelegationContractList) Size added in v1.1.15

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

func (*DelegationContractList) String added in v1.1.15

func (this *DelegationContractList) String() string

func (*DelegationContractList) Unmarshal added in v1.1.15

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

func (*DelegationContractList) XXX_DiscardUnknown added in v1.1.15

func (m *DelegationContractList) XXX_DiscardUnknown()

func (*DelegationContractList) XXX_Marshal added in v1.1.15

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

func (*DelegationContractList) XXX_Merge added in v1.1.15

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

func (*DelegationContractList) XXX_Size added in v1.1.15

func (m *DelegationContractList) XXX_Size() int

func (*DelegationContractList) XXX_Unmarshal added in v1.1.15

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

type DelegationContractStatus added in v1.1.15

type DelegationContractStatus struct {
	Delegators    [][]byte     `protobuf:"bytes,1,rep,name=Delegators,proto3" json:"Delegators"`
	StakedKeys    []*NodesData `protobuf:"bytes,2,rep,name=StakedKeys,proto3" json:"StakedKeys"`
	NotStakedKeys []*NodesData `protobuf:"bytes,3,rep,name=NotStakedKeys,proto3" json:"NotStakedKeys"`
	UnStakedKeys  []*NodesData `protobuf:"bytes,4,rep,name=UnStakedKeys,proto3" json:"UnStakedKeys"`
}

func (*DelegationContractStatus) Descriptor added in v1.1.15

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

func (*DelegationContractStatus) Equal added in v1.1.15

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

func (*DelegationContractStatus) GetDelegators added in v1.1.15

func (m *DelegationContractStatus) GetDelegators() [][]byte

func (*DelegationContractStatus) GetNotStakedKeys added in v1.1.15

func (m *DelegationContractStatus) GetNotStakedKeys() []*NodesData

func (*DelegationContractStatus) GetStakedKeys added in v1.1.15

func (m *DelegationContractStatus) GetStakedKeys() []*NodesData

func (*DelegationContractStatus) GetUnStakedKeys added in v1.1.15

func (m *DelegationContractStatus) GetUnStakedKeys() []*NodesData

func (*DelegationContractStatus) GoString added in v1.1.15

func (this *DelegationContractStatus) GoString() string

func (*DelegationContractStatus) Marshal added in v1.1.15

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

func (*DelegationContractStatus) MarshalTo added in v1.1.15

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

func (*DelegationContractStatus) MarshalToSizedBuffer added in v1.1.15

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

func (*DelegationContractStatus) ProtoMessage added in v1.1.15

func (*DelegationContractStatus) ProtoMessage()

func (*DelegationContractStatus) Reset added in v1.1.15

func (m *DelegationContractStatus) Reset()

func (*DelegationContractStatus) Size added in v1.1.15

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

func (*DelegationContractStatus) String added in v1.1.15

func (this *DelegationContractStatus) String() string

func (*DelegationContractStatus) Unmarshal added in v1.1.15

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

func (*DelegationContractStatus) XXX_DiscardUnknown added in v1.1.15

func (m *DelegationContractStatus) XXX_DiscardUnknown()

func (*DelegationContractStatus) XXX_Marshal added in v1.1.15

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

func (*DelegationContractStatus) XXX_Merge added in v1.1.15

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

func (*DelegationContractStatus) XXX_Size added in v1.1.15

func (m *DelegationContractStatus) XXX_Size() int

func (*DelegationContractStatus) XXX_Unmarshal added in v1.1.15

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

type DelegationManagement added in v1.1.15

type DelegationManagement struct {
	NumOfContracts   uint32        `protobuf:"varint,1,opt,name=NumOfContracts,proto3" json:"NumOfContracts"`
	LastAddress      []byte        `protobuf:"bytes,2,opt,name=LastAddress,proto3" json:"LastAddress"`
	MinServiceFee    uint64        `protobuf:"varint,3,opt,name=MinServiceFee,proto3" json:"MinServiceFee"`
	MaxServiceFee    uint64        `protobuf:"varint,4,opt,name=MaxServiceFee,proto3" json:"MaxServiceFee"`
	BaseIssueingCost *math_big.Int `` /* 154-byte string literal not displayed */
	MinDeposit       *math_big.Int `` /* 142-byte string literal not displayed */
}

func (*DelegationManagement) Descriptor added in v1.1.15

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

func (*DelegationManagement) Equal added in v1.1.15

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

func (*DelegationManagement) GetBaseIssueingCost added in v1.1.15

func (m *DelegationManagement) GetBaseIssueingCost() *math_big.Int

func (*DelegationManagement) GetLastAddress added in v1.1.15

func (m *DelegationManagement) GetLastAddress() []byte

func (*DelegationManagement) GetMaxServiceFee added in v1.1.15

func (m *DelegationManagement) GetMaxServiceFee() uint64

func (*DelegationManagement) GetMinDeposit added in v1.1.15

func (m *DelegationManagement) GetMinDeposit() *math_big.Int

func (*DelegationManagement) GetMinServiceFee added in v1.1.15

func (m *DelegationManagement) GetMinServiceFee() uint64

func (*DelegationManagement) GetNumOfContracts added in v1.1.15

func (m *DelegationManagement) GetNumOfContracts() uint32

func (*DelegationManagement) GoString added in v1.1.15

func (this *DelegationManagement) GoString() string

func (*DelegationManagement) Marshal added in v1.1.15

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

func (*DelegationManagement) MarshalTo added in v1.1.15

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

func (*DelegationManagement) MarshalToSizedBuffer added in v1.1.15

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

func (*DelegationManagement) ProtoMessage added in v1.1.15

func (*DelegationManagement) ProtoMessage()

func (*DelegationManagement) Reset added in v1.1.15

func (m *DelegationManagement) Reset()

func (*DelegationManagement) Size added in v1.1.15

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

func (*DelegationManagement) String added in v1.1.15

func (this *DelegationManagement) String() string

func (*DelegationManagement) Unmarshal added in v1.1.15

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

func (*DelegationManagement) XXX_DiscardUnknown added in v1.1.15

func (m *DelegationManagement) XXX_DiscardUnknown()

func (*DelegationManagement) XXX_Marshal added in v1.1.15

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

func (*DelegationManagement) XXX_Merge added in v1.1.15

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

func (*DelegationManagement) XXX_Size added in v1.1.15

func (m *DelegationManagement) XXX_Size() int

func (*DelegationManagement) XXX_Unmarshal added in v1.1.15

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

type DelegatorData added in v1.1.15

type DelegatorData struct {
	ActiveFund        []byte        `protobuf:"bytes,1,opt,name=ActiveFund,proto3" json:"ActiveFund"`
	UnStakedFunds     [][]byte      `protobuf:"bytes,2,rep,name=UnStakedFunds,proto3" json:"UnStakedFunds"`
	RewardsCheckpoint uint32        `protobuf:"varint,3,opt,name=RewardsCheckpoint,proto3" json:"RewardsCheckpoint"`
	UnClaimedRewards  *math_big.Int `` /* 154-byte string literal not displayed */
}

func (*DelegatorData) Descriptor added in v1.1.15

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

func (*DelegatorData) Equal added in v1.1.15

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

func (*DelegatorData) GetActiveFund added in v1.1.15

func (m *DelegatorData) GetActiveFund() []byte

func (*DelegatorData) GetRewardsCheckpoint added in v1.1.15

func (m *DelegatorData) GetRewardsCheckpoint() uint32

func (*DelegatorData) GetUnClaimedRewards added in v1.1.15

func (m *DelegatorData) GetUnClaimedRewards() *math_big.Int

func (*DelegatorData) GetUnStakedFunds added in v1.1.15

func (m *DelegatorData) GetUnStakedFunds() [][]byte

func (*DelegatorData) GoString added in v1.1.15

func (this *DelegatorData) GoString() string

func (*DelegatorData) Marshal added in v1.1.15

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

func (*DelegatorData) MarshalTo added in v1.1.15

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

func (*DelegatorData) MarshalToSizedBuffer added in v1.1.15

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

func (*DelegatorData) ProtoMessage added in v1.1.15

func (*DelegatorData) ProtoMessage()

func (*DelegatorData) Reset added in v1.1.15

func (m *DelegatorData) Reset()

func (*DelegatorData) Size added in v1.1.15

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

func (*DelegatorData) String added in v1.1.15

func (this *DelegatorData) String() string

func (*DelegatorData) Unmarshal added in v1.1.15

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

func (*DelegatorData) XXX_DiscardUnknown added in v1.1.15

func (m *DelegatorData) XXX_DiscardUnknown()

func (*DelegatorData) XXX_Marshal added in v1.1.15

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

func (*DelegatorData) XXX_Merge added in v1.1.15

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

func (*DelegatorData) XXX_Size added in v1.1.15

func (m *DelegatorData) XXX_Size() int

func (*DelegatorData) XXX_Unmarshal added in v1.1.15

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

type ESDTConfig added in v1.0.114

type ESDTConfig struct {
	OwnerAddress       []byte        `protobuf:"bytes,1,opt,name=OwnerAddress,proto3" json:"OwnerAddress"`
	BaseIssuingCost    *math_big.Int `` /* 152-byte string literal not displayed */
	MinTokenNameLength uint32        `protobuf:"varint,3,opt,name=MinTokenNameLength,proto3" json:"MinTokenNameLength"`
	MaxTokenNameLength uint32        `protobuf:"varint,4,opt,name=MaxTokenNameLength,proto3" json:"MaxTokenNameLength"`
}

func (*ESDTConfig) Descriptor added in v1.0.114

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

func (*ESDTConfig) Equal added in v1.0.114

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

func (*ESDTConfig) GetBaseIssuingCost added in v1.0.114

func (m *ESDTConfig) GetBaseIssuingCost() *math_big.Int

func (*ESDTConfig) GetMaxTokenNameLength added in v1.0.114

func (m *ESDTConfig) GetMaxTokenNameLength() uint32

func (*ESDTConfig) GetMinTokenNameLength added in v1.0.114

func (m *ESDTConfig) GetMinTokenNameLength() uint32

func (*ESDTConfig) GetOwnerAddress added in v1.0.114

func (m *ESDTConfig) GetOwnerAddress() []byte

func (*ESDTConfig) GoString added in v1.0.114

func (this *ESDTConfig) GoString() string

func (*ESDTConfig) Marshal added in v1.0.114

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

func (*ESDTConfig) MarshalTo added in v1.0.114

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

func (*ESDTConfig) MarshalToSizedBuffer added in v1.0.114

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

func (*ESDTConfig) ProtoMessage added in v1.0.114

func (*ESDTConfig) ProtoMessage()

func (*ESDTConfig) Reset added in v1.0.114

func (m *ESDTConfig) Reset()

func (*ESDTConfig) Size added in v1.0.114

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

func (*ESDTConfig) String added in v1.0.114

func (this *ESDTConfig) String() string

func (*ESDTConfig) Unmarshal added in v1.0.114

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

func (*ESDTConfig) XXX_DiscardUnknown added in v1.0.114

func (m *ESDTConfig) XXX_DiscardUnknown()

func (*ESDTConfig) XXX_Marshal added in v1.0.114

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

func (*ESDTConfig) XXX_Merge added in v1.0.114

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

func (*ESDTConfig) XXX_Size added in v1.0.114

func (m *ESDTConfig) XXX_Size() int

func (*ESDTConfig) XXX_Unmarshal added in v1.0.114

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

type ESDTData added in v1.0.114

type ESDTData struct {
	OwnerAddress   []byte        `protobuf:"bytes,1,opt,name=OwnerAddress,proto3" json:"OwnerAddress"`
	TokenName      []byte        `protobuf:"bytes,2,opt,name=TokenName,proto3" json:"TokenName"`
	TickerName     []byte        `protobuf:"bytes,3,opt,name=TickerName,proto3" json:"TickerName"`
	Mintable       bool          `protobuf:"varint,4,opt,name=Mintable,proto3" json:"Mintable"`
	Burnable       bool          `protobuf:"varint,5,opt,name=Burnable,proto3" json:"Burnable"`
	CanPause       bool          `protobuf:"varint,6,opt,name=CanPause,proto3" json:"CanPause"`
	CanFreeze      bool          `protobuf:"varint,7,opt,name=CanFreeze,proto3" json:"CanFreeze"`
	CanWipe        bool          `protobuf:"varint,8,opt,name=CanWipe,proto3" json:"CanWipe"`
	Upgradable     bool          `protobuf:"varint,9,opt,name=Upgradable,proto3" json:"CanUpgrade"`
	CanChangeOwner bool          `protobuf:"varint,10,opt,name=CanChangeOwner,proto3" json:"CanChangeOwner"`
	IsPaused       bool          `protobuf:"varint,11,opt,name=IsPaused,proto3" json:"IsPaused"`
	MintedValue    *math_big.Int `` /* 145-byte string literal not displayed */
	BurntValue     *math_big.Int `` /* 143-byte string literal not displayed */
	NumDecimals    uint32        `protobuf:"varint,14,opt,name=NumDecimals,proto3" json:"NumDecimals"`
}

func (*ESDTData) Descriptor added in v1.0.114

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

func (*ESDTData) Equal added in v1.0.114

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

func (*ESDTData) GetBurnable added in v1.0.114

func (m *ESDTData) GetBurnable() bool

func (*ESDTData) GetBurntValue added in v1.0.114

func (m *ESDTData) GetBurntValue() *math_big.Int

func (*ESDTData) GetCanChangeOwner added in v1.1.3

func (m *ESDTData) GetCanChangeOwner() bool

func (*ESDTData) GetCanFreeze added in v1.0.114

func (m *ESDTData) GetCanFreeze() bool

func (*ESDTData) GetCanPause added in v1.0.114

func (m *ESDTData) GetCanPause() bool

func (*ESDTData) GetCanWipe added in v1.0.114

func (m *ESDTData) GetCanWipe() bool

func (*ESDTData) GetIsPaused added in v1.1.3

func (m *ESDTData) GetIsPaused() bool

func (*ESDTData) GetMintable added in v1.0.114

func (m *ESDTData) GetMintable() bool

func (*ESDTData) GetMintedValue added in v1.0.114

func (m *ESDTData) GetMintedValue() *math_big.Int

func (*ESDTData) GetNumDecimals added in v1.1.15

func (m *ESDTData) GetNumDecimals() uint32

func (*ESDTData) GetOwnerAddress added in v1.1.3

func (m *ESDTData) GetOwnerAddress() []byte

func (*ESDTData) GetTickerName added in v1.1.12

func (m *ESDTData) GetTickerName() []byte

func (*ESDTData) GetTokenName added in v1.0.114

func (m *ESDTData) GetTokenName() []byte

func (*ESDTData) GetUpgradable added in v1.1.3

func (m *ESDTData) GetUpgradable() bool

func (*ESDTData) GoString added in v1.0.114

func (this *ESDTData) GoString() string

func (*ESDTData) Marshal added in v1.0.114

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

func (*ESDTData) MarshalTo added in v1.0.114

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

func (*ESDTData) MarshalToSizedBuffer added in v1.0.114

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

func (*ESDTData) ProtoMessage added in v1.0.114

func (*ESDTData) ProtoMessage()

func (*ESDTData) Reset added in v1.0.114

func (m *ESDTData) Reset()

func (*ESDTData) Size added in v1.0.114

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

func (*ESDTData) String added in v1.0.114

func (this *ESDTData) String() string

func (*ESDTData) Unmarshal added in v1.0.114

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

func (*ESDTData) XXX_DiscardUnknown added in v1.0.114

func (m *ESDTData) XXX_DiscardUnknown()

func (*ESDTData) XXX_Marshal added in v1.0.114

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

func (*ESDTData) XXX_Merge added in v1.0.114

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

func (*ESDTData) XXX_Size added in v1.0.114

func (m *ESDTData) XXX_Size() int

func (*ESDTData) XXX_Unmarshal added in v1.0.114

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

type ElementInList added in v1.0.149

type ElementInList struct {
	BLSPublicKey []byte `protobuf:"bytes,1,opt,name=BLSPublicKey,proto3" json:"BLSPublicKey"`
	PreviousKey  []byte `protobuf:"bytes,2,opt,name=PreviousKey,proto3" json:"PreviousKey"`
	NextKey      []byte `protobuf:"bytes,3,opt,name=NextKey,proto3" json:"NextKey"`
}

func (*ElementInList) Descriptor added in v1.0.149

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

func (*ElementInList) Equal added in v1.0.149

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

func (*ElementInList) GetBLSPublicKey added in v1.0.149

func (m *ElementInList) GetBLSPublicKey() []byte

func (*ElementInList) GetNextKey added in v1.0.149

func (m *ElementInList) GetNextKey() []byte

func (*ElementInList) GetPreviousKey added in v1.0.149

func (m *ElementInList) GetPreviousKey() []byte

func (*ElementInList) GoString added in v1.0.149

func (this *ElementInList) GoString() string

func (*ElementInList) Marshal added in v1.0.149

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

func (*ElementInList) MarshalTo added in v1.0.149

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

func (*ElementInList) MarshalToSizedBuffer added in v1.0.149

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

func (*ElementInList) ProtoMessage added in v1.0.149

func (*ElementInList) ProtoMessage()

func (*ElementInList) Reset added in v1.0.149

func (m *ElementInList) Reset()

func (*ElementInList) Size added in v1.0.149

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

func (*ElementInList) String added in v1.0.149

func (this *ElementInList) String() string

func (*ElementInList) Unmarshal added in v1.0.149

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

func (*ElementInList) XXX_DiscardUnknown added in v1.0.149

func (m *ElementInList) XXX_DiscardUnknown()

func (*ElementInList) XXX_Marshal added in v1.0.149

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

func (*ElementInList) XXX_Merge added in v1.0.149

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

func (*ElementInList) XXX_Size added in v1.0.149

func (m *ElementInList) XXX_Size() int

func (*ElementInList) XXX_Unmarshal added in v1.0.149

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

type Fund added in v1.1.15

type Fund struct {
	Value   *math_big.Int `` /* 132-byte string literal not displayed */
	Address []byte        `protobuf:"bytes,2,opt,name=Address,proto3" json:"Address"`
	Nonce   uint64        `protobuf:"varint,3,opt,name=Nonce,proto3" json:"Nonce"`
	Type    uint32        `protobuf:"varint,4,opt,name=Type,proto3" json:"Type"`
}

func (*Fund) Descriptor added in v1.1.15

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

func (*Fund) Equal added in v1.1.15

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

func (*Fund) GetAddress added in v1.1.15

func (m *Fund) GetAddress() []byte

func (*Fund) GetNonce added in v1.1.15

func (m *Fund) GetNonce() uint64

func (*Fund) GetType added in v1.1.15

func (m *Fund) GetType() uint32

func (*Fund) GetValue added in v1.1.15

func (m *Fund) GetValue() *math_big.Int

func (*Fund) GoString added in v1.1.15

func (this *Fund) GoString() string

func (*Fund) Marshal added in v1.1.15

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

func (*Fund) MarshalTo added in v1.1.15

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

func (*Fund) MarshalToSizedBuffer added in v1.1.15

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

func (*Fund) ProtoMessage added in v1.1.15

func (*Fund) ProtoMessage()

func (*Fund) Reset added in v1.1.15

func (m *Fund) Reset()

func (*Fund) Size added in v1.1.15

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

func (*Fund) String added in v1.1.15

func (this *Fund) String() string

func (*Fund) Unmarshal added in v1.1.15

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

func (*Fund) XXX_DiscardUnknown added in v1.1.15

func (m *Fund) XXX_DiscardUnknown()

func (*Fund) XXX_Marshal added in v1.1.15

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

func (*Fund) XXX_Merge added in v1.1.15

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

func (*Fund) XXX_Size added in v1.1.15

func (m *Fund) XXX_Size() int

func (*Fund) XXX_Unmarshal added in v1.1.15

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

type GeneralProposal added in v1.0.133

type GeneralProposal struct {
	IssuerAddress  []byte   `protobuf:"bytes,1,opt,name=IssuerAddress,proto3" json:"IssuerAddress"`
	GitHubCommit   []byte   `protobuf:"bytes,2,opt,name=GitHubCommit,proto3" json:"GitHubCommit"`
	StartVoteNonce uint64   `protobuf:"varint,3,opt,name=StartVoteNonce,proto3" json:"StartVoteNonce"`
	EndVoteNonce   uint64   `protobuf:"varint,4,opt,name=EndVoteNonce,proto3" json:"EndVoteNonce"`
	Yes            int32    `protobuf:"varint,5,opt,name=Yes,proto3" json:"Yes"`
	No             int32    `protobuf:"varint,6,opt,name=No,proto3" json:"No"`
	Veto           int32    `protobuf:"varint,7,opt,name=Veto,proto3" json:"Veto"`
	DontCare       int32    `protobuf:"varint,8,opt,name=DontCare,proto3" json:"DontCare"`
	Voted          bool     `protobuf:"varint,9,opt,name=Voted,proto3" json:"Voted"`
	Voters         [][]byte `protobuf:"bytes,10,rep,name=Voters,proto3" json:"Voters"`
	TopReference   []byte   `protobuf:"bytes,11,opt,name=TopReference,proto3" json:"TopReference"`
	Closed         bool     `protobuf:"varint,12,opt,name=Closed,proto3" json:"Closed"`
}

func (*GeneralProposal) Descriptor added in v1.0.133

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

func (*GeneralProposal) Equal added in v1.0.133

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

func (*GeneralProposal) GetClosed added in v1.0.133

func (m *GeneralProposal) GetClosed() bool

func (*GeneralProposal) GetDontCare added in v1.0.133

func (m *GeneralProposal) GetDontCare() int32

func (*GeneralProposal) GetEndVoteNonce added in v1.0.133

func (m *GeneralProposal) GetEndVoteNonce() uint64

func (*GeneralProposal) GetGitHubCommit added in v1.0.133

func (m *GeneralProposal) GetGitHubCommit() []byte

func (*GeneralProposal) GetIssuerAddress added in v1.0.133

func (m *GeneralProposal) GetIssuerAddress() []byte

func (*GeneralProposal) GetNo added in v1.0.133

func (m *GeneralProposal) GetNo() int32

func (*GeneralProposal) GetStartVoteNonce added in v1.0.133

func (m *GeneralProposal) GetStartVoteNonce() uint64

func (*GeneralProposal) GetTopReference added in v1.0.133

func (m *GeneralProposal) GetTopReference() []byte

func (*GeneralProposal) GetVeto added in v1.0.133

func (m *GeneralProposal) GetVeto() int32

func (*GeneralProposal) GetVoted added in v1.0.133

func (m *GeneralProposal) GetVoted() bool

func (*GeneralProposal) GetVoters added in v1.0.133

func (m *GeneralProposal) GetVoters() [][]byte

func (*GeneralProposal) GetYes added in v1.0.133

func (m *GeneralProposal) GetYes() int32

func (*GeneralProposal) GoString added in v1.0.133

func (this *GeneralProposal) GoString() string

func (*GeneralProposal) Marshal added in v1.0.133

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

func (*GeneralProposal) MarshalTo added in v1.0.133

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

func (*GeneralProposal) MarshalToSizedBuffer added in v1.0.133

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

func (*GeneralProposal) ProtoMessage added in v1.0.133

func (*GeneralProposal) ProtoMessage()

func (*GeneralProposal) Reset added in v1.0.133

func (m *GeneralProposal) Reset()

func (*GeneralProposal) Size added in v1.0.133

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

func (*GeneralProposal) String added in v1.0.133

func (this *GeneralProposal) String() string

func (*GeneralProposal) Unmarshal added in v1.0.133

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

func (*GeneralProposal) XXX_DiscardUnknown added in v1.0.133

func (m *GeneralProposal) XXX_DiscardUnknown()

func (*GeneralProposal) XXX_Marshal added in v1.0.133

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

func (*GeneralProposal) XXX_Merge added in v1.0.133

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

func (*GeneralProposal) XXX_Size added in v1.0.133

func (m *GeneralProposal) XXX_Size() int

func (*GeneralProposal) XXX_Unmarshal added in v1.0.133

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

type GlobalFundData added in v1.1.15

type GlobalFundData struct {
	ActiveFunds   [][]byte      `protobuf:"bytes,1,rep,name=ActiveFunds,proto3" json:"ActiveFunds"`
	UnStakedFunds [][]byte      `protobuf:"bytes,2,rep,name=UnStakedFunds,proto3" json:"UnStakedFunds"`
	TotalActive   *math_big.Int `` /* 144-byte string literal not displayed */
	TotalUnStaked *math_big.Int `` /* 148-byte string literal not displayed */
}

func (*GlobalFundData) Descriptor added in v1.1.15

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

func (*GlobalFundData) Equal added in v1.1.15

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

func (*GlobalFundData) GetActiveFunds added in v1.1.15

func (m *GlobalFundData) GetActiveFunds() [][]byte

func (*GlobalFundData) GetTotalActive added in v1.1.15

func (m *GlobalFundData) GetTotalActive() *math_big.Int

func (*GlobalFundData) GetTotalUnStaked added in v1.1.15

func (m *GlobalFundData) GetTotalUnStaked() *math_big.Int

func (*GlobalFundData) GetUnStakedFunds added in v1.1.15

func (m *GlobalFundData) GetUnStakedFunds() [][]byte

func (*GlobalFundData) GoString added in v1.1.15

func (this *GlobalFundData) GoString() string

func (*GlobalFundData) Marshal added in v1.1.15

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

func (*GlobalFundData) MarshalTo added in v1.1.15

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

func (*GlobalFundData) MarshalToSizedBuffer added in v1.1.15

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

func (*GlobalFundData) ProtoMessage added in v1.1.15

func (*GlobalFundData) ProtoMessage()

func (*GlobalFundData) Reset added in v1.1.15

func (m *GlobalFundData) Reset()

func (*GlobalFundData) Size added in v1.1.15

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

func (*GlobalFundData) String added in v1.1.15

func (this *GlobalFundData) String() string

func (*GlobalFundData) Unmarshal added in v1.1.15

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

func (*GlobalFundData) XXX_DiscardUnknown added in v1.1.15

func (m *GlobalFundData) XXX_DiscardUnknown()

func (*GlobalFundData) XXX_Marshal added in v1.1.15

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

func (*GlobalFundData) XXX_Merge added in v1.1.15

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

func (*GlobalFundData) XXX_Size added in v1.1.15

func (m *GlobalFundData) XXX_Size() int

func (*GlobalFundData) XXX_Unmarshal added in v1.1.15

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

type GovernanceConfig added in v1.0.133

type GovernanceConfig struct {
	NumNodes         int64         `protobuf:"varint,1,opt,name=NumNodes,proto3" json:"NumNodes"`
	MinQuorum        int32         `protobuf:"varint,2,opt,name=MinQuorum,proto3" json:"MinQuorum"`
	MinPassThreshold int32         `protobuf:"varint,3,opt,name=MinPassThreshold,proto3" json:"MinPassThreshold"`
	MinVetoThreshold int32         `protobuf:"varint,4,opt,name=MinVetoThreshold,proto3" json:"MinVetoThreshold"`
	ProposalFee      *math_big.Int `` /* 144-byte string literal not displayed */
}

func (*GovernanceConfig) Descriptor added in v1.0.133

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

func (*GovernanceConfig) Equal added in v1.0.133

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

func (*GovernanceConfig) GetMinPassThreshold added in v1.0.133

func (m *GovernanceConfig) GetMinPassThreshold() int32

func (*GovernanceConfig) GetMinQuorum added in v1.0.133

func (m *GovernanceConfig) GetMinQuorum() int32

func (*GovernanceConfig) GetMinVetoThreshold added in v1.0.133

func (m *GovernanceConfig) GetMinVetoThreshold() int32

func (*GovernanceConfig) GetNumNodes added in v1.0.133

func (m *GovernanceConfig) GetNumNodes() int64

func (*GovernanceConfig) GetProposalFee added in v1.0.133

func (m *GovernanceConfig) GetProposalFee() *math_big.Int

func (*GovernanceConfig) GoString added in v1.0.133

func (this *GovernanceConfig) GoString() string

func (*GovernanceConfig) Marshal added in v1.0.133

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

func (*GovernanceConfig) MarshalTo added in v1.0.133

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

func (*GovernanceConfig) MarshalToSizedBuffer added in v1.0.133

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

func (*GovernanceConfig) ProtoMessage added in v1.0.133

func (*GovernanceConfig) ProtoMessage()

func (*GovernanceConfig) Reset added in v1.0.133

func (m *GovernanceConfig) Reset()

func (*GovernanceConfig) Size added in v1.0.133

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

func (*GovernanceConfig) String added in v1.0.133

func (this *GovernanceConfig) String() string

func (*GovernanceConfig) Unmarshal added in v1.0.133

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

func (*GovernanceConfig) XXX_DiscardUnknown added in v1.0.133

func (m *GovernanceConfig) XXX_DiscardUnknown()

func (*GovernanceConfig) XXX_Marshal added in v1.0.133

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

func (*GovernanceConfig) XXX_Merge added in v1.0.133

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

func (*GovernanceConfig) XXX_Size added in v1.0.133

func (m *GovernanceConfig) XXX_Size() int

func (*GovernanceConfig) XXX_Unmarshal added in v1.0.133

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

type HardForkProposal added in v1.0.133

type HardForkProposal struct {
	EpochToHardFork    uint32 `protobuf:"varint,1,opt,name=EpochToHardFork,proto3" json:"EpochToHardFork"`
	NewSoftwareVersion []byte `protobuf:"bytes,2,opt,name=NewSoftwareVersion,proto3" json:"NewSoftwareVersion"`
	ProposalStatus     []byte `protobuf:"bytes,3,opt,name=ProposalStatus,proto3" json:"ProposalStatus"`
}

func (*HardForkProposal) Descriptor added in v1.0.133

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

func (*HardForkProposal) Equal added in v1.0.133

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

func (*HardForkProposal) GetEpochToHardFork added in v1.0.133

func (m *HardForkProposal) GetEpochToHardFork() uint32

func (*HardForkProposal) GetNewSoftwareVersion added in v1.0.133

func (m *HardForkProposal) GetNewSoftwareVersion() []byte

func (*HardForkProposal) GetProposalStatus added in v1.0.133

func (m *HardForkProposal) GetProposalStatus() []byte

func (*HardForkProposal) GoString added in v1.0.133

func (this *HardForkProposal) GoString() string

func (*HardForkProposal) Marshal added in v1.0.133

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

func (*HardForkProposal) MarshalTo added in v1.0.133

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

func (*HardForkProposal) MarshalToSizedBuffer added in v1.0.133

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

func (*HardForkProposal) ProtoMessage added in v1.0.133

func (*HardForkProposal) ProtoMessage()

func (*HardForkProposal) Reset added in v1.0.133

func (m *HardForkProposal) Reset()

func (*HardForkProposal) Size added in v1.0.133

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

func (*HardForkProposal) String added in v1.0.133

func (this *HardForkProposal) String() string

func (*HardForkProposal) Unmarshal added in v1.0.133

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

func (*HardForkProposal) XXX_DiscardUnknown added in v1.0.133

func (m *HardForkProposal) XXX_DiscardUnknown()

func (*HardForkProposal) XXX_Marshal added in v1.0.133

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

func (*HardForkProposal) XXX_Merge added in v1.0.133

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

func (*HardForkProposal) XXX_Size added in v1.0.133

func (m *HardForkProposal) XXX_Size() int

func (*HardForkProposal) XXX_Unmarshal added in v1.0.133

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

type NodesData added in v1.1.15

type NodesData struct {
	BLSKey    []byte `protobuf:"bytes,1,opt,name=BLSKey,proto3" json:"BLSKey"`
	SignedMsg []byte `protobuf:"bytes,2,opt,name=SignedMsg,proto3" json:"SignedMsg"`
}

func (*NodesData) Descriptor added in v1.1.15

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

func (*NodesData) Equal added in v1.1.15

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

func (*NodesData) GetBLSKey added in v1.1.15

func (m *NodesData) GetBLSKey() []byte

func (*NodesData) GetSignedMsg added in v1.1.15

func (m *NodesData) GetSignedMsg() []byte

func (*NodesData) GoString added in v1.1.15

func (this *NodesData) GoString() string

func (*NodesData) Marshal added in v1.1.15

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

func (*NodesData) MarshalTo added in v1.1.15

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

func (*NodesData) MarshalToSizedBuffer added in v1.1.15

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

func (*NodesData) ProtoMessage added in v1.1.15

func (*NodesData) ProtoMessage()

func (*NodesData) Reset added in v1.1.15

func (m *NodesData) Reset()

func (*NodesData) Size added in v1.1.15

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

func (*NodesData) String added in v1.1.15

func (this *NodesData) String() string

func (*NodesData) Unmarshal added in v1.1.15

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

func (*NodesData) XXX_DiscardUnknown added in v1.1.15

func (m *NodesData) XXX_DiscardUnknown()

func (*NodesData) XXX_Marshal added in v1.1.15

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

func (*NodesData) XXX_Merge added in v1.1.15

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

func (*NodesData) XXX_Size added in v1.1.15

func (m *NodesData) XXX_Size() int

func (*NodesData) XXX_Unmarshal added in v1.1.15

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

type RewardComputationData added in v1.1.15

type RewardComputationData struct {
	RewardsToDistribute *math_big.Int `` /* 160-byte string literal not displayed */
	TotalActive         *math_big.Int `` /* 144-byte string literal not displayed */
	ServiceFee          uint64        `protobuf:"varint,3,opt,name=ServiceFee,proto3" json:"ServiceFee"`
}

func (*RewardComputationData) Descriptor added in v1.1.15

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

func (*RewardComputationData) Equal added in v1.1.15

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

func (*RewardComputationData) GetRewardsToDistribute added in v1.1.15

func (m *RewardComputationData) GetRewardsToDistribute() *math_big.Int

func (*RewardComputationData) GetServiceFee added in v1.1.15

func (m *RewardComputationData) GetServiceFee() uint64

func (*RewardComputationData) GetTotalActive added in v1.1.15

func (m *RewardComputationData) GetTotalActive() *math_big.Int

func (*RewardComputationData) GoString added in v1.1.15

func (this *RewardComputationData) GoString() string

func (*RewardComputationData) Marshal added in v1.1.15

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

func (*RewardComputationData) MarshalTo added in v1.1.15

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

func (*RewardComputationData) MarshalToSizedBuffer added in v1.1.15

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

func (*RewardComputationData) ProtoMessage added in v1.1.15

func (*RewardComputationData) ProtoMessage()

func (*RewardComputationData) Reset added in v1.1.15

func (m *RewardComputationData) Reset()

func (*RewardComputationData) Size added in v1.1.15

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

func (*RewardComputationData) String added in v1.1.15

func (this *RewardComputationData) String() string

func (*RewardComputationData) Unmarshal added in v1.1.15

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

func (*RewardComputationData) XXX_DiscardUnknown added in v1.1.15

func (m *RewardComputationData) XXX_DiscardUnknown()

func (*RewardComputationData) XXX_Marshal added in v1.1.15

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

func (*RewardComputationData) XXX_Merge added in v1.1.15

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

func (*RewardComputationData) XXX_Size added in v1.1.15

func (m *RewardComputationData) XXX_Size() int

func (*RewardComputationData) XXX_Unmarshal added in v1.1.15

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

type StakedDataV1_0 added in v1.1.15

type StakedDataV1_0 struct {
	RegisterNonce uint64        `protobuf:"varint,1,opt,name=RegisterNonce,proto3" json:"RegisterNonce"`
	StakedNonce   uint64        `protobuf:"varint,2,opt,name=StakedNonce,proto3" json:"StakedNonce"`
	Staked        bool          `protobuf:"varint,3,opt,name=Staked,proto3" json:"Staked"`
	UnStakedNonce uint64        `protobuf:"varint,4,opt,name=UnStakedNonce,proto3" json:"UnStakedNonce"`
	UnStakedEpoch uint32        `protobuf:"varint,5,opt,name=UnStakedEpoch,proto3" json:"UnStakedEpoch"`
	RewardAddress []byte        `protobuf:"bytes,6,opt,name=RewardAddress,proto3" json:"RewardAddress"`
	StakeValue    *math_big.Int `` /* 142-byte string literal not displayed */
	JailedRound   uint64        `protobuf:"varint,8,opt,name=JailedRound,proto3" json:"JailedRound"`
	JailedNonce   uint64        `protobuf:"varint,9,opt,name=JailedNonce,proto3" json:"JailedNonce"`
	UnJailedNonce uint64        `protobuf:"varint,10,opt,name=UnJailedNonce,proto3" json:"UnJailedNonce"`
	Jailed        bool          `protobuf:"varint,11,opt,name=Jailed,proto3" json:"Jailed"`
	Waiting       bool          `protobuf:"varint,12,opt,name=Waiting,proto3" json:"Waiting"`
}

func (*StakedDataV1_0) Descriptor added in v1.1.15

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

func (*StakedDataV1_0) Equal added in v1.1.15

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

func (*StakedDataV1_0) GetJailed added in v1.1.15

func (m *StakedDataV1_0) GetJailed() bool

func (*StakedDataV1_0) GetJailedNonce added in v1.1.15

func (m *StakedDataV1_0) GetJailedNonce() uint64

func (*StakedDataV1_0) GetJailedRound added in v1.1.15

func (m *StakedDataV1_0) GetJailedRound() uint64

func (*StakedDataV1_0) GetRegisterNonce added in v1.1.15

func (m *StakedDataV1_0) GetRegisterNonce() uint64

func (*StakedDataV1_0) GetRewardAddress added in v1.1.15

func (m *StakedDataV1_0) GetRewardAddress() []byte

func (*StakedDataV1_0) GetStakeValue added in v1.1.15

func (m *StakedDataV1_0) GetStakeValue() *math_big.Int

func (*StakedDataV1_0) GetStaked added in v1.1.15

func (m *StakedDataV1_0) GetStaked() bool

func (*StakedDataV1_0) GetStakedNonce added in v1.1.15

func (m *StakedDataV1_0) GetStakedNonce() uint64

func (*StakedDataV1_0) GetUnJailedNonce added in v1.1.15

func (m *StakedDataV1_0) GetUnJailedNonce() uint64

func (*StakedDataV1_0) GetUnStakedEpoch added in v1.1.15

func (m *StakedDataV1_0) GetUnStakedEpoch() uint32

func (*StakedDataV1_0) GetUnStakedNonce added in v1.1.15

func (m *StakedDataV1_0) GetUnStakedNonce() uint64

func (*StakedDataV1_0) GetWaiting added in v1.1.15

func (m *StakedDataV1_0) GetWaiting() bool

func (*StakedDataV1_0) GoString added in v1.1.15

func (this *StakedDataV1_0) GoString() string

func (*StakedDataV1_0) Marshal added in v1.1.15

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

func (*StakedDataV1_0) MarshalTo added in v1.1.15

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

func (*StakedDataV1_0) MarshalToSizedBuffer added in v1.1.15

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

func (*StakedDataV1_0) ProtoMessage added in v1.1.15

func (*StakedDataV1_0) ProtoMessage()

func (*StakedDataV1_0) Reset added in v1.1.15

func (m *StakedDataV1_0) Reset()

func (*StakedDataV1_0) Size added in v1.1.15

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

func (*StakedDataV1_0) String added in v1.1.15

func (this *StakedDataV1_0) String() string

func (*StakedDataV1_0) Unmarshal added in v1.1.15

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

func (*StakedDataV1_0) XXX_DiscardUnknown added in v1.1.15

func (m *StakedDataV1_0) XXX_DiscardUnknown()

func (*StakedDataV1_0) XXX_Marshal added in v1.1.15

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

func (*StakedDataV1_0) XXX_Merge added in v1.1.15

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

func (*StakedDataV1_0) XXX_Size added in v1.1.15

func (m *StakedDataV1_0) XXX_Size() int

func (*StakedDataV1_0) XXX_Unmarshal added in v1.1.15

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

type StakedDataV1_1 added in v1.1.15

type StakedDataV1_1 struct {
	RegisterNonce uint64        `protobuf:"varint,1,opt,name=RegisterNonce,proto3" json:"RegisterNonce"`
	StakedNonce   uint64        `protobuf:"varint,2,opt,name=StakedNonce,proto3" json:"StakedNonce"`
	Staked        bool          `protobuf:"varint,3,opt,name=Staked,proto3" json:"Staked"`
	UnStakedNonce uint64        `protobuf:"varint,4,opt,name=UnStakedNonce,proto3" json:"UnStakedNonce"`
	UnStakedEpoch uint32        `protobuf:"varint,5,opt,name=UnStakedEpoch,proto3" json:"UnStakedEpoch"`
	RewardAddress []byte        `protobuf:"bytes,6,opt,name=RewardAddress,proto3" json:"RewardAddress"`
	StakeValue    *math_big.Int `` /* 142-byte string literal not displayed */
	JailedRound   uint64        `protobuf:"varint,8,opt,name=JailedRound,proto3" json:"JailedRound"`
	JailedNonce   uint64        `protobuf:"varint,9,opt,name=JailedNonce,proto3" json:"JailedNonce"`
	UnJailedNonce uint64        `protobuf:"varint,10,opt,name=UnJailedNonce,proto3" json:"UnJailedNonce"`
	Jailed        bool          `protobuf:"varint,11,opt,name=Jailed,proto3" json:"Jailed"`
	Waiting       bool          `protobuf:"varint,12,opt,name=Waiting,proto3" json:"Waiting"`
	NumJailed     uint32        `protobuf:"varint,13,opt,name=NumJailed,proto3" json:"NumJailed"`
	SlashValue    *math_big.Int `` /* 143-byte string literal not displayed */
}

func (*StakedDataV1_1) Descriptor added in v1.1.15

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

func (*StakedDataV1_1) Equal added in v1.1.15

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

func (*StakedDataV1_1) GetJailed added in v1.1.15

func (m *StakedDataV1_1) GetJailed() bool

func (*StakedDataV1_1) GetJailedNonce added in v1.1.15

func (m *StakedDataV1_1) GetJailedNonce() uint64

func (*StakedDataV1_1) GetJailedRound added in v1.1.15

func (m *StakedDataV1_1) GetJailedRound() uint64

func (*StakedDataV1_1) GetNumJailed added in v1.1.15

func (m *StakedDataV1_1) GetNumJailed() uint32

func (*StakedDataV1_1) GetRegisterNonce added in v1.1.15

func (m *StakedDataV1_1) GetRegisterNonce() uint64

func (*StakedDataV1_1) GetRewardAddress added in v1.1.15

func (m *StakedDataV1_1) GetRewardAddress() []byte

func (*StakedDataV1_1) GetSlashValue added in v1.1.15

func (m *StakedDataV1_1) GetSlashValue() *math_big.Int

func (*StakedDataV1_1) GetStakeValue added in v1.1.15

func (m *StakedDataV1_1) GetStakeValue() *math_big.Int

func (*StakedDataV1_1) GetStaked added in v1.1.15

func (m *StakedDataV1_1) GetStaked() bool

func (*StakedDataV1_1) GetStakedNonce added in v1.1.15

func (m *StakedDataV1_1) GetStakedNonce() uint64

func (*StakedDataV1_1) GetUnJailedNonce added in v1.1.15

func (m *StakedDataV1_1) GetUnJailedNonce() uint64

func (*StakedDataV1_1) GetUnStakedEpoch added in v1.1.15

func (m *StakedDataV1_1) GetUnStakedEpoch() uint32

func (*StakedDataV1_1) GetUnStakedNonce added in v1.1.15

func (m *StakedDataV1_1) GetUnStakedNonce() uint64

func (*StakedDataV1_1) GetWaiting added in v1.1.15

func (m *StakedDataV1_1) GetWaiting() bool

func (*StakedDataV1_1) GoString added in v1.1.15

func (this *StakedDataV1_1) GoString() string

func (*StakedDataV1_1) Marshal added in v1.1.15

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

func (*StakedDataV1_1) MarshalTo added in v1.1.15

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

func (*StakedDataV1_1) MarshalToSizedBuffer added in v1.1.15

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

func (*StakedDataV1_1) ProtoMessage added in v1.1.15

func (*StakedDataV1_1) ProtoMessage()

func (*StakedDataV1_1) Reset added in v1.1.15

func (m *StakedDataV1_1) Reset()

func (*StakedDataV1_1) Size added in v1.1.15

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

func (*StakedDataV1_1) String added in v1.1.15

func (this *StakedDataV1_1) String() string

func (*StakedDataV1_1) Unmarshal added in v1.1.15

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

func (*StakedDataV1_1) XXX_DiscardUnknown added in v1.1.15

func (m *StakedDataV1_1) XXX_DiscardUnknown()

func (*StakedDataV1_1) XXX_Marshal added in v1.1.15

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

func (*StakedDataV1_1) XXX_Merge added in v1.1.15

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

func (*StakedDataV1_1) XXX_Size added in v1.1.15

func (m *StakedDataV1_1) XXX_Size() int

func (*StakedDataV1_1) XXX_Unmarshal added in v1.1.15

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

type StakedDataV2_0 added in v1.1.15

type StakedDataV2_0 struct {
	RegisterNonce uint64        `protobuf:"varint,1,opt,name=RegisterNonce,proto3" json:"RegisterNonce"`
	StakedNonce   uint64        `protobuf:"varint,2,opt,name=StakedNonce,proto3" json:"StakedNonce"`
	Staked        bool          `protobuf:"varint,3,opt,name=Staked,proto3" json:"Staked"`
	UnStakedNonce uint64        `protobuf:"varint,4,opt,name=UnStakedNonce,proto3" json:"UnStakedNonce"`
	UnStakedEpoch uint32        `protobuf:"varint,5,opt,name=UnStakedEpoch,proto3" json:"UnStakedEpoch"`
	RewardAddress []byte        `protobuf:"bytes,6,opt,name=RewardAddress,proto3" json:"RewardAddress"`
	StakeValue    *math_big.Int `` /* 142-byte string literal not displayed */
	JailedRound   uint64        `protobuf:"varint,8,opt,name=JailedRound,proto3" json:"JailedRound"`
	JailedNonce   uint64        `protobuf:"varint,9,opt,name=JailedNonce,proto3" json:"JailedNonce"`
	UnJailedNonce uint64        `protobuf:"varint,10,opt,name=UnJailedNonce,proto3" json:"UnJailedNonce"`
	Jailed        bool          `protobuf:"varint,11,opt,name=Jailed,proto3" json:"Jailed"`
	Waiting       bool          `protobuf:"varint,12,opt,name=Waiting,proto3" json:"Waiting"`
	NumJailed     uint32        `protobuf:"varint,13,opt,name=NumJailed,proto3" json:"NumJailed"`
	SlashValue    *math_big.Int `` /* 143-byte string literal not displayed */
	OwnerAddress  []byte        `protobuf:"bytes,15,opt,name=OwnerAddress,proto3" json:"OwnerAddress"`
}

func (*StakedDataV2_0) Descriptor added in v1.1.15

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

func (*StakedDataV2_0) Equal added in v1.1.15

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

func (*StakedDataV2_0) GetJailed added in v1.1.15

func (m *StakedDataV2_0) GetJailed() bool

func (*StakedDataV2_0) GetJailedNonce added in v1.1.15

func (m *StakedDataV2_0) GetJailedNonce() uint64

func (*StakedDataV2_0) GetJailedRound added in v1.1.15

func (m *StakedDataV2_0) GetJailedRound() uint64

func (*StakedDataV2_0) GetNumJailed added in v1.1.15

func (m *StakedDataV2_0) GetNumJailed() uint32

func (*StakedDataV2_0) GetOwnerAddress added in v1.1.15

func (m *StakedDataV2_0) GetOwnerAddress() []byte

func (*StakedDataV2_0) GetRegisterNonce added in v1.1.15

func (m *StakedDataV2_0) GetRegisterNonce() uint64

func (*StakedDataV2_0) GetRewardAddress added in v1.1.15

func (m *StakedDataV2_0) GetRewardAddress() []byte

func (*StakedDataV2_0) GetSlashValue added in v1.1.15

func (m *StakedDataV2_0) GetSlashValue() *math_big.Int

func (*StakedDataV2_0) GetStakeValue added in v1.1.15

func (m *StakedDataV2_0) GetStakeValue() *math_big.Int

func (*StakedDataV2_0) GetStaked added in v1.1.15

func (m *StakedDataV2_0) GetStaked() bool

func (*StakedDataV2_0) GetStakedNonce added in v1.1.15

func (m *StakedDataV2_0) GetStakedNonce() uint64

func (*StakedDataV2_0) GetUnJailedNonce added in v1.1.15

func (m *StakedDataV2_0) GetUnJailedNonce() uint64

func (*StakedDataV2_0) GetUnStakedEpoch added in v1.1.15

func (m *StakedDataV2_0) GetUnStakedEpoch() uint32

func (*StakedDataV2_0) GetUnStakedNonce added in v1.1.15

func (m *StakedDataV2_0) GetUnStakedNonce() uint64

func (*StakedDataV2_0) GetWaiting added in v1.1.15

func (m *StakedDataV2_0) GetWaiting() bool

func (*StakedDataV2_0) GoString added in v1.1.15

func (this *StakedDataV2_0) GoString() string

func (*StakedDataV2_0) Marshal added in v1.1.15

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

func (*StakedDataV2_0) MarshalTo added in v1.1.15

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

func (*StakedDataV2_0) MarshalToSizedBuffer added in v1.1.15

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

func (*StakedDataV2_0) ProtoMessage added in v1.1.15

func (*StakedDataV2_0) ProtoMessage()

func (*StakedDataV2_0) Reset added in v1.1.15

func (m *StakedDataV2_0) Reset()

func (*StakedDataV2_0) Size added in v1.1.15

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

func (*StakedDataV2_0) String added in v1.1.15

func (this *StakedDataV2_0) String() string

func (*StakedDataV2_0) Unmarshal added in v1.1.15

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

func (*StakedDataV2_0) XXX_DiscardUnknown added in v1.1.15

func (m *StakedDataV2_0) XXX_DiscardUnknown()

func (*StakedDataV2_0) XXX_Marshal added in v1.1.15

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

func (*StakedDataV2_0) XXX_Merge added in v1.1.15

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

func (*StakedDataV2_0) XXX_Size added in v1.1.15

func (m *StakedDataV2_0) XXX_Size() int

func (*StakedDataV2_0) XXX_Unmarshal added in v1.1.15

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

type StakingNodesConfig added in v1.0.110

type StakingNodesConfig struct {
	MinNumNodes int64 `protobuf:"varint,1,opt,name=MinNumNodes,proto3" json:"MinNumNodes"`
	MaxNumNodes int64 `protobuf:"varint,2,opt,name=MaxNumNodes,proto3" json:"MaxNumNodes"`
	StakedNodes int64 `protobuf:"varint,3,opt,name=StakedNodes,proto3" json:"StakedNodes"`
	JailedNodes int64 `protobuf:"varint,4,opt,name=JailedNodes,proto3" json:"JailedNodes"`
}

func (*StakingNodesConfig) Descriptor added in v1.0.114

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

func (*StakingNodesConfig) Equal added in v1.0.114

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

func (*StakingNodesConfig) GetJailedNodes added in v1.0.114

func (m *StakingNodesConfig) GetJailedNodes() int64

func (*StakingNodesConfig) GetMaxNumNodes added in v1.0.147

func (m *StakingNodesConfig) GetMaxNumNodes() int64

func (*StakingNodesConfig) GetMinNumNodes added in v1.0.114

func (m *StakingNodesConfig) GetMinNumNodes() int64

func (*StakingNodesConfig) GetStakedNodes added in v1.0.114

func (m *StakingNodesConfig) GetStakedNodes() int64

func (*StakingNodesConfig) GoString added in v1.0.114

func (this *StakingNodesConfig) GoString() string

func (*StakingNodesConfig) Marshal added in v1.0.114

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

func (*StakingNodesConfig) MarshalTo added in v1.0.114

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

func (*StakingNodesConfig) MarshalToSizedBuffer added in v1.0.114

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

func (*StakingNodesConfig) ProtoMessage added in v1.0.114

func (*StakingNodesConfig) ProtoMessage()

func (*StakingNodesConfig) Reset added in v1.0.114

func (m *StakingNodesConfig) Reset()

func (*StakingNodesConfig) Size added in v1.0.114

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

func (*StakingNodesConfig) String added in v1.0.114

func (this *StakingNodesConfig) String() string

func (*StakingNodesConfig) Unmarshal added in v1.0.114

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

func (*StakingNodesConfig) XXX_DiscardUnknown added in v1.0.114

func (m *StakingNodesConfig) XXX_DiscardUnknown()

func (*StakingNodesConfig) XXX_Marshal added in v1.0.114

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

func (*StakingNodesConfig) XXX_Merge added in v1.0.114

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

func (*StakingNodesConfig) XXX_Size added in v1.0.114

func (m *StakingNodesConfig) XXX_Size() int

func (*StakingNodesConfig) XXX_Unmarshal added in v1.0.114

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

type UnstakedValue added in v1.1.15

type UnstakedValue struct {
	UnstakedNonce uint64        `protobuf:"varint,1,opt,name=UnstakedNonce,proto3" json:"UnstakedNonce"`
	UnstakedValue *math_big.Int `` /* 148-byte string literal not displayed */
}

func (*UnstakedValue) Descriptor added in v1.1.15

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

func (*UnstakedValue) Equal added in v1.1.15

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

func (*UnstakedValue) GetUnstakedNonce added in v1.1.15

func (m *UnstakedValue) GetUnstakedNonce() uint64

func (*UnstakedValue) GetUnstakedValue added in v1.1.15

func (m *UnstakedValue) GetUnstakedValue() *math_big.Int

func (*UnstakedValue) GoString added in v1.1.15

func (this *UnstakedValue) GoString() string

func (*UnstakedValue) Marshal added in v1.1.15

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

func (*UnstakedValue) MarshalTo added in v1.1.15

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

func (*UnstakedValue) MarshalToSizedBuffer added in v1.1.15

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

func (*UnstakedValue) ProtoMessage added in v1.1.15

func (*UnstakedValue) ProtoMessage()

func (*UnstakedValue) Reset added in v1.1.15

func (m *UnstakedValue) Reset()

func (*UnstakedValue) Size added in v1.1.15

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

func (*UnstakedValue) String added in v1.1.15

func (this *UnstakedValue) String() string

func (*UnstakedValue) Unmarshal added in v1.1.15

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

func (*UnstakedValue) XXX_DiscardUnknown added in v1.1.15

func (m *UnstakedValue) XXX_DiscardUnknown()

func (*UnstakedValue) XXX_Marshal added in v1.1.15

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

func (*UnstakedValue) XXX_Merge added in v1.1.15

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

func (*UnstakedValue) XXX_Size added in v1.1.15

func (m *UnstakedValue) XXX_Size() int

func (*UnstakedValue) XXX_Unmarshal added in v1.1.15

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

type ValidatorConfig added in v1.1.15

type ValidatorConfig struct {
	MinStakeValue *math_big.Int `` /* 148-byte string literal not displayed */
	TotalSupply   *math_big.Int `` /* 144-byte string literal not displayed */
	MinStep       *math_big.Int `` /* 136-byte string literal not displayed */
	NodePrice     *math_big.Int `` /* 140-byte string literal not displayed */
	UnJailPrice   *math_big.Int `` /* 144-byte string literal not displayed */
}

func (*ValidatorConfig) Descriptor added in v1.1.15

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

func (*ValidatorConfig) Equal added in v1.1.15

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

func (*ValidatorConfig) GetMinStakeValue added in v1.1.15

func (m *ValidatorConfig) GetMinStakeValue() *math_big.Int

func (*ValidatorConfig) GetMinStep added in v1.1.15

func (m *ValidatorConfig) GetMinStep() *math_big.Int

func (*ValidatorConfig) GetNodePrice added in v1.1.15

func (m *ValidatorConfig) GetNodePrice() *math_big.Int

func (*ValidatorConfig) GetTotalSupply added in v1.1.15

func (m *ValidatorConfig) GetTotalSupply() *math_big.Int

func (*ValidatorConfig) GetUnJailPrice added in v1.1.15

func (m *ValidatorConfig) GetUnJailPrice() *math_big.Int

func (*ValidatorConfig) GoString added in v1.1.15

func (this *ValidatorConfig) GoString() string

func (*ValidatorConfig) Marshal added in v1.1.15

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

func (*ValidatorConfig) MarshalTo added in v1.1.15

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

func (*ValidatorConfig) MarshalToSizedBuffer added in v1.1.15

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

func (*ValidatorConfig) ProtoMessage added in v1.1.15

func (*ValidatorConfig) ProtoMessage()

func (*ValidatorConfig) Reset added in v1.1.15

func (m *ValidatorConfig) Reset()

func (*ValidatorConfig) Size added in v1.1.15

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

func (*ValidatorConfig) String added in v1.1.15

func (this *ValidatorConfig) String() string

func (*ValidatorConfig) Unmarshal added in v1.1.15

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

func (*ValidatorConfig) XXX_DiscardUnknown added in v1.1.15

func (m *ValidatorConfig) XXX_DiscardUnknown()

func (*ValidatorConfig) XXX_Marshal added in v1.1.15

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

func (*ValidatorConfig) XXX_Merge added in v1.1.15

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

func (*ValidatorConfig) XXX_Size added in v1.1.15

func (m *ValidatorConfig) XXX_Size() int

func (*ValidatorConfig) XXX_Unmarshal added in v1.1.15

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

type ValidatorData added in v1.0.133

type ValidatorData struct {
	Delegators []*VoterData `protobuf:"bytes,1,rep,name=Delegators,proto3" json:"Delegators"`
	NumNodes   int32        `protobuf:"varint,2,opt,name=NumNodes,proto3" json:"NumNodes"`
}

func (*ValidatorData) Descriptor added in v1.0.133

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

func (*ValidatorData) Equal added in v1.0.133

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

func (*ValidatorData) GetDelegators added in v1.0.133

func (m *ValidatorData) GetDelegators() []*VoterData

func (*ValidatorData) GetNumNodes added in v1.0.133

func (m *ValidatorData) GetNumNodes() int32

func (*ValidatorData) GoString added in v1.0.133

func (this *ValidatorData) GoString() string

func (*ValidatorData) Marshal added in v1.0.133

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

func (*ValidatorData) MarshalTo added in v1.0.133

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

func (*ValidatorData) MarshalToSizedBuffer added in v1.0.133

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

func (*ValidatorData) ProtoMessage added in v1.0.133

func (*ValidatorData) ProtoMessage()

func (*ValidatorData) Reset added in v1.0.133

func (m *ValidatorData) Reset()

func (*ValidatorData) Size added in v1.0.133

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

func (*ValidatorData) String added in v1.0.133

func (this *ValidatorData) String() string

func (*ValidatorData) Unmarshal added in v1.0.133

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

func (*ValidatorData) XXX_DiscardUnknown added in v1.0.133

func (m *ValidatorData) XXX_DiscardUnknown()

func (*ValidatorData) XXX_Marshal added in v1.0.133

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

func (*ValidatorData) XXX_Merge added in v1.0.133

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

func (*ValidatorData) XXX_Size added in v1.0.133

func (m *ValidatorData) XXX_Size() int

func (*ValidatorData) XXX_Unmarshal added in v1.0.133

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

type ValidatorDataV1 added in v1.1.15

type ValidatorDataV1 struct {
	RegisterNonce   uint64        `protobuf:"varint,1,opt,name=RegisterNonce,proto3" json:"RegisterNonce"`
	Epoch           uint32        `protobuf:"varint,2,opt,name=Epoch,proto3" json:"Epoch"`
	RewardAddress   []byte        `protobuf:"bytes,3,opt,name=RewardAddress,proto3" json:"RewardAddress"`
	TotalStakeValue *math_big.Int `` /* 152-byte string literal not displayed */
	LockedStake     *math_big.Int `` /* 144-byte string literal not displayed */
	MaxStakePerNode *math_big.Int `` /* 152-byte string literal not displayed */
	BlsPubKeys      [][]byte      `protobuf:"bytes,7,rep,name=BlsPubKeys,proto3" json:"BlsPubKeys"`
	NumRegistered   uint32        `protobuf:"varint,8,opt,name=NumRegistered,proto3" json:"NumRegistered"`
}

func (*ValidatorDataV1) Descriptor added in v1.1.15

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

func (*ValidatorDataV1) Equal added in v1.1.15

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

func (*ValidatorDataV1) GetBlsPubKeys added in v1.1.15

func (m *ValidatorDataV1) GetBlsPubKeys() [][]byte

func (*ValidatorDataV1) GetEpoch added in v1.1.15

func (m *ValidatorDataV1) GetEpoch() uint32

func (*ValidatorDataV1) GetLockedStake added in v1.1.15

func (m *ValidatorDataV1) GetLockedStake() *math_big.Int

func (*ValidatorDataV1) GetMaxStakePerNode added in v1.1.15

func (m *ValidatorDataV1) GetMaxStakePerNode() *math_big.Int

func (*ValidatorDataV1) GetNumRegistered added in v1.1.15

func (m *ValidatorDataV1) GetNumRegistered() uint32

func (*ValidatorDataV1) GetRegisterNonce added in v1.1.15

func (m *ValidatorDataV1) GetRegisterNonce() uint64

func (*ValidatorDataV1) GetRewardAddress added in v1.1.15

func (m *ValidatorDataV1) GetRewardAddress() []byte

func (*ValidatorDataV1) GetTotalStakeValue added in v1.1.15

func (m *ValidatorDataV1) GetTotalStakeValue() *math_big.Int

func (*ValidatorDataV1) GoString added in v1.1.15

func (this *ValidatorDataV1) GoString() string

func (*ValidatorDataV1) Marshal added in v1.1.15

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

func (*ValidatorDataV1) MarshalTo added in v1.1.15

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

func (*ValidatorDataV1) MarshalToSizedBuffer added in v1.1.15

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

func (*ValidatorDataV1) ProtoMessage added in v1.1.15

func (*ValidatorDataV1) ProtoMessage()

func (*ValidatorDataV1) Reset added in v1.1.15

func (m *ValidatorDataV1) Reset()

func (*ValidatorDataV1) Size added in v1.1.15

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

func (*ValidatorDataV1) String added in v1.1.15

func (this *ValidatorDataV1) String() string

func (*ValidatorDataV1) Unmarshal added in v1.1.15

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

func (*ValidatorDataV1) XXX_DiscardUnknown added in v1.1.15

func (m *ValidatorDataV1) XXX_DiscardUnknown()

func (*ValidatorDataV1) XXX_Marshal added in v1.1.15

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

func (*ValidatorDataV1) XXX_Merge added in v1.1.15

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

func (*ValidatorDataV1) XXX_Size added in v1.1.15

func (m *ValidatorDataV1) XXX_Size() int

func (*ValidatorDataV1) XXX_Unmarshal added in v1.1.15

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

type ValidatorDataV2 added in v1.1.15

type ValidatorDataV2 struct {
	RegisterNonce   uint64           `protobuf:"varint,1,opt,name=RegisterNonce,proto3" json:"RegisterNonce"`
	Epoch           uint32           `protobuf:"varint,2,opt,name=Epoch,proto3" json:"Epoch"`
	RewardAddress   []byte           `protobuf:"bytes,3,opt,name=RewardAddress,proto3" json:"RewardAddress"`
	TotalStakeValue *math_big.Int    `` /* 152-byte string literal not displayed */
	LockedStake     *math_big.Int    `` /* 144-byte string literal not displayed */
	MaxStakePerNode *math_big.Int    `` /* 152-byte string literal not displayed */
	BlsPubKeys      [][]byte         `protobuf:"bytes,7,rep,name=BlsPubKeys,proto3" json:"BlsPubKeys"`
	NumRegistered   uint32           `protobuf:"varint,8,opt,name=NumRegistered,proto3" json:"NumRegistered"`
	UnstakedInfo    []*UnstakedValue `protobuf:"bytes,9,rep,name=UnstakedInfo,proto3" json:"UnstakedInfo"`
	TotalUnstaked   *math_big.Int    `` /* 149-byte string literal not displayed */
}

func (*ValidatorDataV2) Descriptor added in v1.1.15

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

func (*ValidatorDataV2) Equal added in v1.1.15

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

func (*ValidatorDataV2) GetBlsPubKeys added in v1.1.15

func (m *ValidatorDataV2) GetBlsPubKeys() [][]byte

func (*ValidatorDataV2) GetEpoch added in v1.1.15

func (m *ValidatorDataV2) GetEpoch() uint32

func (*ValidatorDataV2) GetLockedStake added in v1.1.15

func (m *ValidatorDataV2) GetLockedStake() *math_big.Int

func (*ValidatorDataV2) GetMaxStakePerNode added in v1.1.15

func (m *ValidatorDataV2) GetMaxStakePerNode() *math_big.Int

func (*ValidatorDataV2) GetNumRegistered added in v1.1.15

func (m *ValidatorDataV2) GetNumRegistered() uint32

func (*ValidatorDataV2) GetRegisterNonce added in v1.1.15

func (m *ValidatorDataV2) GetRegisterNonce() uint64

func (*ValidatorDataV2) GetRewardAddress added in v1.1.15

func (m *ValidatorDataV2) GetRewardAddress() []byte

func (*ValidatorDataV2) GetTotalStakeValue added in v1.1.15

func (m *ValidatorDataV2) GetTotalStakeValue() *math_big.Int

func (*ValidatorDataV2) GetTotalUnstaked added in v1.1.15

func (m *ValidatorDataV2) GetTotalUnstaked() *math_big.Int

func (*ValidatorDataV2) GetUnstakedInfo added in v1.1.15

func (m *ValidatorDataV2) GetUnstakedInfo() []*UnstakedValue

func (*ValidatorDataV2) GoString added in v1.1.15

func (this *ValidatorDataV2) GoString() string

func (*ValidatorDataV2) Marshal added in v1.1.15

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

func (*ValidatorDataV2) MarshalTo added in v1.1.15

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

func (*ValidatorDataV2) MarshalToSizedBuffer added in v1.1.15

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

func (*ValidatorDataV2) ProtoMessage added in v1.1.15

func (*ValidatorDataV2) ProtoMessage()

func (*ValidatorDataV2) Reset added in v1.1.15

func (m *ValidatorDataV2) Reset()

func (*ValidatorDataV2) Size added in v1.1.15

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

func (*ValidatorDataV2) String added in v1.1.15

func (this *ValidatorDataV2) String() string

func (*ValidatorDataV2) Unmarshal added in v1.1.15

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

func (*ValidatorDataV2) XXX_DiscardUnknown added in v1.1.15

func (m *ValidatorDataV2) XXX_DiscardUnknown()

func (*ValidatorDataV2) XXX_Marshal added in v1.1.15

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

func (*ValidatorDataV2) XXX_Merge added in v1.1.15

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

func (*ValidatorDataV2) XXX_Size added in v1.1.15

func (m *ValidatorDataV2) XXX_Size() int

func (*ValidatorDataV2) XXX_Unmarshal added in v1.1.15

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

type VoteData added in v1.0.133

type VoteData struct {
	NumVotes  int32  `protobuf:"varint,1,opt,name=NumVotes,proto3" json:"VoteData"`
	VoteValue string `protobuf:"bytes,2,opt,name=VoteValue,proto3" json:"VoteValue"`
}

func (*VoteData) Descriptor added in v1.0.133

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

func (*VoteData) Equal added in v1.0.133

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

func (*VoteData) GetNumVotes added in v1.0.133

func (m *VoteData) GetNumVotes() int32

func (*VoteData) GetVoteValue added in v1.0.133

func (m *VoteData) GetVoteValue() string

func (*VoteData) GoString added in v1.0.133

func (this *VoteData) GoString() string

func (*VoteData) Marshal added in v1.0.133

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

func (*VoteData) MarshalTo added in v1.0.133

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

func (*VoteData) MarshalToSizedBuffer added in v1.0.133

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

func (*VoteData) ProtoMessage added in v1.0.133

func (*VoteData) ProtoMessage()

func (*VoteData) Reset added in v1.0.133

func (m *VoteData) Reset()

func (*VoteData) Size added in v1.0.133

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

func (*VoteData) String added in v1.0.133

func (this *VoteData) String() string

func (*VoteData) Unmarshal added in v1.0.133

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

func (*VoteData) XXX_DiscardUnknown added in v1.0.133

func (m *VoteData) XXX_DiscardUnknown()

func (*VoteData) XXX_Marshal added in v1.0.133

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

func (*VoteData) XXX_Merge added in v1.0.133

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

func (*VoteData) XXX_Size added in v1.0.133

func (m *VoteData) XXX_Size() int

func (*VoteData) XXX_Unmarshal added in v1.0.133

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

type VoterData added in v1.0.133

type VoterData struct {
	Address  []byte `protobuf:"bytes,1,opt,name=Address,proto3" json:"Address"`
	NumNodes int32  `protobuf:"varint,2,opt,name=NumNodes,proto3" json:"NumNodes"`
}

func (*VoterData) Descriptor added in v1.0.133

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

func (*VoterData) Equal added in v1.0.133

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

func (*VoterData) GetAddress added in v1.0.133

func (m *VoterData) GetAddress() []byte

func (*VoterData) GetNumNodes added in v1.0.133

func (m *VoterData) GetNumNodes() int32

func (*VoterData) GoString added in v1.0.133

func (this *VoterData) GoString() string

func (*VoterData) Marshal added in v1.0.133

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

func (*VoterData) MarshalTo added in v1.0.133

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

func (*VoterData) MarshalToSizedBuffer added in v1.0.133

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

func (*VoterData) ProtoMessage added in v1.0.133

func (*VoterData) ProtoMessage()

func (*VoterData) Reset added in v1.0.133

func (m *VoterData) Reset()

func (*VoterData) Size added in v1.0.133

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

func (*VoterData) String added in v1.0.133

func (this *VoterData) String() string

func (*VoterData) Unmarshal added in v1.0.133

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

func (*VoterData) XXX_DiscardUnknown added in v1.0.133

func (m *VoterData) XXX_DiscardUnknown()

func (*VoterData) XXX_Marshal added in v1.0.133

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

func (*VoterData) XXX_Merge added in v1.0.133

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

func (*VoterData) XXX_Size added in v1.0.133

func (m *VoterData) XXX_Size() int

func (*VoterData) XXX_Unmarshal added in v1.0.133

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

type WaitingList added in v1.0.149

type WaitingList struct {
	FirstKey      []byte `protobuf:"bytes,1,opt,name=FirstKey,proto3" json:"FirstKey"`
	LastKey       []byte `protobuf:"bytes,2,opt,name=LastKey,proto3" json:"LastKey"`
	Length        uint32 `protobuf:"varint,3,opt,name=Length,proto3" json:"Length"`
	LastJailedKey []byte `protobuf:"bytes,4,opt,name=LastJailedKey,proto3" json:"LastJailedKey"`
}

func (*WaitingList) Descriptor added in v1.0.149

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

func (*WaitingList) Equal added in v1.0.149

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

func (*WaitingList) GetFirstKey added in v1.0.149

func (m *WaitingList) GetFirstKey() []byte

func (*WaitingList) GetLastJailedKey added in v1.1.1

func (m *WaitingList) GetLastJailedKey() []byte

func (*WaitingList) GetLastKey added in v1.0.149

func (m *WaitingList) GetLastKey() []byte

func (*WaitingList) GetLength added in v1.0.149

func (m *WaitingList) GetLength() uint32

func (*WaitingList) GoString added in v1.0.149

func (this *WaitingList) GoString() string

func (*WaitingList) Marshal added in v1.0.149

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

func (*WaitingList) MarshalTo added in v1.0.149

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

func (*WaitingList) MarshalToSizedBuffer added in v1.0.149

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

func (*WaitingList) ProtoMessage added in v1.0.149

func (*WaitingList) ProtoMessage()

func (*WaitingList) Reset added in v1.0.149

func (m *WaitingList) Reset()

func (*WaitingList) Size added in v1.0.149

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

func (*WaitingList) String added in v1.0.149

func (this *WaitingList) String() string

func (*WaitingList) Unmarshal added in v1.0.149

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

func (*WaitingList) XXX_DiscardUnknown added in v1.0.149

func (m *WaitingList) XXX_DiscardUnknown()

func (*WaitingList) XXX_Marshal added in v1.0.149

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

func (*WaitingList) XXX_Merge added in v1.0.149

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

func (*WaitingList) XXX_Size added in v1.0.149

func (m *WaitingList) XXX_Size() int

func (*WaitingList) XXX_Unmarshal added in v1.0.149

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

type WhiteListProposal added in v1.0.133

type WhiteListProposal struct {
	WhiteListAddress []byte `protobuf:"bytes,1,opt,name=WhiteListAddress,proto3" json:"WhiteListAddress"`
	ProposalStatus   []byte `protobuf:"bytes,2,opt,name=ProposalStatus,proto3" json:"ProposalStatus"`
}

func (*WhiteListProposal) Descriptor added in v1.0.133

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

func (*WhiteListProposal) Equal added in v1.0.133

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

func (*WhiteListProposal) GetProposalStatus added in v1.0.133

func (m *WhiteListProposal) GetProposalStatus() []byte

func (*WhiteListProposal) GetWhiteListAddress added in v1.0.133

func (m *WhiteListProposal) GetWhiteListAddress() []byte

func (*WhiteListProposal) GoString added in v1.0.133

func (this *WhiteListProposal) GoString() string

func (*WhiteListProposal) Marshal added in v1.0.133

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

func (*WhiteListProposal) MarshalTo added in v1.0.133

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

func (*WhiteListProposal) MarshalToSizedBuffer added in v1.0.133

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

func (*WhiteListProposal) ProtoMessage added in v1.0.133

func (*WhiteListProposal) ProtoMessage()

func (*WhiteListProposal) Reset added in v1.0.133

func (m *WhiteListProposal) Reset()

func (*WhiteListProposal) Size added in v1.0.133

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

func (*WhiteListProposal) String added in v1.0.133

func (this *WhiteListProposal) String() string

func (*WhiteListProposal) Unmarshal added in v1.0.133

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

func (*WhiteListProposal) XXX_DiscardUnknown added in v1.0.133

func (m *WhiteListProposal) XXX_DiscardUnknown()

func (*WhiteListProposal) XXX_Marshal added in v1.0.133

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

func (*WhiteListProposal) XXX_Merge added in v1.0.133

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

func (*WhiteListProposal) XXX_Size added in v1.0.133

func (m *WhiteListProposal) XXX_Size() int

func (*WhiteListProposal) XXX_Unmarshal added in v1.0.133

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

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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