systemSmartContracts

package
v1.4.0 Latest Latest
Warning

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

Go to latest
Published: Nov 11, 2022 License: GPL-3.0 Imports: 27 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")
)
View Source
var VoteValueType_name = map[int32]string{
	0: "Yes",
	1: "No",
	2: "Veto",
}
View Source
var VoteValueType_value = map[string]int32{
	"Yes":  0,
	"No":   1,
	"Veto": 2,
}

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(args VMContextArgs) (*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
	GovernanceSCAddress    []byte
	AddTokensAddress       []byte
	GasCost                vm.GasCost
	Marshalizer            marshal.Marshalizer
	EnableEpochsHandler    common.EnableEpochsHandler
}

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
	ConfigChangeAddress    []byte
	GasCost                vm.GasCost
	Marshalizer            marshal.Marshalizer
	EnableEpochsHandler    common.EnableEpochsHandler
}

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
	EndOfEpochSCAddress    []byte
	AddressPubKeyConverter core.PubkeyConverter
	EnableEpochsHandler    common.EnableEpochsHandler
}

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
	Marshalizer                 marshal.Marshalizer
	Hasher                      hashing.Hasher
	GovernanceSCAddress         []byte
	DelegationMgrSCAddress      []byte
	ValidatorSCAddress          []byte
	InitialWhiteListedAddresses [][]byte
	EnableEpochsHandler         common.EnableEpochsHandler
}

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
	EnableEpochsHandler  common.EnableEpochsHandler
}

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
	EndOfEpochAddress      []byte
	MinDeposit             string
	DelegationMgrSCAddress []byte
	GovernanceSCAddress    []byte
	ShardCoordinator       sharding.Coordinator
	EnableEpochsHandler    common.EnableEpochsHandler
}

ArgsValidatorSmartContract is the arguments structure to create a new ValidatorSmartContract

type DelegationConfig added in v1.1.15

type DelegationConfig struct {
	MaxDelegationCap            *math_big.Int `` /* 159-byte string literal not displayed */
	InitialOwnerFunds           *math_big.Int `` /* 161-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"`
	UnBondPeriodInEpochs        uint32        `protobuf:"varint,6,opt,name=UnBondPeriodInEpochs,proto3" json:"UnBondPeriodInEpochs"`
	CheckCapOnReDelegateRewards bool          `protobuf:"varint,7,opt,name=CheckCapOnReDelegateRewards,proto3" json:"CheckCapOnReDelegateRewards"`
}

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) GetCheckCapOnReDelegateRewards added in v1.1.29

func (m *DelegationConfig) GetCheckCapOnReDelegateRewards() 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) GetUnBondPeriodInEpochs added in v1.1.37

func (m *DelegationConfig) GetUnBondPeriodInEpochs() uint32

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 {
	StakedKeys    []*NodesData `protobuf:"bytes,1,rep,name=StakedKeys,proto3" json:"StakedKeys"`
	NotStakedKeys []*NodesData `protobuf:"bytes,2,rep,name=NotStakedKeys,proto3" json:"NotStakedKeys"`
	UnStakedKeys  []*NodesData `protobuf:"bytes,3,rep,name=UnStakedKeys,proto3" json:"UnStakedKeys"`
	NumUsers      uint64       `protobuf:"varint,4,opt,name=NumUsers,proto3" json:"NumUsers"`
}

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) GetNotStakedKeys added in v1.1.15

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

func (*DelegationContractStatus) GetNumUsers added in v1.1.29

func (m *DelegationContractStatus) GetNumUsers() uint64

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"`
	MinDeposit          *math_big.Int `` /* 147-byte string literal not displayed */
	MinDelegationAmount *math_big.Int `` /* 165-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) 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) GetMinDelegationAmount added in v1.1.33

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

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 DelegationMetaData added in v1.1.29

type DelegationMetaData struct {
	Name       []byte `protobuf:"bytes,1,opt,name=Name,proto3" json:"Name"`
	Website    []byte `protobuf:"bytes,2,opt,name=Website,proto3" json:"Website"`
	Identifier []byte `protobuf:"bytes,3,opt,name=Identifier,proto3" json:"Identifier"`
}

func (*DelegationMetaData) Descriptor added in v1.1.29

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

func (*DelegationMetaData) Equal added in v1.1.29

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

func (*DelegationMetaData) GetIdentifier added in v1.1.29

func (m *DelegationMetaData) GetIdentifier() []byte

func (*DelegationMetaData) GetName added in v1.1.29

func (m *DelegationMetaData) GetName() []byte

func (*DelegationMetaData) GetWebsite added in v1.1.29

func (m *DelegationMetaData) GetWebsite() []byte

func (*DelegationMetaData) GoString added in v1.1.29

func (this *DelegationMetaData) GoString() string

func (*DelegationMetaData) Marshal added in v1.1.29

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

func (*DelegationMetaData) MarshalTo added in v1.1.29

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

func (*DelegationMetaData) MarshalToSizedBuffer added in v1.1.29

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

func (*DelegationMetaData) ProtoMessage added in v1.1.29

func (*DelegationMetaData) ProtoMessage()

func (*DelegationMetaData) Reset added in v1.1.29

func (m *DelegationMetaData) Reset()

func (*DelegationMetaData) Size added in v1.1.29

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

func (*DelegationMetaData) String added in v1.1.29

func (this *DelegationMetaData) String() string

func (*DelegationMetaData) Unmarshal added in v1.1.29

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

func (*DelegationMetaData) XXX_DiscardUnknown added in v1.1.29

func (m *DelegationMetaData) XXX_DiscardUnknown()

func (*DelegationMetaData) XXX_Marshal added in v1.1.29

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

func (*DelegationMetaData) XXX_Merge added in v1.1.29

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

func (*DelegationMetaData) XXX_Size added in v1.1.29

func (m *DelegationMetaData) XXX_Size() int

func (*DelegationMetaData) XXX_Unmarshal added in v1.1.29

func (m *DelegationMetaData) 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 `` /* 159-byte string literal not displayed */
	TotalCumulatedRewards *math_big.Int `` /* 169-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) GetTotalCumulatedRewards added in v1.1.29

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

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 `` /* 157-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 ESDTDataV1 added in v1.2.23

type ESDTDataV1 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"`
	TokenType                []byte        `protobuf:"bytes,4,opt,name=TokenType,proto3" json:"TokenType"`
	Mintable                 bool          `protobuf:"varint,5,opt,name=Mintable,proto3" json:"Mintable"`
	Burnable                 bool          `protobuf:"varint,6,opt,name=Burnable,proto3" json:"Burnable"`
	CanPause                 bool          `protobuf:"varint,7,opt,name=CanPause,proto3" json:"CanPause"`
	CanFreeze                bool          `protobuf:"varint,8,opt,name=CanFreeze,proto3" json:"CanFreeze"`
	CanWipe                  bool          `protobuf:"varint,9,opt,name=CanWipe,proto3" json:"CanWipe"`
	Upgradable               bool          `protobuf:"varint,10,opt,name=Upgradable,proto3" json:"CanUpgrade"`
	CanChangeOwner           bool          `protobuf:"varint,11,opt,name=CanChangeOwner,proto3" json:"CanChangeOwner"`
	IsPaused                 bool          `protobuf:"varint,12,opt,name=IsPaused,proto3" json:"IsPaused"`
	MintedValue              *math_big.Int `` /* 150-byte string literal not displayed */
	BurntValue               *math_big.Int `` /* 148-byte string literal not displayed */
	NumDecimals              uint32        `protobuf:"varint,15,opt,name=NumDecimals,proto3" json:"NumDecimals"`
	CanAddSpecialRoles       bool          `protobuf:"varint,16,opt,name=CanAddSpecialRoles,proto3" json:"CanAddSpecialRoles"`
	NFTCreateStopped         bool          `protobuf:"varint,17,opt,name=NFTCreateStopped,proto3" json:"NFTCreateStopped"`
	CanTransferNFTCreateRole bool          `protobuf:"varint,18,opt,name=CanTransferNFTCreateRole,proto3" json:"CanTransferNFTCreateRole"`
	SpecialRoles             []*ESDTRoles  `protobuf:"bytes,19,rep,name=SpecialRoles,proto3" json:"SpecialRoles"`
	NumWiped                 uint32        `protobuf:"varint,20,opt,name=NumWiped,proto3" json:"NumWiped"`
}

func (*ESDTDataV1) Descriptor added in v1.2.23

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

func (*ESDTDataV1) Equal added in v1.2.23

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

func (*ESDTDataV1) GetBurnable added in v1.2.23

func (m *ESDTDataV1) GetBurnable() bool

func (*ESDTDataV1) GetBurntValue added in v1.2.23

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

func (*ESDTDataV1) GetCanAddSpecialRoles added in v1.2.23

func (m *ESDTDataV1) GetCanAddSpecialRoles() bool

func (*ESDTDataV1) GetCanChangeOwner added in v1.2.23

func (m *ESDTDataV1) GetCanChangeOwner() bool

func (*ESDTDataV1) GetCanFreeze added in v1.2.23

func (m *ESDTDataV1) GetCanFreeze() bool

func (*ESDTDataV1) GetCanPause added in v1.2.23

func (m *ESDTDataV1) GetCanPause() bool

func (*ESDTDataV1) GetCanTransferNFTCreateRole added in v1.2.23

func (m *ESDTDataV1) GetCanTransferNFTCreateRole() bool

func (*ESDTDataV1) GetCanWipe added in v1.2.23

func (m *ESDTDataV1) GetCanWipe() bool

func (*ESDTDataV1) GetIsPaused added in v1.2.23

func (m *ESDTDataV1) GetIsPaused() bool

func (*ESDTDataV1) GetMintable added in v1.2.23

func (m *ESDTDataV1) GetMintable() bool

func (*ESDTDataV1) GetMintedValue added in v1.2.23

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

func (*ESDTDataV1) GetNFTCreateStopped added in v1.2.23

func (m *ESDTDataV1) GetNFTCreateStopped() bool

func (*ESDTDataV1) GetNumDecimals added in v1.2.23

func (m *ESDTDataV1) GetNumDecimals() uint32

func (*ESDTDataV1) GetNumWiped added in v1.2.23

func (m *ESDTDataV1) GetNumWiped() uint32

func (*ESDTDataV1) GetOwnerAddress added in v1.2.23

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

func (*ESDTDataV1) GetSpecialRoles added in v1.2.23

func (m *ESDTDataV1) GetSpecialRoles() []*ESDTRoles

func (*ESDTDataV1) GetTickerName added in v1.2.23

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

func (*ESDTDataV1) GetTokenName added in v1.2.23

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

func (*ESDTDataV1) GetTokenType added in v1.2.23

func (m *ESDTDataV1) GetTokenType() []byte

func (*ESDTDataV1) GetUpgradable added in v1.2.23

func (m *ESDTDataV1) GetUpgradable() bool

func (*ESDTDataV1) GoString added in v1.2.23

func (this *ESDTDataV1) GoString() string

func (*ESDTDataV1) Marshal added in v1.2.23

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

func (*ESDTDataV1) MarshalTo added in v1.2.23

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

func (*ESDTDataV1) MarshalToSizedBuffer added in v1.2.23

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

func (*ESDTDataV1) ProtoMessage added in v1.2.23

func (*ESDTDataV1) ProtoMessage()

func (*ESDTDataV1) Reset added in v1.2.23

func (m *ESDTDataV1) Reset()

func (*ESDTDataV1) Size added in v1.2.23

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

func (*ESDTDataV1) String added in v1.2.23

func (this *ESDTDataV1) String() string

func (*ESDTDataV1) Unmarshal added in v1.2.23

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

func (*ESDTDataV1) XXX_DiscardUnknown added in v1.2.23

func (m *ESDTDataV1) XXX_DiscardUnknown()

func (*ESDTDataV1) XXX_Marshal added in v1.2.23

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

func (*ESDTDataV1) XXX_Merge added in v1.2.23

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

func (*ESDTDataV1) XXX_Size added in v1.2.23

func (m *ESDTDataV1) XXX_Size() int

func (*ESDTDataV1) XXX_Unmarshal added in v1.2.23

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

type ESDTDataV2 added in v1.2.23

type ESDTDataV2 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"`
	TokenType                []byte        `protobuf:"bytes,4,opt,name=TokenType,proto3" json:"TokenType"`
	Mintable                 bool          `protobuf:"varint,5,opt,name=Mintable,proto3" json:"Mintable"`
	Burnable                 bool          `protobuf:"varint,6,opt,name=Burnable,proto3" json:"Burnable"`
	CanPause                 bool          `protobuf:"varint,7,opt,name=CanPause,proto3" json:"CanPause"`
	CanFreeze                bool          `protobuf:"varint,8,opt,name=CanFreeze,proto3" json:"CanFreeze"`
	CanWipe                  bool          `protobuf:"varint,9,opt,name=CanWipe,proto3" json:"CanWipe"`
	Upgradable               bool          `protobuf:"varint,10,opt,name=Upgradable,proto3" json:"CanUpgrade"`
	CanChangeOwner           bool          `protobuf:"varint,11,opt,name=CanChangeOwner,proto3" json:"CanChangeOwner"`
	IsPaused                 bool          `protobuf:"varint,12,opt,name=IsPaused,proto3" json:"IsPaused"`
	MintedValue              *math_big.Int `` /* 150-byte string literal not displayed */
	BurntValue               *math_big.Int `` /* 148-byte string literal not displayed */
	NumDecimals              uint32        `protobuf:"varint,15,opt,name=NumDecimals,proto3" json:"NumDecimals"`
	CanAddSpecialRoles       bool          `protobuf:"varint,16,opt,name=CanAddSpecialRoles,proto3" json:"CanAddSpecialRoles"`
	NFTCreateStopped         bool          `protobuf:"varint,17,opt,name=NFTCreateStopped,proto3" json:"NFTCreateStopped"`
	CanTransferNFTCreateRole bool          `protobuf:"varint,18,opt,name=CanTransferNFTCreateRole,proto3" json:"CanTransferNFTCreateRole"`
	SpecialRoles             []*ESDTRoles  `protobuf:"bytes,19,rep,name=SpecialRoles,proto3" json:"SpecialRoles"`
	NumWiped                 uint32        `protobuf:"varint,20,opt,name=NumWiped,proto3" json:"NumWiped"`
	CanCreateMultiShard      bool          `protobuf:"varint,21,opt,name=CanCreateMultiShard,proto3" json:"CanCreateMultiShard"`
}

func (*ESDTDataV2) Descriptor added in v1.2.23

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

func (*ESDTDataV2) Equal added in v1.2.23

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

func (*ESDTDataV2) GetBurnable added in v1.2.23

func (m *ESDTDataV2) GetBurnable() bool

func (*ESDTDataV2) GetBurntValue added in v1.2.23

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

func (*ESDTDataV2) GetCanAddSpecialRoles added in v1.2.23

func (m *ESDTDataV2) GetCanAddSpecialRoles() bool

func (*ESDTDataV2) GetCanChangeOwner added in v1.2.23

func (m *ESDTDataV2) GetCanChangeOwner() bool

func (*ESDTDataV2) GetCanCreateMultiShard added in v1.2.23

func (m *ESDTDataV2) GetCanCreateMultiShard() bool

func (*ESDTDataV2) GetCanFreeze added in v1.2.23

func (m *ESDTDataV2) GetCanFreeze() bool

func (*ESDTDataV2) GetCanPause added in v1.2.23

func (m *ESDTDataV2) GetCanPause() bool

func (*ESDTDataV2) GetCanTransferNFTCreateRole added in v1.2.23

func (m *ESDTDataV2) GetCanTransferNFTCreateRole() bool

func (*ESDTDataV2) GetCanWipe added in v1.2.23

func (m *ESDTDataV2) GetCanWipe() bool

func (*ESDTDataV2) GetIsPaused added in v1.2.23

func (m *ESDTDataV2) GetIsPaused() bool

func (*ESDTDataV2) GetMintable added in v1.2.23

func (m *ESDTDataV2) GetMintable() bool

func (*ESDTDataV2) GetMintedValue added in v1.2.23

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

func (*ESDTDataV2) GetNFTCreateStopped added in v1.2.23

func (m *ESDTDataV2) GetNFTCreateStopped() bool

func (*ESDTDataV2) GetNumDecimals added in v1.2.23

func (m *ESDTDataV2) GetNumDecimals() uint32

func (*ESDTDataV2) GetNumWiped added in v1.2.23

func (m *ESDTDataV2) GetNumWiped() uint32

func (*ESDTDataV2) GetOwnerAddress added in v1.2.23

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

func (*ESDTDataV2) GetSpecialRoles added in v1.2.23

func (m *ESDTDataV2) GetSpecialRoles() []*ESDTRoles

func (*ESDTDataV2) GetTickerName added in v1.2.23

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

func (*ESDTDataV2) GetTokenName added in v1.2.23

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

func (*ESDTDataV2) GetTokenType added in v1.2.23

func (m *ESDTDataV2) GetTokenType() []byte

func (*ESDTDataV2) GetUpgradable added in v1.2.23

func (m *ESDTDataV2) GetUpgradable() bool

func (*ESDTDataV2) GoString added in v1.2.23

func (this *ESDTDataV2) GoString() string

func (*ESDTDataV2) Marshal added in v1.2.23

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

func (*ESDTDataV2) MarshalTo added in v1.2.23

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

func (*ESDTDataV2) MarshalToSizedBuffer added in v1.2.23

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

func (*ESDTDataV2) ProtoMessage added in v1.2.23

func (*ESDTDataV2) ProtoMessage()

func (*ESDTDataV2) Reset added in v1.2.23

func (m *ESDTDataV2) Reset()

func (*ESDTDataV2) Size added in v1.2.23

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

func (*ESDTDataV2) String added in v1.2.23

func (this *ESDTDataV2) String() string

func (*ESDTDataV2) Unmarshal added in v1.2.23

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

func (*ESDTDataV2) XXX_DiscardUnknown added in v1.2.23

func (m *ESDTDataV2) XXX_DiscardUnknown()

func (*ESDTDataV2) XXX_Marshal added in v1.2.23

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

func (*ESDTDataV2) XXX_Merge added in v1.2.23

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

func (*ESDTDataV2) XXX_Size added in v1.2.23

func (m *ESDTDataV2) XXX_Size() int

func (*ESDTDataV2) XXX_Unmarshal added in v1.2.23

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

type ESDTRoles added in v1.1.39

type ESDTRoles struct {
	Address []byte   `protobuf:"bytes,1,opt,name=Address,proto3" json:"Address"`
	Roles   [][]byte `protobuf:"bytes,2,rep,name=Roles,proto3" json:"Roles"`
}

func (*ESDTRoles) Descriptor added in v1.1.39

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

func (*ESDTRoles) Equal added in v1.1.39

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

func (*ESDTRoles) GetAddress added in v1.1.39

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

func (*ESDTRoles) GetRoles added in v1.1.39

func (m *ESDTRoles) GetRoles() [][]byte

func (*ESDTRoles) GoString added in v1.1.39

func (this *ESDTRoles) GoString() string

func (*ESDTRoles) Marshal added in v1.1.39

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

func (*ESDTRoles) MarshalTo added in v1.1.39

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

func (*ESDTRoles) MarshalToSizedBuffer added in v1.1.39

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

func (*ESDTRoles) ProtoMessage added in v1.1.39

func (*ESDTRoles) ProtoMessage()

func (*ESDTRoles) Reset added in v1.1.39

func (m *ESDTRoles) Reset()

func (*ESDTRoles) Size added in v1.1.39

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

func (*ESDTRoles) String added in v1.1.39

func (this *ESDTRoles) String() string

func (*ESDTRoles) Unmarshal added in v1.1.39

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

func (*ESDTRoles) XXX_DiscardUnknown added in v1.1.39

func (m *ESDTRoles) XXX_DiscardUnknown()

func (*ESDTRoles) XXX_Marshal added in v1.1.39

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

func (*ESDTRoles) XXX_Merge added in v1.1.39

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

func (*ESDTRoles) XXX_Size added in v1.1.39

func (m *ESDTRoles) XXX_Size() int

func (*ESDTRoles) XXX_Unmarshal added in v1.1.39

func (m *ESDTRoles) 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 `` /* 137-byte string literal not displayed */
	Address []byte        `protobuf:"bytes,2,opt,name=Address,proto3" json:"Address"`
	Epoch   uint32        `protobuf:"varint,3,opt,name=Epoch,proto3" json:"Epoch"`
	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) GetEpoch added in v1.1.37

func (m *Fund) GetEpoch() uint32

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"`
	CommitHash     []byte        `protobuf:"bytes,2,opt,name=CommitHash,proto3" json:"CommitHash"`
	StartVoteNonce uint64        `protobuf:"varint,3,opt,name=StartVoteNonce,proto3" json:"StartVoteNonce"`
	EndVoteNonce   uint64        `protobuf:"varint,4,opt,name=EndVoteNonce,proto3" json:"EndVoteNonce"`
	Yes            *math_big.Int `` /* 133-byte string literal not displayed */
	No             *math_big.Int `` /* 131-byte string literal not displayed */
	Veto           *math_big.Int `` /* 135-byte string literal not displayed */
	Passed         bool          `protobuf:"varint,8,opt,name=Passed,proto3" json:"Passed"`
	Votes          [][]byte      `protobuf:"bytes,9,rep,name=Votes,proto3" json:"Votes"`
	TopReference   []byte        `protobuf:"bytes,10,opt,name=TopReference,proto3" json:"TopReference"`
	Closed         bool          `protobuf:"varint,11,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) GetCommitHash added in v1.2.1

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

func (*GeneralProposal) GetEndVoteNonce added in v1.0.133

func (m *GeneralProposal) GetEndVoteNonce() uint64

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() *math_big.Int

func (*GeneralProposal) GetPassed added in v1.2.1

func (m *GeneralProposal) GetPassed() bool

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() *math_big.Int

func (*GeneralProposal) GetVotes added in v1.2.1

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

func (*GeneralProposal) GetYes added in v1.0.133

func (m *GeneralProposal) GetYes() *math_big.Int

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 {
	TotalActive   *math_big.Int `` /* 149-byte string literal not displayed */
	TotalUnStaked *math_big.Int `` /* 153-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) 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) 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 `` /* 149-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 GovernanceConfigV2 added in v1.2.1

type GovernanceConfigV2 struct {
	MinQuorum        *math_big.Int `` /* 145-byte string literal not displayed */
	MinPassThreshold *math_big.Int `` /* 159-byte string literal not displayed */
	MinVetoThreshold *math_big.Int `` /* 159-byte string literal not displayed */
	ProposalFee      *math_big.Int `` /* 149-byte string literal not displayed */
}

func (*GovernanceConfigV2) Descriptor added in v1.2.1

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

func (*GovernanceConfigV2) Equal added in v1.2.1

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

func (*GovernanceConfigV2) GetMinPassThreshold added in v1.2.1

func (m *GovernanceConfigV2) GetMinPassThreshold() *math_big.Int

func (*GovernanceConfigV2) GetMinQuorum added in v1.2.1

func (m *GovernanceConfigV2) GetMinQuorum() *math_big.Int

func (*GovernanceConfigV2) GetMinVetoThreshold added in v1.2.1

func (m *GovernanceConfigV2) GetMinVetoThreshold() *math_big.Int

func (*GovernanceConfigV2) GetProposalFee added in v1.2.1

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

func (*GovernanceConfigV2) GoString added in v1.2.1

func (this *GovernanceConfigV2) GoString() string

func (*GovernanceConfigV2) Marshal added in v1.2.1

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

func (*GovernanceConfigV2) MarshalTo added in v1.2.1

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

func (*GovernanceConfigV2) MarshalToSizedBuffer added in v1.2.1

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

func (*GovernanceConfigV2) ProtoMessage added in v1.2.1

func (*GovernanceConfigV2) ProtoMessage()

func (*GovernanceConfigV2) Reset added in v1.2.1

func (m *GovernanceConfigV2) Reset()

func (*GovernanceConfigV2) Size added in v1.2.1

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

func (*GovernanceConfigV2) String added in v1.2.1

func (this *GovernanceConfigV2) String() string

func (*GovernanceConfigV2) Unmarshal added in v1.2.1

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

func (*GovernanceConfigV2) XXX_DiscardUnknown added in v1.2.1

func (m *GovernanceConfigV2) XXX_DiscardUnknown()

func (*GovernanceConfigV2) XXX_Marshal added in v1.2.1

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

func (*GovernanceConfigV2) XXX_Merge added in v1.2.1

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

func (*GovernanceConfigV2) XXX_Size added in v1.2.1

func (m *GovernanceConfigV2) XXX_Size() int

func (*GovernanceConfigV2) XXX_Unmarshal added in v1.2.1

func (m *GovernanceConfigV2) 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 `` /* 165-byte string literal not displayed */
	TotalActive         *math_big.Int `` /* 149-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 `` /* 147-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 `` /* 147-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 `` /* 148-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 `` /* 147-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 `` /* 148-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 {
	UnstakedEpoch uint32        `protobuf:"varint,1,opt,name=UnstakedEpoch,proto3" json:"UnstakedEpoch"`
	UnstakedValue *math_big.Int `` /* 153-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) GetUnstakedEpoch added in v1.1.37

func (m *UnstakedValue) GetUnstakedEpoch() uint32

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 VMContextArgs added in v1.4.0

type VMContextArgs struct {
	BlockChainHook      vm.BlockchainHook
	CryptoHook          vmcommon.CryptoHook
	InputParser         vm.ArgumentsParser
	ValidatorAccountsDB state.AccountsAdapter
	ChanceComputer      nodesCoordinator.ChanceComputer
	EnableEpochsHandler common.EnableEpochsHandler
}

VMContextArgs holds the arguments needed to create a new vmContext

type ValidatorConfig added in v1.1.15

type ValidatorConfig struct {
	MinStakeValue *math_big.Int `` /* 153-byte string literal not displayed */
	TotalSupply   *math_big.Int `` /* 149-byte string literal not displayed */
	MinStep       *math_big.Int `` /* 141-byte string literal not displayed */
	NodePrice     *math_big.Int `` /* 145-byte string literal not displayed */
	UnJailPrice   *math_big.Int `` /* 149-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 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 `` /* 157-byte string literal not displayed */
	LockedStake     *math_big.Int `` /* 149-byte string literal not displayed */
	MaxStakePerNode *math_big.Int `` /* 157-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    `` /* 157-byte string literal not displayed */
	LockedStake     *math_big.Int    `` /* 149-byte string literal not displayed */
	MaxStakePerNode *math_big.Int    `` /* 157-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    `` /* 154-byte string literal not displayed */
	TotalSlashed    *math_big.Int    `` /* 152-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) GetTotalSlashed added in v1.1.37

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

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 VoteDetails added in v1.2.1

type VoteDetails struct {
	Value       VoteValueType `protobuf:"varint,1,opt,name=Value,proto3,enum=proto.VoteValueType" json:"Value"`
	Power       *math_big.Int `` /* 137-byte string literal not displayed */
	Balance     *math_big.Int `` /* 141-byte string literal not displayed */
	DelegatedTo []byte        `protobuf:"bytes,4,opt,name=DelegatedTo,proto3" json:"DelegatedTo"`
}

func (*VoteDetails) Descriptor added in v1.2.1

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

func (*VoteDetails) Equal added in v1.2.1

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

func (*VoteDetails) GetBalance added in v1.2.1

func (m *VoteDetails) GetBalance() *math_big.Int

func (*VoteDetails) GetDelegatedTo added in v1.2.1

func (m *VoteDetails) GetDelegatedTo() []byte

func (*VoteDetails) GetPower added in v1.2.1

func (m *VoteDetails) GetPower() *math_big.Int

func (*VoteDetails) GetValue added in v1.2.1

func (m *VoteDetails) GetValue() VoteValueType

func (*VoteDetails) GoString added in v1.2.1

func (this *VoteDetails) GoString() string

func (*VoteDetails) Marshal added in v1.2.1

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

func (*VoteDetails) MarshalTo added in v1.2.1

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

func (*VoteDetails) MarshalToSizedBuffer added in v1.2.1

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

func (*VoteDetails) ProtoMessage added in v1.2.1

func (*VoteDetails) ProtoMessage()

func (*VoteDetails) Reset added in v1.2.1

func (m *VoteDetails) Reset()

func (*VoteDetails) Size added in v1.2.1

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

func (*VoteDetails) String added in v1.2.1

func (this *VoteDetails) String() string

func (*VoteDetails) Unmarshal added in v1.2.1

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

func (*VoteDetails) XXX_DiscardUnknown added in v1.2.1

func (m *VoteDetails) XXX_DiscardUnknown()

func (*VoteDetails) XXX_Marshal added in v1.2.1

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

func (*VoteDetails) XXX_Merge added in v1.2.1

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

func (*VoteDetails) XXX_Size added in v1.2.1

func (m *VoteDetails) XXX_Size() int

func (*VoteDetails) XXX_Unmarshal added in v1.2.1

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

type VoteSet added in v1.2.1

type VoteSet struct {
	UsedPower   *math_big.Int  `` /* 145-byte string literal not displayed */
	UsedBalance *math_big.Int  `` /* 149-byte string literal not displayed */
	TotalYes    *math_big.Int  `` /* 143-byte string literal not displayed */
	TotalNo     *math_big.Int  `` /* 141-byte string literal not displayed */
	TotalVeto   *math_big.Int  `` /* 145-byte string literal not displayed */
	VoteItems   []*VoteDetails `protobuf:"bytes,6,rep,name=VoteItems,proto3" json:"VoteItems"`
}

func (*VoteSet) Descriptor added in v1.2.1

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

func (*VoteSet) Equal added in v1.2.1

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

func (*VoteSet) GetTotalNo added in v1.2.1

func (m *VoteSet) GetTotalNo() *math_big.Int

func (*VoteSet) GetTotalVeto added in v1.2.1

func (m *VoteSet) GetTotalVeto() *math_big.Int

func (*VoteSet) GetTotalYes added in v1.2.1

func (m *VoteSet) GetTotalYes() *math_big.Int

func (*VoteSet) GetUsedBalance added in v1.2.1

func (m *VoteSet) GetUsedBalance() *math_big.Int

func (*VoteSet) GetUsedPower added in v1.2.1

func (m *VoteSet) GetUsedPower() *math_big.Int

func (*VoteSet) GetVoteItems added in v1.2.1

func (m *VoteSet) GetVoteItems() []*VoteDetails

func (*VoteSet) GoString added in v1.2.1

func (this *VoteSet) GoString() string

func (*VoteSet) Marshal added in v1.2.1

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

func (*VoteSet) MarshalTo added in v1.2.1

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

func (*VoteSet) MarshalToSizedBuffer added in v1.2.1

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

func (*VoteSet) ProtoMessage added in v1.2.1

func (*VoteSet) ProtoMessage()

func (*VoteSet) Reset added in v1.2.1

func (m *VoteSet) Reset()

func (*VoteSet) Size added in v1.2.1

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

func (*VoteSet) String added in v1.2.1

func (this *VoteSet) String() string

func (*VoteSet) Unmarshal added in v1.2.1

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

func (*VoteSet) XXX_DiscardUnknown added in v1.2.1

func (m *VoteSet) XXX_DiscardUnknown()

func (*VoteSet) XXX_Marshal added in v1.2.1

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

func (*VoteSet) XXX_Merge added in v1.2.1

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

func (*VoteSet) XXX_Size added in v1.2.1

func (m *VoteSet) XXX_Size() int

func (*VoteSet) XXX_Unmarshal added in v1.2.1

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

type VoteValueType added in v1.2.1

type VoteValueType int32
const (
	Yes  VoteValueType = 0
	No   VoteValueType = 1
	Veto VoteValueType = 2
)

func (VoteValueType) EnumDescriptor added in v1.2.1

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

func (VoteValueType) String added in v1.2.1

func (x VoteValueType) String() string

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