v1

package
v0.49.1 Latest Latest
Warning

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

Go to latest
Published: Mar 7, 2022 License: MIT Imports: 6 Imported by: 1

Documentation

Index

Constants

This section is empty.

Variables

View Source
var File_vega_checkpoint_v1_checkpoint_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type AssetBalance

type AssetBalance struct {
	Party   string `protobuf:"bytes,1,opt,name=party,proto3" json:"party,omitempty"`
	Asset   string `protobuf:"bytes,2,opt,name=asset,proto3" json:"asset,omitempty"`
	Balance string `protobuf:"bytes,3,opt,name=balance,proto3" json:"balance,omitempty"`
	// contains filtered or unexported fields
}

AssetBalance represents the total balance of a given asset for a party

func (*AssetBalance) Descriptor deprecated

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

Deprecated: Use AssetBalance.ProtoReflect.Descriptor instead.

func (*AssetBalance) GetAsset

func (x *AssetBalance) GetAsset() string

func (*AssetBalance) GetBalance

func (x *AssetBalance) GetBalance() string

func (*AssetBalance) GetParty

func (x *AssetBalance) GetParty() string

func (*AssetBalance) ProtoMessage

func (*AssetBalance) ProtoMessage()

func (*AssetBalance) ProtoReflect added in v0.49.0

func (x *AssetBalance) ProtoReflect() protoreflect.Message

func (*AssetBalance) Reset

func (x *AssetBalance) Reset()

func (*AssetBalance) String

func (x *AssetBalance) String() string

type AssetEntry

type AssetEntry struct {
	Id           string             `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	AssetDetails *vega.AssetDetails `protobuf:"bytes,2,opt,name=asset_details,json=assetDetails,proto3" json:"asset_details,omitempty"`
	// contains filtered or unexported fields
}

AssetEntrty is a single (enabled) asset

func (*AssetEntry) Descriptor deprecated

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

Deprecated: Use AssetEntry.ProtoReflect.Descriptor instead.

func (*AssetEntry) GetAssetDetails

func (x *AssetEntry) GetAssetDetails() *vega.AssetDetails

func (*AssetEntry) GetId

func (x *AssetEntry) GetId() string

func (*AssetEntry) ProtoMessage

func (*AssetEntry) ProtoMessage()

func (*AssetEntry) ProtoReflect added in v0.49.0

func (x *AssetEntry) ProtoReflect() protoreflect.Message

func (*AssetEntry) Reset

func (x *AssetEntry) Reset()

func (*AssetEntry) String

func (x *AssetEntry) String() string

type Assets

type Assets struct {
	Assets []*AssetEntry `protobuf:"bytes,1,rep,name=assets,proto3" json:"assets,omitempty"`
	// contains filtered or unexported fields
}

Assets contains all the enabled assets as AssetEntries

func (*Assets) Descriptor deprecated

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

Deprecated: Use Assets.ProtoReflect.Descriptor instead.

func (*Assets) GetAssets

func (x *Assets) GetAssets() []*AssetEntry

func (*Assets) ProtoMessage

func (*Assets) ProtoMessage()

func (*Assets) ProtoReflect added in v0.49.0

func (x *Assets) ProtoReflect() protoreflect.Message

func (*Assets) Reset

func (x *Assets) Reset()

func (*Assets) String

func (x *Assets) String() string

type Banking added in v0.48.0

type Banking struct {
	TransfersAtTime    []*ScheduledTransferAtTime `protobuf:"bytes,1,rep,name=transfers_at_time,json=transfersAtTime,proto3" json:"transfers_at_time,omitempty"`
	RecurringTransfers *RecurringTransfers        `protobuf:"bytes,2,opt,name=recurring_transfers,json=recurringTransfers,proto3" json:"recurring_transfers,omitempty"`
	// contains filtered or unexported fields
}

func (*Banking) Descriptor deprecated added in v0.48.0

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

Deprecated: Use Banking.ProtoReflect.Descriptor instead.

func (*Banking) GetRecurringTransfers added in v0.48.0

func (x *Banking) GetRecurringTransfers() *RecurringTransfers

func (*Banking) GetTransfersAtTime added in v0.48.0

func (x *Banking) GetTransfersAtTime() []*ScheduledTransferAtTime

func (*Banking) ProtoMessage added in v0.48.0

func (*Banking) ProtoMessage()

func (*Banking) ProtoReflect added in v0.49.0

func (x *Banking) ProtoReflect() protoreflect.Message

func (*Banking) Reset added in v0.48.0

func (x *Banking) Reset()

func (*Banking) String added in v0.48.0

func (x *Banking) String() string

type Block

type Block struct {
	Height int64 `protobuf:"varint,1,opt,name=height,proto3" json:"height,omitempty"`
	// contains filtered or unexported fields
}

Block message contains data related to block at which the checkpoint was created (ie block height)

func (*Block) Descriptor deprecated

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

Deprecated: Use Block.ProtoReflect.Descriptor instead.

func (*Block) GetHeight

func (x *Block) GetHeight() int64

func (*Block) ProtoMessage

func (*Block) ProtoMessage()

func (*Block) ProtoReflect added in v0.49.0

func (x *Block) ProtoReflect() protoreflect.Message

func (*Block) Reset

func (x *Block) Reset()

func (*Block) String

func (x *Block) String() string

type Checkpoint

type Checkpoint struct {
	Governance        []byte `protobuf:"bytes,1,opt,name=governance,proto3" json:"governance,omitempty"`
	Assets            []byte `protobuf:"bytes,2,opt,name=assets,proto3" json:"assets,omitempty"`
	Collateral        []byte `protobuf:"bytes,3,opt,name=collateral,proto3" json:"collateral,omitempty"`
	NetworkParameters []byte `protobuf:"bytes,4,opt,name=network_parameters,json=networkParameters,proto3" json:"network_parameters,omitempty"`
	Delegation        []byte `protobuf:"bytes,5,opt,name=delegation,proto3" json:"delegation,omitempty"`
	Epoch             []byte `protobuf:"bytes,6,opt,name=epoch,proto3" json:"epoch,omitempty"` // will just be an epoch event
	Block             []byte `protobuf:"bytes,7,opt,name=block,proto3" json:"block,omitempty"`
	Rewards           []byte `protobuf:"bytes,8,opt,name=rewards,proto3" json:"rewards,omitempty"`
	Banking           []byte `protobuf:"bytes,9,opt,name=banking,proto3" json:"banking,omitempty"`
	Validators        []byte `protobuf:"bytes,10,opt,name=validators,proto3" json:"validators,omitempty"`
	// contains filtered or unexported fields
}

Checkpoint aggregates the various engine snapshots

func (*Checkpoint) Descriptor deprecated

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

Deprecated: Use Checkpoint.ProtoReflect.Descriptor instead.

func (*Checkpoint) GetAssets

func (x *Checkpoint) GetAssets() []byte

func (*Checkpoint) GetBanking added in v0.48.0

func (x *Checkpoint) GetBanking() []byte

func (*Checkpoint) GetBlock

func (x *Checkpoint) GetBlock() []byte

func (*Checkpoint) GetCollateral

func (x *Checkpoint) GetCollateral() []byte

func (*Checkpoint) GetDelegation

func (x *Checkpoint) GetDelegation() []byte

func (*Checkpoint) GetEpoch

func (x *Checkpoint) GetEpoch() []byte

func (*Checkpoint) GetGovernance

func (x *Checkpoint) GetGovernance() []byte

func (*Checkpoint) GetNetworkParameters

func (x *Checkpoint) GetNetworkParameters() []byte

func (*Checkpoint) GetRewards added in v0.46.0

func (x *Checkpoint) GetRewards() []byte

func (*Checkpoint) GetValidators added in v0.49.0

func (x *Checkpoint) GetValidators() []byte

func (*Checkpoint) ProtoMessage

func (*Checkpoint) ProtoMessage()

func (*Checkpoint) ProtoReflect added in v0.49.0

func (x *Checkpoint) ProtoReflect() protoreflect.Message

func (*Checkpoint) Reset

func (x *Checkpoint) Reset()

func (*Checkpoint) String

func (x *Checkpoint) String() string

type CheckpointState

type CheckpointState struct {
	Hash  []byte `protobuf:"bytes,1,opt,name=hash,proto3" json:"hash,omitempty"`
	State []byte `protobuf:"bytes,2,opt,name=state,proto3" json:"state,omitempty"`
	// contains filtered or unexported fields
}

CheckpointState is the entire checkpoint serialised (basically serialised the Checkpoint message + hash)

func (*CheckpointState) Descriptor deprecated

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

Deprecated: Use CheckpointState.ProtoReflect.Descriptor instead.

func (*CheckpointState) GetHash

func (x *CheckpointState) GetHash() []byte

func (*CheckpointState) GetState

func (x *CheckpointState) GetState() []byte

func (*CheckpointState) ProtoMessage

func (*CheckpointState) ProtoMessage()

func (*CheckpointState) ProtoReflect added in v0.49.0

func (x *CheckpointState) ProtoReflect() protoreflect.Message

func (*CheckpointState) Reset

func (x *CheckpointState) Reset()

func (*CheckpointState) String

func (x *CheckpointState) String() string

type Collateral

type Collateral struct {
	Balances []*AssetBalance `protobuf:"bytes,1,rep,name=balances,proto3" json:"balances,omitempty"`
	// contains filtered or unexported fields
}

Collateral contains the balances per party

func (*Collateral) Descriptor deprecated

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

Deprecated: Use Collateral.ProtoReflect.Descriptor instead.

func (*Collateral) GetBalances

func (x *Collateral) GetBalances() []*AssetBalance

func (*Collateral) ProtoMessage

func (*Collateral) ProtoMessage()

func (*Collateral) ProtoReflect added in v0.49.0

func (x *Collateral) ProtoReflect() protoreflect.Message

func (*Collateral) Reset

func (x *Collateral) Reset()

func (*Collateral) String

func (x *Collateral) String() string

type Delegate

type Delegate struct {
	Active         []*DelegateEntry `protobuf:"bytes,1,rep,name=active,proto3" json:"active,omitempty"`
	Pending        []*DelegateEntry `protobuf:"bytes,2,rep,name=pending,proto3" json:"pending,omitempty"`
	AutoDelegation []string         `protobuf:"bytes,3,rep,name=auto_delegation,json=autoDelegation,proto3" json:"auto_delegation,omitempty"`
	// contains filtered or unexported fields
}

Delegate contains all entries for a checkpoint

func (*Delegate) Descriptor deprecated

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

Deprecated: Use Delegate.ProtoReflect.Descriptor instead.

func (*Delegate) GetActive

func (x *Delegate) GetActive() []*DelegateEntry

func (*Delegate) GetAutoDelegation

func (x *Delegate) GetAutoDelegation() []string

func (*Delegate) GetPending

func (x *Delegate) GetPending() []*DelegateEntry

func (*Delegate) ProtoMessage

func (*Delegate) ProtoMessage()

func (*Delegate) ProtoReflect added in v0.49.0

func (x *Delegate) ProtoReflect() protoreflect.Message

func (*Delegate) Reset

func (x *Delegate) Reset()

func (*Delegate) String

func (x *Delegate) String() string

type DelegateEntry

type DelegateEntry struct {
	Party      string `protobuf:"bytes,1,opt,name=party,proto3" json:"party,omitempty"`
	Node       string `protobuf:"bytes,2,opt,name=node,proto3" json:"node,omitempty"`
	Amount     string `protobuf:"bytes,3,opt,name=amount,proto3" json:"amount,omitempty"`
	Undelegate bool   `protobuf:"varint,4,opt,name=undelegate,proto3" json:"undelegate,omitempty"`
	EpochSeq   uint64 `protobuf:"varint,5,opt,name=epoch_seq,json=epochSeq,proto3" json:"epoch_seq,omitempty"`
	// contains filtered or unexported fields
}

Delegated amounts for party/node undelegate and epoch seq are only relevant for pending entries

func (*DelegateEntry) Descriptor deprecated

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

Deprecated: Use DelegateEntry.ProtoReflect.Descriptor instead.

func (*DelegateEntry) GetAmount

func (x *DelegateEntry) GetAmount() string

func (*DelegateEntry) GetEpochSeq

func (x *DelegateEntry) GetEpochSeq() uint64

func (*DelegateEntry) GetNode

func (x *DelegateEntry) GetNode() string

func (*DelegateEntry) GetParty

func (x *DelegateEntry) GetParty() string

func (*DelegateEntry) GetUndelegate

func (x *DelegateEntry) GetUndelegate() bool

func (*DelegateEntry) ProtoMessage

func (*DelegateEntry) ProtoMessage()

func (*DelegateEntry) ProtoReflect added in v0.49.0

func (x *DelegateEntry) ProtoReflect() protoreflect.Message

func (*DelegateEntry) Reset

func (x *DelegateEntry) Reset()

func (*DelegateEntry) String

func (x *DelegateEntry) String() string

type NetParams

type NetParams struct {
	Params []*vega.NetworkParameter `protobuf:"bytes,1,rep,name=params,proto3" json:"params,omitempty"`
	// contains filtered or unexported fields
}

NetParams contains all network parameters

func (*NetParams) Descriptor deprecated

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

Deprecated: Use NetParams.ProtoReflect.Descriptor instead.

func (*NetParams) GetParams

func (x *NetParams) GetParams() []*vega.NetworkParameter

func (*NetParams) ProtoMessage

func (*NetParams) ProtoMessage()

func (*NetParams) ProtoReflect added in v0.49.0

func (x *NetParams) ProtoReflect() protoreflect.Message

func (*NetParams) Reset

func (x *NetParams) Reset()

func (*NetParams) String

func (x *NetParams) String() string

type PartyAmount added in v0.46.0

type PartyAmount struct {
	Party  string `protobuf:"bytes,1,opt,name=party,proto3" json:"party,omitempty"`
	Amount string `protobuf:"bytes,2,opt,name=amount,proto3" json:"amount,omitempty"`
	// contains filtered or unexported fields
}

func (*PartyAmount) Descriptor deprecated added in v0.46.0

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

Deprecated: Use PartyAmount.ProtoReflect.Descriptor instead.

func (*PartyAmount) GetAmount added in v0.46.0

func (x *PartyAmount) GetAmount() string

func (*PartyAmount) GetParty added in v0.46.0

func (x *PartyAmount) GetParty() string

func (*PartyAmount) ProtoMessage added in v0.46.0

func (*PartyAmount) ProtoMessage()

func (*PartyAmount) ProtoReflect added in v0.49.0

func (x *PartyAmount) ProtoReflect() protoreflect.Message

func (*PartyAmount) Reset added in v0.46.0

func (x *PartyAmount) Reset()

func (*PartyAmount) String added in v0.46.0

func (x *PartyAmount) String() string

type PendingKeyRotation added in v0.47.0

type PendingKeyRotation struct {

	// Relative target block height is: target block height - current block height.
	// Useful for cross blockchain compatibility.
	RelativeTargetBlockHeight uint64 `` /* 141-byte string literal not displayed */
	NodeId                    string `protobuf:"bytes,2,opt,name=node_id,json=nodeId,proto3" json:"node_id,omitempty"`
	NewPubKey                 string `protobuf:"bytes,3,opt,name=new_pub_key,json=newPubKey,proto3" json:"new_pub_key,omitempty"`
	NewPubKeyIndex            uint32 `protobuf:"varint,4,opt,name=new_pub_key_index,json=newPubKeyIndex,proto3" json:"new_pub_key_index,omitempty"`
	// contains filtered or unexported fields
}

func (*PendingKeyRotation) Descriptor deprecated added in v0.47.0

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

Deprecated: Use PendingKeyRotation.ProtoReflect.Descriptor instead.

func (*PendingKeyRotation) GetNewPubKey added in v0.47.0

func (x *PendingKeyRotation) GetNewPubKey() string

func (*PendingKeyRotation) GetNewPubKeyIndex added in v0.47.0

func (x *PendingKeyRotation) GetNewPubKeyIndex() uint32

func (*PendingKeyRotation) GetNodeId added in v0.47.0

func (x *PendingKeyRotation) GetNodeId() string

func (*PendingKeyRotation) GetRelativeTargetBlockHeight added in v0.47.0

func (x *PendingKeyRotation) GetRelativeTargetBlockHeight() uint64

func (*PendingKeyRotation) ProtoMessage added in v0.47.0

func (*PendingKeyRotation) ProtoMessage()

func (*PendingKeyRotation) ProtoReflect added in v0.49.0

func (x *PendingKeyRotation) ProtoReflect() protoreflect.Message

func (*PendingKeyRotation) Reset added in v0.47.0

func (x *PendingKeyRotation) Reset()

func (*PendingKeyRotation) String added in v0.47.0

func (x *PendingKeyRotation) String() string

type PendingRewardPayout added in v0.46.0

type PendingRewardPayout struct {
	FromAccount string         `protobuf:"bytes,1,opt,name=from_account,json=fromAccount,proto3" json:"from_account,omitempty"`
	Asset       string         `protobuf:"bytes,2,opt,name=asset,proto3" json:"asset,omitempty"`
	PartyAmount []*PartyAmount `protobuf:"bytes,3,rep,name=party_amount,json=partyAmount,proto3" json:"party_amount,omitempty"`
	TotalReward string         `protobuf:"bytes,4,opt,name=total_reward,json=totalReward,proto3" json:"total_reward,omitempty"`
	EpochSeq    string         `protobuf:"bytes,5,opt,name=epoch_seq,json=epochSeq,proto3" json:"epoch_seq,omitempty"`
	Timestamp   int64          `protobuf:"varint,6,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
	// contains filtered or unexported fields
}

func (*PendingRewardPayout) Descriptor deprecated added in v0.46.0

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

Deprecated: Use PendingRewardPayout.ProtoReflect.Descriptor instead.

func (*PendingRewardPayout) GetAsset added in v0.46.0

func (x *PendingRewardPayout) GetAsset() string

func (*PendingRewardPayout) GetEpochSeq added in v0.46.0

func (x *PendingRewardPayout) GetEpochSeq() string

func (*PendingRewardPayout) GetFromAccount added in v0.46.0

func (x *PendingRewardPayout) GetFromAccount() string

func (*PendingRewardPayout) GetPartyAmount added in v0.46.0

func (x *PendingRewardPayout) GetPartyAmount() []*PartyAmount

func (*PendingRewardPayout) GetTimestamp added in v0.46.0

func (x *PendingRewardPayout) GetTimestamp() int64

func (*PendingRewardPayout) GetTotalReward added in v0.46.0

func (x *PendingRewardPayout) GetTotalReward() string

func (*PendingRewardPayout) ProtoMessage added in v0.46.0

func (*PendingRewardPayout) ProtoMessage()

func (*PendingRewardPayout) ProtoReflect added in v0.49.0

func (x *PendingRewardPayout) ProtoReflect() protoreflect.Message

func (*PendingRewardPayout) Reset added in v0.46.0

func (x *PendingRewardPayout) Reset()

func (*PendingRewardPayout) String added in v0.46.0

func (x *PendingRewardPayout) String() string

type Proposals

type Proposals struct {
	Proposals []*vega.Proposal `protobuf:"bytes,1,rep,name=proposals,proto3" json:"proposals,omitempty"`
	// contains filtered or unexported fields
}

Proposals will contain all accepted proposals

func (*Proposals) Descriptor deprecated

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

Deprecated: Use Proposals.ProtoReflect.Descriptor instead.

func (*Proposals) GetProposals

func (x *Proposals) GetProposals() []*vega.Proposal

func (*Proposals) ProtoMessage

func (*Proposals) ProtoMessage()

func (*Proposals) ProtoReflect added in v0.49.0

func (x *Proposals) ProtoReflect() protoreflect.Message

func (*Proposals) Reset

func (x *Proposals) Reset()

func (*Proposals) String

func (x *Proposals) String() string

type RecurringTransfers added in v0.48.0

type RecurringTransfers struct {
	RecurringTransfers []*v1.Transfer `protobuf:"bytes,1,rep,name=recurring_transfers,json=recurringTransfers,proto3" json:"recurring_transfers,omitempty"`
	// contains filtered or unexported fields
}

func (*RecurringTransfers) Descriptor deprecated added in v0.48.0

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

Deprecated: Use RecurringTransfers.ProtoReflect.Descriptor instead.

func (*RecurringTransfers) GetRecurringTransfers added in v0.48.0

func (x *RecurringTransfers) GetRecurringTransfers() []*v1.Transfer

func (*RecurringTransfers) ProtoMessage added in v0.48.0

func (*RecurringTransfers) ProtoMessage()

func (*RecurringTransfers) ProtoReflect added in v0.49.0

func (x *RecurringTransfers) ProtoReflect() protoreflect.Message

func (*RecurringTransfers) Reset added in v0.48.0

func (x *RecurringTransfers) Reset()

func (*RecurringTransfers) String added in v0.48.0

func (x *RecurringTransfers) String() string

type RewardPayout added in v0.46.0

type RewardPayout struct {
	PayoutTime    int64                  `protobuf:"varint,1,opt,name=payout_time,json=payoutTime,proto3" json:"payout_time,omitempty"`
	RewardsPayout []*PendingRewardPayout `protobuf:"bytes,2,rep,name=rewards_payout,json=rewardsPayout,proto3" json:"rewards_payout,omitempty"`
	// contains filtered or unexported fields
}

func (*RewardPayout) Descriptor deprecated added in v0.46.0

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

Deprecated: Use RewardPayout.ProtoReflect.Descriptor instead.

func (*RewardPayout) GetPayoutTime added in v0.46.0

func (x *RewardPayout) GetPayoutTime() int64

func (*RewardPayout) GetRewardsPayout added in v0.46.0

func (x *RewardPayout) GetRewardsPayout() []*PendingRewardPayout

func (*RewardPayout) ProtoMessage added in v0.46.0

func (*RewardPayout) ProtoMessage()

func (*RewardPayout) ProtoReflect added in v0.49.0

func (x *RewardPayout) ProtoReflect() protoreflect.Message

func (*RewardPayout) Reset added in v0.46.0

func (x *RewardPayout) Reset()

func (*RewardPayout) String added in v0.46.0

func (x *RewardPayout) String() string

type Rewards added in v0.46.0

type Rewards struct {
	Rewards []*RewardPayout `protobuf:"bytes,1,rep,name=rewards,proto3" json:"rewards,omitempty"`
	// contains filtered or unexported fields
}

func (*Rewards) Descriptor deprecated added in v0.46.0

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

Deprecated: Use Rewards.ProtoReflect.Descriptor instead.

func (*Rewards) GetRewards added in v0.46.0

func (x *Rewards) GetRewards() []*RewardPayout

func (*Rewards) ProtoMessage added in v0.46.0

func (*Rewards) ProtoMessage()

func (*Rewards) ProtoReflect added in v0.49.0

func (x *Rewards) ProtoReflect() protoreflect.Message

func (*Rewards) Reset added in v0.46.0

func (x *Rewards) Reset()

func (*Rewards) String added in v0.46.0

func (x *Rewards) String() string

type ScheduledTransfer added in v0.48.0

type ScheduledTransfer struct {
	Transfer       *vega.Transfer   `protobuf:"bytes,1,opt,name=transfer,proto3" json:"transfer,omitempty"`
	AccountType    vega.AccountType `protobuf:"varint,2,opt,name=account_type,json=accountType,proto3,enum=vega.AccountType" json:"account_type,omitempty"`
	Reference      string           `protobuf:"bytes,3,opt,name=reference,proto3" json:"reference,omitempty"`
	OneoffTransfer *v1.Transfer     `protobuf:"bytes,4,opt,name=oneoff_transfer,json=oneoffTransfer,proto3" json:"oneoff_transfer,omitempty"`
	// contains filtered or unexported fields
}

func (*ScheduledTransfer) Descriptor deprecated added in v0.48.0

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

Deprecated: Use ScheduledTransfer.ProtoReflect.Descriptor instead.

func (*ScheduledTransfer) GetAccountType added in v0.48.0

func (x *ScheduledTransfer) GetAccountType() vega.AccountType

func (*ScheduledTransfer) GetOneoffTransfer added in v0.48.0

func (x *ScheduledTransfer) GetOneoffTransfer() *v1.Transfer

func (*ScheduledTransfer) GetReference added in v0.48.0

func (x *ScheduledTransfer) GetReference() string

func (*ScheduledTransfer) GetTransfer added in v0.48.0

func (x *ScheduledTransfer) GetTransfer() *vega.Transfer

func (*ScheduledTransfer) ProtoMessage added in v0.48.0

func (*ScheduledTransfer) ProtoMessage()

func (*ScheduledTransfer) ProtoReflect added in v0.49.0

func (x *ScheduledTransfer) ProtoReflect() protoreflect.Message

func (*ScheduledTransfer) Reset added in v0.48.0

func (x *ScheduledTransfer) Reset()

func (*ScheduledTransfer) String added in v0.48.0

func (x *ScheduledTransfer) String() string

type ScheduledTransferAtTime added in v0.48.0

type ScheduledTransferAtTime struct {
	DeliverOn int64                `protobuf:"varint,1,opt,name=deliver_on,json=deliverOn,proto3" json:"deliver_on,omitempty"`
	Transfers []*ScheduledTransfer `protobuf:"bytes,2,rep,name=transfers,proto3" json:"transfers,omitempty"`
	// contains filtered or unexported fields
}

func (*ScheduledTransferAtTime) Descriptor deprecated added in v0.48.0

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

Deprecated: Use ScheduledTransferAtTime.ProtoReflect.Descriptor instead.

func (*ScheduledTransferAtTime) GetDeliverOn added in v0.48.0

func (x *ScheduledTransferAtTime) GetDeliverOn() int64

func (*ScheduledTransferAtTime) GetTransfers added in v0.48.0

func (x *ScheduledTransferAtTime) GetTransfers() []*ScheduledTransfer

func (*ScheduledTransferAtTime) ProtoMessage added in v0.48.0

func (*ScheduledTransferAtTime) ProtoMessage()

func (*ScheduledTransferAtTime) ProtoReflect added in v0.49.0

func (x *ScheduledTransferAtTime) ProtoReflect() protoreflect.Message

func (*ScheduledTransferAtTime) Reset added in v0.48.0

func (x *ScheduledTransferAtTime) Reset()

func (*ScheduledTransferAtTime) String added in v0.48.0

func (x *ScheduledTransferAtTime) String() string

type ValidatorState added in v0.49.0

type ValidatorState struct {
	ValidatorUpdate    *v1.ValidatorUpdate `protobuf:"bytes,1,opt,name=validator_update,json=validatorUpdate,proto3" json:"validator_update,omitempty"`
	Status             int32               `protobuf:"varint,2,opt,name=status,proto3" json:"status,omitempty"`
	EthEventsForwarded uint64              `protobuf:"varint,3,opt,name=eth_events_forwarded,json=ethEventsForwarded,proto3" json:"eth_events_forwarded,omitempty"`
	ValidatorPower     int64               `protobuf:"varint,4,opt,name=validator_power,json=validatorPower,proto3" json:"validator_power,omitempty"`
	RankingScore       *vega.RankingScore  `protobuf:"bytes,5,opt,name=ranking_score,json=rankingScore,proto3" json:"ranking_score,omitempty"`
	// contains filtered or unexported fields
}

func (*ValidatorState) Descriptor deprecated added in v0.49.0

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

Deprecated: Use ValidatorState.ProtoReflect.Descriptor instead.

func (*ValidatorState) GetEthEventsForwarded added in v0.49.0

func (x *ValidatorState) GetEthEventsForwarded() uint64

func (*ValidatorState) GetRankingScore added in v0.49.1

func (x *ValidatorState) GetRankingScore() *vega.RankingScore

func (*ValidatorState) GetStatus added in v0.49.0

func (x *ValidatorState) GetStatus() int32

func (*ValidatorState) GetValidatorPower added in v0.49.0

func (x *ValidatorState) GetValidatorPower() int64

func (*ValidatorState) GetValidatorUpdate added in v0.49.0

func (x *ValidatorState) GetValidatorUpdate() *v1.ValidatorUpdate

func (*ValidatorState) ProtoMessage added in v0.49.0

func (*ValidatorState) ProtoMessage()

func (*ValidatorState) ProtoReflect added in v0.49.0

func (x *ValidatorState) ProtoReflect() protoreflect.Message

func (*ValidatorState) Reset added in v0.49.0

func (x *ValidatorState) Reset()

func (*ValidatorState) String added in v0.49.0

func (x *ValidatorState) String() string

type Validators added in v0.49.0

type Validators struct {
	ValidatorState      []*ValidatorState     `protobuf:"bytes,1,rep,name=validator_state,json=validatorState,proto3" json:"validator_state,omitempty"`
	PendingKeyRotations []*PendingKeyRotation `protobuf:"bytes,2,rep,name=pending_key_rotations,json=pendingKeyRotations,proto3" json:"pending_key_rotations,omitempty"`
	// contains filtered or unexported fields
}

func (*Validators) Descriptor deprecated added in v0.49.0

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

Deprecated: Use Validators.ProtoReflect.Descriptor instead.

func (*Validators) GetPendingKeyRotations added in v0.49.0

func (x *Validators) GetPendingKeyRotations() []*PendingKeyRotation

func (*Validators) GetValidatorState added in v0.49.0

func (x *Validators) GetValidatorState() []*ValidatorState

func (*Validators) ProtoMessage added in v0.49.0

func (*Validators) ProtoMessage()

func (*Validators) ProtoReflect added in v0.49.0

func (x *Validators) ProtoReflect() protoreflect.Message

func (*Validators) Reset added in v0.49.0

func (x *Validators) Reset()

func (*Validators) String added in v0.49.0

func (x *Validators) String() string

Jump to

Keyboard shortcuts

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