v1

package
v0.44.0 Latest Latest
Warning

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

Go to latest
Published: Oct 11, 2021 License: MIT Imports: 10 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	Format_name = map[int32]string{
		0: "FORMAT_UNSPECIFIED",
		1: "FORMAT_PROTO",
		2: "FORMAT_PROTO_COMPRESSED",
		3: "FORMAT_JSON",
	}
	Format_value = map[string]int32{
		"FORMAT_UNSPECIFIED":      0,
		"FORMAT_PROTO":            1,
		"FORMAT_PROTO_COMPRESSED": 2,
		"FORMAT_JSON":             3,
	}
)

Enum value maps for Format.

View Source
var File_vega_snapshot_v1_snapshot_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type ActiveAssets added in v0.44.0

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

func (*ActiveAssets) Descriptor deprecated added in v0.44.0

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

Deprecated: Use ActiveAssets.ProtoReflect.Descriptor instead.

func (*ActiveAssets) GetAssets added in v0.44.0

func (x *ActiveAssets) GetAssets() []*vega.Asset

func (*ActiveAssets) ProtoMessage added in v0.44.0

func (*ActiveAssets) ProtoMessage()

func (*ActiveAssets) ProtoReflect added in v0.44.0

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

func (*ActiveAssets) Reset added in v0.44.0

func (x *ActiveAssets) Reset()

func (*ActiveAssets) String added in v0.44.0

func (x *ActiveAssets) String() string

func (*ActiveAssets) Validate added in v0.44.0

func (this *ActiveAssets) Validate() error

type AppState added in v0.44.0

type AppState struct {
	Height uint64 `protobuf:"varint,1,opt,name=height,proto3" json:"height,omitempty"`
	Block  string `protobuf:"bytes,2,opt,name=block,proto3" json:"block,omitempty"`
	Time   int64  `protobuf:"varint,3,opt,name=time,proto3" json:"time,omitempty"`
	// contains filtered or unexported fields
}

func (*AppState) Descriptor deprecated added in v0.44.0

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

Deprecated: Use AppState.ProtoReflect.Descriptor instead.

func (*AppState) GetBlock added in v0.44.0

func (x *AppState) GetBlock() string

func (*AppState) GetHeight added in v0.44.0

func (x *AppState) GetHeight() uint64

func (*AppState) GetTime added in v0.44.0

func (x *AppState) GetTime() int64

func (*AppState) ProtoMessage added in v0.44.0

func (*AppState) ProtoMessage()

func (*AppState) ProtoReflect added in v0.44.0

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

func (*AppState) Reset added in v0.44.0

func (x *AppState) Reset()

func (*AppState) String added in v0.44.0

func (x *AppState) String() string

func (*AppState) Validate added in v0.44.0

func (this *AppState) Validate() error

type AssetAction added in v0.44.0

type AssetAction struct {
	Id             string                    `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	State          uint32                    `protobuf:"varint,2,opt,name=state,proto3" json:"state,omitempty"`
	Asset          string                    `protobuf:"bytes,3,opt,name=asset,proto3" json:"asset,omitempty"`
	BlockNumber    uint64                    `protobuf:"varint,4,opt,name=block_number,json=blockNumber,proto3" json:"block_number,omitempty"`
	TxIndex        uint64                    `protobuf:"varint,5,opt,name=tx_index,json=txIndex,proto3" json:"tx_index,omitempty"`
	Hash           string                    `protobuf:"bytes,6,opt,name=hash,proto3" json:"hash,omitempty"`
	BuiltinDeposit *vega.BuiltinAssetDeposit `protobuf:"bytes,7,opt,name=builtin_deposit,json=builtinDeposit,proto3" json:"builtin_deposit,omitempty"`
	Erc20Deposit   *vega.ERC20Deposit        `protobuf:"bytes,8,opt,name=erc20_deposit,json=erc20Deposit,proto3" json:"erc20_deposit,omitempty"`
	AssetList      *vega.ERC20AssetList      `protobuf:"bytes,9,opt,name=asset_list,json=assetList,proto3" json:"asset_list,omitempty"`
	// contains filtered or unexported fields
}

func (*AssetAction) Descriptor deprecated added in v0.44.0

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

Deprecated: Use AssetAction.ProtoReflect.Descriptor instead.

func (*AssetAction) GetAsset added in v0.44.0

func (x *AssetAction) GetAsset() string

func (*AssetAction) GetAssetList added in v0.44.0

func (x *AssetAction) GetAssetList() *vega.ERC20AssetList

func (*AssetAction) GetBlockNumber added in v0.44.0

func (x *AssetAction) GetBlockNumber() uint64

func (*AssetAction) GetBuiltinDeposit added in v0.44.0

func (x *AssetAction) GetBuiltinDeposit() *vega.BuiltinAssetDeposit

func (*AssetAction) GetErc20Deposit added in v0.44.0

func (x *AssetAction) GetErc20Deposit() *vega.ERC20Deposit

func (*AssetAction) GetHash added in v0.44.0

func (x *AssetAction) GetHash() string

func (*AssetAction) GetId added in v0.44.0

func (x *AssetAction) GetId() string

func (*AssetAction) GetState added in v0.44.0

func (x *AssetAction) GetState() uint32

func (*AssetAction) GetTxIndex added in v0.44.0

func (x *AssetAction) GetTxIndex() uint64

func (*AssetAction) ProtoMessage added in v0.44.0

func (*AssetAction) ProtoMessage()

func (*AssetAction) ProtoReflect added in v0.44.0

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

func (*AssetAction) Reset added in v0.44.0

func (x *AssetAction) Reset()

func (*AssetAction) String added in v0.44.0

func (x *AssetAction) String() string

func (*AssetAction) Validate added in v0.44.0

func (this *AssetAction) Validate() error

type AuctionState added in v0.44.0

type AuctionState struct {
	Mode        vega.Market_TradingMode `protobuf:"varint,1,opt,name=mode,proto3,enum=vega.Market_TradingMode" json:"mode,omitempty"`
	DefaultMode vega.Market_TradingMode `protobuf:"varint,2,opt,name=default_mode,json=defaultMode,proto3,enum=vega.Market_TradingMode" json:"default_mode,omitempty"`
	Trigger     vega.AuctionTrigger     `protobuf:"varint,3,opt,name=trigger,proto3,enum=vega.AuctionTrigger" json:"trigger,omitempty"`
	Begin       int64                   `protobuf:"varint,4,opt,name=begin,proto3" json:"begin,omitempty"`
	End         *vega.AuctionDuration   `protobuf:"bytes,5,opt,name=end,proto3" json:"end,omitempty"`
	Start       bool                    `protobuf:"varint,6,opt,name=start,proto3" json:"start,omitempty"`
	Stop        bool                    `protobuf:"varint,7,opt,name=stop,proto3" json:"stop,omitempty"`
	Extension   vega.AuctionTrigger     `protobuf:"varint,8,opt,name=extension,proto3,enum=vega.AuctionTrigger" json:"extension,omitempty"`
	// contains filtered or unexported fields
}

func (*AuctionState) Descriptor deprecated added in v0.44.0

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

Deprecated: Use AuctionState.ProtoReflect.Descriptor instead.

func (*AuctionState) GetBegin added in v0.44.0

func (x *AuctionState) GetBegin() int64

func (*AuctionState) GetDefaultMode added in v0.44.0

func (x *AuctionState) GetDefaultMode() vega.Market_TradingMode

func (*AuctionState) GetEnd added in v0.44.0

func (x *AuctionState) GetEnd() *vega.AuctionDuration

func (*AuctionState) GetExtension added in v0.44.0

func (x *AuctionState) GetExtension() vega.AuctionTrigger

func (*AuctionState) GetMode added in v0.44.0

func (x *AuctionState) GetMode() vega.Market_TradingMode

func (*AuctionState) GetStart added in v0.44.0

func (x *AuctionState) GetStart() bool

func (*AuctionState) GetStop added in v0.44.0

func (x *AuctionState) GetStop() bool

func (*AuctionState) GetTrigger added in v0.44.0

func (x *AuctionState) GetTrigger() vega.AuctionTrigger

func (*AuctionState) ProtoMessage added in v0.44.0

func (*AuctionState) ProtoMessage()

func (*AuctionState) ProtoReflect added in v0.44.0

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

func (*AuctionState) Reset added in v0.44.0

func (x *AuctionState) Reset()

func (*AuctionState) String added in v0.44.0

func (x *AuctionState) String() string

func (*AuctionState) Validate added in v0.44.0

func (this *AuctionState) Validate() error

type BankingAssetActions added in v0.44.0

type BankingAssetActions struct {
	AssetAction []*AssetAction `protobuf:"bytes,1,rep,name=asset_action,json=assetAction,proto3" json:"asset_action,omitempty"`
	// contains filtered or unexported fields
}

func (*BankingAssetActions) Descriptor deprecated added in v0.44.0

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

Deprecated: Use BankingAssetActions.ProtoReflect.Descriptor instead.

func (*BankingAssetActions) GetAssetAction added in v0.44.0

func (x *BankingAssetActions) GetAssetAction() []*AssetAction

func (*BankingAssetActions) ProtoMessage added in v0.44.0

func (*BankingAssetActions) ProtoMessage()

func (*BankingAssetActions) ProtoReflect added in v0.44.0

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

func (*BankingAssetActions) Reset added in v0.44.0

func (x *BankingAssetActions) Reset()

func (*BankingAssetActions) String added in v0.44.0

func (x *BankingAssetActions) String() string

func (*BankingAssetActions) Validate added in v0.44.0

func (this *BankingAssetActions) Validate() error

type BankingDeposits added in v0.44.0

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

func (*BankingDeposits) Descriptor deprecated added in v0.44.0

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

Deprecated: Use BankingDeposits.ProtoReflect.Descriptor instead.

func (*BankingDeposits) GetDeposit added in v0.44.0

func (x *BankingDeposits) GetDeposit() []*Deposit

func (*BankingDeposits) ProtoMessage added in v0.44.0

func (*BankingDeposits) ProtoMessage()

func (*BankingDeposits) ProtoReflect added in v0.44.0

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

func (*BankingDeposits) Reset added in v0.44.0

func (x *BankingDeposits) Reset()

func (*BankingDeposits) String added in v0.44.0

func (x *BankingDeposits) String() string

func (*BankingDeposits) Validate added in v0.44.0

func (this *BankingDeposits) Validate() error

type BankingSeen added in v0.44.0

type BankingSeen struct {
	Refs []*TxRef `protobuf:"bytes,1,rep,name=refs,proto3" json:"refs,omitempty"`
	// contains filtered or unexported fields
}

func (*BankingSeen) Descriptor deprecated added in v0.44.0

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

Deprecated: Use BankingSeen.ProtoReflect.Descriptor instead.

func (*BankingSeen) GetRefs added in v0.44.0

func (x *BankingSeen) GetRefs() []*TxRef

func (*BankingSeen) ProtoMessage added in v0.44.0

func (*BankingSeen) ProtoMessage()

func (*BankingSeen) ProtoReflect added in v0.44.0

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

func (*BankingSeen) Reset added in v0.44.0

func (x *BankingSeen) Reset()

func (*BankingSeen) String added in v0.44.0

func (x *BankingSeen) String() string

func (*BankingSeen) Validate added in v0.44.0

func (this *BankingSeen) Validate() error

type BankingWithdrawals added in v0.44.0

type BankingWithdrawals struct {
	Withdrawals []*Withdrawal `protobuf:"bytes,1,rep,name=withdrawals,proto3" json:"withdrawals,omitempty"`
	// contains filtered or unexported fields
}

func (*BankingWithdrawals) Descriptor deprecated added in v0.44.0

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

Deprecated: Use BankingWithdrawals.ProtoReflect.Descriptor instead.

func (*BankingWithdrawals) GetWithdrawals added in v0.44.0

func (x *BankingWithdrawals) GetWithdrawals() []*Withdrawal

func (*BankingWithdrawals) ProtoMessage added in v0.44.0

func (*BankingWithdrawals) ProtoMessage()

func (*BankingWithdrawals) ProtoReflect added in v0.44.0

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

func (*BankingWithdrawals) Reset added in v0.44.0

func (x *BankingWithdrawals) Reset()

func (*BankingWithdrawals) String added in v0.44.0

func (x *BankingWithdrawals) String() string

func (*BankingWithdrawals) Validate added in v0.44.0

func (this *BankingWithdrawals) Validate() error

type Checkpoint

type Checkpoint struct {
	NextCp int64 `protobuf:"varint,1,opt,name=next_cp,json=nextCp,proto3" json:"next_cp,omitempty"`
	// contains filtered or unexported fields
}

func (*Checkpoint) Descriptor deprecated

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

Deprecated: Use Checkpoint.ProtoReflect.Descriptor instead.

func (*Checkpoint) GetNextCp added in v0.44.0

func (x *Checkpoint) GetNextCp() int64

func (*Checkpoint) ProtoMessage

func (*Checkpoint) ProtoMessage()

func (*Checkpoint) ProtoReflect

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

func (*Checkpoint) Reset

func (x *Checkpoint) Reset()

func (*Checkpoint) String

func (x *Checkpoint) String() string

func (*Checkpoint) Validate

func (this *Checkpoint) Validate() error

type Chunk added in v0.44.0

type Chunk struct {
	Data []*Payload `protobuf:"bytes,1,rep,name=data,proto3" json:"data,omitempty"`
	Nr   int64      `protobuf:"varint,2,opt,name=nr,proto3" json:"nr,omitempty"` // in case of multi-part data, this is chunk nr...
	Of   int64      `protobuf:"varint,3,opt,name=of,proto3" json:"of,omitempty"` // ...of a total of N chunks
	// contains filtered or unexported fields
}

Chunk is simply an as-is chunk belonging to a snapshot not sure how usable this type would be

func (*Chunk) Descriptor deprecated added in v0.44.0

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

Deprecated: Use Chunk.ProtoReflect.Descriptor instead.

func (*Chunk) GetData added in v0.44.0

func (x *Chunk) GetData() []*Payload

func (*Chunk) GetNr added in v0.44.0

func (x *Chunk) GetNr() int64

func (*Chunk) GetOf added in v0.44.0

func (x *Chunk) GetOf() int64

func (*Chunk) ProtoMessage added in v0.44.0

func (*Chunk) ProtoMessage()

func (*Chunk) ProtoReflect added in v0.44.0

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

func (*Chunk) Reset added in v0.44.0

func (x *Chunk) Reset()

func (*Chunk) String added in v0.44.0

func (x *Chunk) String() string

func (*Chunk) Validate added in v0.44.0

func (this *Chunk) Validate() error

type CollateralAccounts added in v0.44.0

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

func (*CollateralAccounts) Descriptor deprecated added in v0.44.0

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

Deprecated: Use CollateralAccounts.ProtoReflect.Descriptor instead.

func (*CollateralAccounts) GetAccounts added in v0.44.0

func (x *CollateralAccounts) GetAccounts() []*vega.Account

func (*CollateralAccounts) ProtoMessage added in v0.44.0

func (*CollateralAccounts) ProtoMessage()

func (*CollateralAccounts) ProtoReflect added in v0.44.0

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

func (*CollateralAccounts) Reset added in v0.44.0

func (x *CollateralAccounts) Reset()

func (*CollateralAccounts) String added in v0.44.0

func (x *CollateralAccounts) String() string

func (*CollateralAccounts) Validate added in v0.44.0

func (this *CollateralAccounts) Validate() error

type CollateralAssets added in v0.44.0

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

func (*CollateralAssets) Descriptor deprecated added in v0.44.0

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

Deprecated: Use CollateralAssets.ProtoReflect.Descriptor instead.

func (*CollateralAssets) GetAssets added in v0.44.0

func (x *CollateralAssets) GetAssets() []*vega.Asset

func (*CollateralAssets) ProtoMessage added in v0.44.0

func (*CollateralAssets) ProtoMessage()

func (*CollateralAssets) ProtoReflect added in v0.44.0

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

func (*CollateralAssets) Reset added in v0.44.0

func (x *CollateralAssets) Reset()

func (*CollateralAssets) String added in v0.44.0

func (x *CollateralAssets) String() string

func (*CollateralAssets) Validate added in v0.44.0

func (this *CollateralAssets) Validate() error

type DecimalMap added in v0.44.0

type DecimalMap struct {
	Key int64  `protobuf:"varint,1,opt,name=key,proto3" json:"key,omitempty"`
	Val string `protobuf:"bytes,2,opt,name=val,proto3" json:"val,omitempty"`
	// contains filtered or unexported fields
}

func (*DecimalMap) Descriptor deprecated added in v0.44.0

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

Deprecated: Use DecimalMap.ProtoReflect.Descriptor instead.

func (*DecimalMap) GetKey added in v0.44.0

func (x *DecimalMap) GetKey() int64

func (*DecimalMap) GetVal added in v0.44.0

func (x *DecimalMap) GetVal() string

func (*DecimalMap) ProtoMessage added in v0.44.0

func (*DecimalMap) ProtoMessage()

func (*DecimalMap) ProtoReflect added in v0.44.0

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

func (*DecimalMap) Reset added in v0.44.0

func (x *DecimalMap) Reset()

func (*DecimalMap) String added in v0.44.0

func (x *DecimalMap) String() string

func (*DecimalMap) Validate added in v0.44.0

func (this *DecimalMap) Validate() error

type DelegationActive added in v0.44.0

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

func (*DelegationActive) Descriptor deprecated added in v0.44.0

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

Deprecated: Use DelegationActive.ProtoReflect.Descriptor instead.

func (*DelegationActive) GetDelegations added in v0.44.0

func (x *DelegationActive) GetDelegations() []*vega.Delegation

func (*DelegationActive) ProtoMessage added in v0.44.0

func (*DelegationActive) ProtoMessage()

func (*DelegationActive) ProtoReflect added in v0.44.0

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

func (*DelegationActive) Reset added in v0.44.0

func (x *DelegationActive) Reset()

func (*DelegationActive) String added in v0.44.0

func (x *DelegationActive) String() string

func (*DelegationActive) Validate added in v0.44.0

func (this *DelegationActive) Validate() error

type DelegationAuto added in v0.44.0

type DelegationAuto struct {
	Parties []string `protobuf:"bytes,1,rep,name=parties,proto3" json:"parties,omitempty"`
	// contains filtered or unexported fields
}

func (*DelegationAuto) Descriptor deprecated added in v0.44.0

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

Deprecated: Use DelegationAuto.ProtoReflect.Descriptor instead.

func (*DelegationAuto) GetParties added in v0.44.0

func (x *DelegationAuto) GetParties() []string

func (*DelegationAuto) ProtoMessage added in v0.44.0

func (*DelegationAuto) ProtoMessage()

func (*DelegationAuto) ProtoReflect added in v0.44.0

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

func (*DelegationAuto) Reset added in v0.44.0

func (x *DelegationAuto) Reset()

func (*DelegationAuto) String added in v0.44.0

func (x *DelegationAuto) String() string

func (*DelegationAuto) Validate added in v0.44.0

func (this *DelegationAuto) Validate() error

type DelegationPending added in v0.44.0

type DelegationPending struct {
	Delegations  []*vega.Delegation `protobuf:"bytes,1,rep,name=delegations,proto3" json:"delegations,omitempty"`
	Undelegation []*vega.Delegation `protobuf:"bytes,2,rep,name=undelegation,proto3" json:"undelegation,omitempty"`
	// contains filtered or unexported fields
}

func (*DelegationPending) Descriptor deprecated added in v0.44.0

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

Deprecated: Use DelegationPending.ProtoReflect.Descriptor instead.

func (*DelegationPending) GetDelegations added in v0.44.0

func (x *DelegationPending) GetDelegations() []*vega.Delegation

func (*DelegationPending) GetUndelegation added in v0.44.0

func (x *DelegationPending) GetUndelegation() []*vega.Delegation

func (*DelegationPending) ProtoMessage added in v0.44.0

func (*DelegationPending) ProtoMessage()

func (*DelegationPending) ProtoReflect added in v0.44.0

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

func (*DelegationPending) Reset added in v0.44.0

func (x *DelegationPending) Reset()

func (*DelegationPending) String added in v0.44.0

func (x *DelegationPending) String() string

func (*DelegationPending) Validate added in v0.44.0

func (this *DelegationPending) Validate() error

type Deposit added in v0.44.0

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

func (*Deposit) Descriptor deprecated added in v0.44.0

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

Deprecated: Use Deposit.ProtoReflect.Descriptor instead.

func (*Deposit) GetDeposit added in v0.44.0

func (x *Deposit) GetDeposit() *vega.Deposit

func (*Deposit) GetId added in v0.44.0

func (x *Deposit) GetId() string

func (*Deposit) ProtoMessage added in v0.44.0

func (*Deposit) ProtoMessage()

func (*Deposit) ProtoReflect added in v0.44.0

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

func (*Deposit) Reset added in v0.44.0

func (x *Deposit) Reset()

func (*Deposit) String added in v0.44.0

func (x *Deposit) String() string

func (*Deposit) Validate added in v0.44.0

func (this *Deposit) Validate() error

type EpochState added in v0.44.0

type EpochState struct {

	// Sequence number that increases by one each epoch
	Seq uint64 `protobuf:"varint,1,opt,name=seq,proto3" json:"seq,omitempty"`
	// What time did this epoch start
	StartTime int64 `protobuf:"varint,3,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"`
	// What time should this epoch end
	ExpireTime int64 `protobuf:"varint,4,opt,name=expire_time,json=expireTime,proto3" json:"expire_time,omitempty"`
	// Ready to start a new epoch
	ReadyToStartNewEpoch bool `` /* 128-byte string literal not displayed */
	// Ready to end epoch
	ReadyToEndEpoch bool `protobuf:"varint,7,opt,name=ready_to_end_epoch,json=readyToEndEpoch,proto3" json:"ready_to_end_epoch,omitempty"`
	// contains filtered or unexported fields
}

EpochState details

func (*EpochState) Descriptor deprecated added in v0.44.0

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

Deprecated: Use EpochState.ProtoReflect.Descriptor instead.

func (*EpochState) GetExpireTime added in v0.44.0

func (x *EpochState) GetExpireTime() int64

func (*EpochState) GetReadyToEndEpoch added in v0.44.0

func (x *EpochState) GetReadyToEndEpoch() bool

func (*EpochState) GetReadyToStartNewEpoch added in v0.44.0

func (x *EpochState) GetReadyToStartNewEpoch() bool

func (*EpochState) GetSeq added in v0.44.0

func (x *EpochState) GetSeq() uint64

func (*EpochState) GetStartTime added in v0.44.0

func (x *EpochState) GetStartTime() int64

func (*EpochState) ProtoMessage added in v0.44.0

func (*EpochState) ProtoMessage()

func (*EpochState) ProtoReflect added in v0.44.0

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

func (*EpochState) Reset added in v0.44.0

func (x *EpochState) Reset()

func (*EpochState) String added in v0.44.0

func (x *EpochState) String() string

func (*EpochState) Validate added in v0.44.0

func (this *EpochState) Validate() error

type EquityShare added in v0.44.0

type EquityShare struct {
	Mvp                 string           `protobuf:"bytes,1,opt,name=mvp,proto3" json:"mvp,omitempty"`
	OpeningAuctionEnded bool             `protobuf:"varint,2,opt,name=opening_auction_ended,json=openingAuctionEnded,proto3" json:"opening_auction_ended,omitempty"`
	Lps                 []*EquityShareLP `protobuf:"bytes,3,rep,name=lps,proto3" json:"lps,omitempty"`
	// contains filtered or unexported fields
}

func (*EquityShare) Descriptor deprecated added in v0.44.0

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

Deprecated: Use EquityShare.ProtoReflect.Descriptor instead.

func (*EquityShare) GetLps added in v0.44.0

func (x *EquityShare) GetLps() []*EquityShareLP

func (*EquityShare) GetMvp added in v0.44.0

func (x *EquityShare) GetMvp() string

func (*EquityShare) GetOpeningAuctionEnded added in v0.44.0

func (x *EquityShare) GetOpeningAuctionEnded() bool

func (*EquityShare) ProtoMessage added in v0.44.0

func (*EquityShare) ProtoMessage()

func (*EquityShare) ProtoReflect added in v0.44.0

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

func (*EquityShare) Reset added in v0.44.0

func (x *EquityShare) Reset()

func (*EquityShare) String added in v0.44.0

func (x *EquityShare) String() string

func (*EquityShare) Validate added in v0.44.0

func (this *EquityShare) Validate() error

type EquityShareLP added in v0.44.0

type EquityShareLP struct {
	Id    string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Stake string `protobuf:"bytes,2,opt,name=stake,proto3" json:"stake,omitempty"`
	Share string `protobuf:"bytes,3,opt,name=share,proto3" json:"share,omitempty"`
	Avg   string `protobuf:"bytes,4,opt,name=avg,proto3" json:"avg,omitempty"`
	// contains filtered or unexported fields
}

func (*EquityShareLP) Descriptor deprecated added in v0.44.0

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

Deprecated: Use EquityShareLP.ProtoReflect.Descriptor instead.

func (*EquityShareLP) GetAvg added in v0.44.0

func (x *EquityShareLP) GetAvg() string

func (*EquityShareLP) GetId added in v0.44.0

func (x *EquityShareLP) GetId() string

func (*EquityShareLP) GetShare added in v0.44.0

func (x *EquityShareLP) GetShare() string

func (*EquityShareLP) GetStake added in v0.44.0

func (x *EquityShareLP) GetStake() string

func (*EquityShareLP) ProtoMessage added in v0.44.0

func (*EquityShareLP) ProtoMessage()

func (*EquityShareLP) ProtoReflect added in v0.44.0

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

func (*EquityShareLP) Reset added in v0.44.0

func (x *EquityShareLP) Reset()

func (*EquityShareLP) String added in v0.44.0

func (x *EquityShareLP) String() string

func (*EquityShareLP) Validate added in v0.44.0

func (this *EquityShareLP) Validate() error

type ExecutionIDGenerator added in v0.44.0

type ExecutionIDGenerator struct {

	// Which batch are we on
	Batches uint64 `protobuf:"varint,1,opt,name=batches,proto3" json:"batches,omitempty"`
	// How many orders in this batch
	Orders uint64 `protobuf:"varint,2,opt,name=orders,proto3" json:"orders,omitempty"`
	// How many proposals in this batch
	Proposals uint64 `protobuf:"varint,3,opt,name=proposals,proto3" json:"proposals,omitempty"`
	// contains filtered or unexported fields
}

State of the ID generator used for creating order IDs

func (*ExecutionIDGenerator) Descriptor deprecated added in v0.44.0

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

Deprecated: Use ExecutionIDGenerator.ProtoReflect.Descriptor instead.

func (*ExecutionIDGenerator) GetBatches added in v0.44.0

func (x *ExecutionIDGenerator) GetBatches() uint64

func (*ExecutionIDGenerator) GetOrders added in v0.44.0

func (x *ExecutionIDGenerator) GetOrders() uint64

func (*ExecutionIDGenerator) GetProposals added in v0.44.0

func (x *ExecutionIDGenerator) GetProposals() uint64

func (*ExecutionIDGenerator) ProtoMessage added in v0.44.0

func (*ExecutionIDGenerator) ProtoMessage()

func (*ExecutionIDGenerator) ProtoReflect added in v0.44.0

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

func (*ExecutionIDGenerator) Reset added in v0.44.0

func (x *ExecutionIDGenerator) Reset()

func (*ExecutionIDGenerator) String added in v0.44.0

func (x *ExecutionIDGenerator) String() string

func (*ExecutionIDGenerator) Validate added in v0.44.0

func (this *ExecutionIDGenerator) Validate() error

type ExecutionMarkets added in v0.44.0

type ExecutionMarkets struct {
	Markets []*Market `protobuf:"bytes,1,rep,name=markets,proto3" json:"markets,omitempty"`
	// contains filtered or unexported fields
}

func (*ExecutionMarkets) Descriptor deprecated added in v0.44.0

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

Deprecated: Use ExecutionMarkets.ProtoReflect.Descriptor instead.

func (*ExecutionMarkets) GetMarkets added in v0.44.0

func (x *ExecutionMarkets) GetMarkets() []*Market

func (*ExecutionMarkets) ProtoMessage added in v0.44.0

func (*ExecutionMarkets) ProtoMessage()

func (*ExecutionMarkets) ProtoReflect added in v0.44.0

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

func (*ExecutionMarkets) Reset added in v0.44.0

func (x *ExecutionMarkets) Reset()

func (*ExecutionMarkets) String added in v0.44.0

func (x *ExecutionMarkets) String() string

func (*ExecutionMarkets) Validate added in v0.44.0

func (this *ExecutionMarkets) Validate() error

type Format added in v0.44.0

type Format int32
const (
	// Default value, always invalid
	Format_FORMAT_UNSPECIFIED Format = 0
	// Standard proto encoding
	Format_FORMAT_PROTO Format = 1
	// Compressed proto, might come in handy
	Format_FORMAT_PROTO_COMPRESSED Format = 2
	// Simple JSON serialisation, probably not going to be used
	Format_FORMAT_JSON Format = 3
)

func (Format) Descriptor added in v0.44.0

func (Format) Descriptor() protoreflect.EnumDescriptor

func (Format) Enum added in v0.44.0

func (x Format) Enum() *Format

func (Format) EnumDescriptor deprecated added in v0.44.0

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

Deprecated: Use Format.Descriptor instead.

func (Format) Number added in v0.44.0

func (x Format) Number() protoreflect.EnumNumber

func (Format) String added in v0.44.0

func (x Format) String() string

func (Format) Type added in v0.44.0

func (Format) Type() protoreflect.EnumType

type GovernanceActive added in v0.44.0

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

func (*GovernanceActive) Descriptor deprecated added in v0.44.0

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

Deprecated: Use GovernanceActive.ProtoReflect.Descriptor instead.

func (*GovernanceActive) GetProposals added in v0.44.0

func (x *GovernanceActive) GetProposals() []*PendingProposal

func (*GovernanceActive) ProtoMessage added in v0.44.0

func (*GovernanceActive) ProtoMessage()

func (*GovernanceActive) ProtoReflect added in v0.44.0

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

func (*GovernanceActive) Reset added in v0.44.0

func (x *GovernanceActive) Reset()

func (*GovernanceActive) String added in v0.44.0

func (x *GovernanceActive) String() string

func (*GovernanceActive) Validate added in v0.44.0

func (this *GovernanceActive) Validate() error

type GovernanceEnacted added in v0.44.0

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

func (*GovernanceEnacted) Descriptor deprecated added in v0.44.0

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

Deprecated: Use GovernanceEnacted.ProtoReflect.Descriptor instead.

func (*GovernanceEnacted) GetProposals added in v0.44.0

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

func (*GovernanceEnacted) ProtoMessage added in v0.44.0

func (*GovernanceEnacted) ProtoMessage()

func (*GovernanceEnacted) ProtoReflect added in v0.44.0

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

func (*GovernanceEnacted) Reset added in v0.44.0

func (x *GovernanceEnacted) Reset()

func (*GovernanceEnacted) String added in v0.44.0

func (x *GovernanceEnacted) String() string

func (*GovernanceEnacted) Validate added in v0.44.0

func (this *GovernanceEnacted) Validate() error

type GovernanceNode added in v0.44.0

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

func (*GovernanceNode) Descriptor deprecated added in v0.44.0

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

Deprecated: Use GovernanceNode.ProtoReflect.Descriptor instead.

func (*GovernanceNode) GetProposals added in v0.44.0

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

func (*GovernanceNode) ProtoMessage added in v0.44.0

func (*GovernanceNode) ProtoMessage()

func (*GovernanceNode) ProtoReflect added in v0.44.0

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

func (*GovernanceNode) Reset added in v0.44.0

func (x *GovernanceNode) Reset()

func (*GovernanceNode) String added in v0.44.0

func (x *GovernanceNode) String() string

func (*GovernanceNode) Validate added in v0.44.0

func (this *GovernanceNode) Validate() error

type Market added in v0.44.0

type Market struct {
	Market                     *vega.Market  `protobuf:"bytes,1,opt,name=market,proto3" json:"market,omitempty"`
	PriceMonitor               *PriceMonitor `protobuf:"bytes,2,opt,name=price_monitor,json=priceMonitor,proto3" json:"price_monitor,omitempty"`
	AuctionState               *AuctionState `protobuf:"bytes,3,opt,name=auction_state,json=auctionState,proto3" json:"auction_state,omitempty"`
	PeggedOrders               []*vega.Order `protobuf:"bytes,4,rep,name=pegged_orders,json=peggedOrders,proto3" json:"pegged_orders,omitempty"`
	ExpiringOrders             []*vega.Order `protobuf:"bytes,5,rep,name=expiring_orders,json=expiringOrders,proto3" json:"expiring_orders,omitempty"`
	LastBestBid                string        `protobuf:"bytes,6,opt,name=last_best_bid,json=lastBestBid,proto3" json:"last_best_bid,omitempty"`
	LastBestAsk                string        `protobuf:"bytes,7,opt,name=last_best_ask,json=lastBestAsk,proto3" json:"last_best_ask,omitempty"`
	LastMidBid                 string        `protobuf:"bytes,8,opt,name=last_mid_bid,json=lastMidBid,proto3" json:"last_mid_bid,omitempty"`
	LastMidAsk                 string        `protobuf:"bytes,9,opt,name=last_mid_ask,json=lastMidAsk,proto3" json:"last_mid_ask,omitempty"`
	LastMarketValueProxy       string        `` /* 126-byte string literal not displayed */
	LastEquityShareDistributed int64         `` /* 145-byte string literal not displayed */
	EquityShare                *EquityShare  `protobuf:"bytes,12,opt,name=equity_share,json=equityShare,proto3" json:"equity_share,omitempty"`
	CurrentMarkPrice           string        `protobuf:"bytes,13,opt,name=current_mark_price,json=currentMarkPrice,proto3" json:"current_mark_price,omitempty"`
	// contains filtered or unexported fields
}

func (*Market) Descriptor deprecated added in v0.44.0

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

Deprecated: Use Market.ProtoReflect.Descriptor instead.

func (*Market) GetAuctionState added in v0.44.0

func (x *Market) GetAuctionState() *AuctionState

func (*Market) GetCurrentMarkPrice added in v0.44.0

func (x *Market) GetCurrentMarkPrice() string

func (*Market) GetEquityShare added in v0.44.0

func (x *Market) GetEquityShare() *EquityShare

func (*Market) GetExpiringOrders added in v0.44.0

func (x *Market) GetExpiringOrders() []*vega.Order

func (*Market) GetLastBestAsk added in v0.44.0

func (x *Market) GetLastBestAsk() string

func (*Market) GetLastBestBid added in v0.44.0

func (x *Market) GetLastBestBid() string

func (*Market) GetLastEquityShareDistributed added in v0.44.0

func (x *Market) GetLastEquityShareDistributed() int64

func (*Market) GetLastMarketValueProxy added in v0.44.0

func (x *Market) GetLastMarketValueProxy() string

func (*Market) GetLastMidAsk added in v0.44.0

func (x *Market) GetLastMidAsk() string

func (*Market) GetLastMidBid added in v0.44.0

func (x *Market) GetLastMidBid() string

func (*Market) GetMarket added in v0.44.0

func (x *Market) GetMarket() *vega.Market

func (*Market) GetPeggedOrders added in v0.44.0

func (x *Market) GetPeggedOrders() []*vega.Order

func (*Market) GetPriceMonitor added in v0.44.0

func (x *Market) GetPriceMonitor() *PriceMonitor

func (*Market) ProtoMessage added in v0.44.0

func (*Market) ProtoMessage()

func (*Market) ProtoReflect added in v0.44.0

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

func (*Market) Reset added in v0.44.0

func (x *Market) Reset()

func (*Market) String added in v0.44.0

func (x *Market) String() string

func (*Market) Validate added in v0.44.0

func (this *Market) Validate() error

type MarketPositions added in v0.44.0

type MarketPositions struct {
	MarketId  string      `protobuf:"bytes,1,opt,name=market_id,json=marketId,proto3" json:"market_id,omitempty"`
	Positions []*Position `protobuf:"bytes,2,rep,name=positions,proto3" json:"positions,omitempty"`
	// contains filtered or unexported fields
}

func (*MarketPositions) Descriptor deprecated added in v0.44.0

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

Deprecated: Use MarketPositions.ProtoReflect.Descriptor instead.

func (*MarketPositions) GetMarketId added in v0.44.0

func (x *MarketPositions) GetMarketId() string

func (*MarketPositions) GetPositions added in v0.44.0

func (x *MarketPositions) GetPositions() []*Position

func (*MarketPositions) ProtoMessage added in v0.44.0

func (*MarketPositions) ProtoMessage()

func (*MarketPositions) ProtoReflect added in v0.44.0

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

func (*MarketPositions) Reset added in v0.44.0

func (x *MarketPositions) Reset()

func (*MarketPositions) String added in v0.44.0

func (x *MarketPositions) String() string

func (*MarketPositions) Validate added in v0.44.0

func (this *MarketPositions) Validate() error

type MatchingBook added in v0.44.0

type MatchingBook struct {
	MarketId        string        `protobuf:"bytes,1,opt,name=market_id,json=marketId,proto3" json:"market_id,omitempty"`
	Buy             []*vega.Order `protobuf:"bytes,2,rep,name=buy,proto3" json:"buy,omitempty"`
	Sell            []*vega.Order `protobuf:"bytes,3,rep,name=sell,proto3" json:"sell,omitempty"`
	LastTradedPrice string        `protobuf:"bytes,4,opt,name=last_traded_price,json=lastTradedPrice,proto3" json:"last_traded_price,omitempty"`
	Auction         bool          `protobuf:"varint,5,opt,name=auction,proto3" json:"auction,omitempty"`
	BatchId         uint64        `protobuf:"varint,6,opt,name=batch_id,json=batchId,proto3" json:"batch_id,omitempty"`
	// contains filtered or unexported fields
}

func (*MatchingBook) Descriptor deprecated added in v0.44.0

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

Deprecated: Use MatchingBook.ProtoReflect.Descriptor instead.

func (*MatchingBook) GetAuction added in v0.44.0

func (x *MatchingBook) GetAuction() bool

func (*MatchingBook) GetBatchId added in v0.44.0

func (x *MatchingBook) GetBatchId() uint64

func (*MatchingBook) GetBuy added in v0.44.0

func (x *MatchingBook) GetBuy() []*vega.Order

func (*MatchingBook) GetLastTradedPrice added in v0.44.0

func (x *MatchingBook) GetLastTradedPrice() string

func (*MatchingBook) GetMarketId added in v0.44.0

func (x *MatchingBook) GetMarketId() string

func (*MatchingBook) GetSell added in v0.44.0

func (x *MatchingBook) GetSell() []*vega.Order

func (*MatchingBook) ProtoMessage added in v0.44.0

func (*MatchingBook) ProtoMessage()

func (*MatchingBook) ProtoReflect added in v0.44.0

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

func (*MatchingBook) Reset added in v0.44.0

func (x *MatchingBook) Reset()

func (*MatchingBook) String added in v0.44.0

func (x *MatchingBook) String() string

func (*MatchingBook) Validate added in v0.44.0

func (this *MatchingBook) Validate() error

type Metadata added in v0.44.0

type Metadata struct {
	Version     int64       `protobuf:"varint,1,opt,name=version,proto3" json:"version,omitempty"`
	ChunkHashes []string    `protobuf:"bytes,2,rep,name=chunk_hashes,json=chunkHashes,proto3" json:"chunk_hashes,omitempty"`
	NodeHashes  []*NodeHash `protobuf:"bytes,3,rep,name=node_hashes,json=nodeHashes,proto3" json:"node_hashes,omitempty"` // hashes used by snapshot engine, different to chunk hash if data was split up, or combined into a single chunk
	// contains filtered or unexported fields
}

func (*Metadata) Descriptor deprecated added in v0.44.0

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

Deprecated: Use Metadata.ProtoReflect.Descriptor instead.

func (*Metadata) GetChunkHashes added in v0.44.0

func (x *Metadata) GetChunkHashes() []string

func (*Metadata) GetNodeHashes added in v0.44.0

func (x *Metadata) GetNodeHashes() []*NodeHash

func (*Metadata) GetVersion added in v0.44.0

func (x *Metadata) GetVersion() int64

func (*Metadata) ProtoMessage added in v0.44.0

func (*Metadata) ProtoMessage()

func (*Metadata) ProtoReflect added in v0.44.0

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

func (*Metadata) Reset added in v0.44.0

func (x *Metadata) Reset()

func (*Metadata) String added in v0.44.0

func (x *Metadata) String() string

func (*Metadata) Validate added in v0.44.0

func (this *Metadata) Validate() error

type NetParams

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

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

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

func (*NetParams) Reset

func (x *NetParams) Reset()

func (*NetParams) String

func (x *NetParams) String() string

func (*NetParams) Validate

func (this *NetParams) Validate() error

type NodeHash added in v0.44.0

type NodeHash struct {
	FullKey   string `protobuf:"bytes,1,opt,name=full_key,json=fullKey,proto3" json:"full_key,omitempty"` // namespace<separator>key
	Namespace string `protobuf:"bytes,2,opt,name=namespace,proto3" json:"namespace,omitempty"`
	Key       string `protobuf:"bytes,3,opt,name=key,proto3" json:"key,omitempty"`
	Hash      string `protobuf:"bytes,4,opt,name=hash,proto3" json:"hash,omitempty"`
	// contains filtered or unexported fields
}

func (*NodeHash) Descriptor deprecated added in v0.44.0

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

Deprecated: Use NodeHash.ProtoReflect.Descriptor instead.

func (*NodeHash) GetFullKey added in v0.44.0

func (x *NodeHash) GetFullKey() string

func (*NodeHash) GetHash added in v0.44.0

func (x *NodeHash) GetHash() string

func (*NodeHash) GetKey added in v0.44.0

func (x *NodeHash) GetKey() string

func (*NodeHash) GetNamespace added in v0.44.0

func (x *NodeHash) GetNamespace() string

func (*NodeHash) ProtoMessage added in v0.44.0

func (*NodeHash) ProtoMessage()

func (*NodeHash) ProtoReflect added in v0.44.0

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

func (*NodeHash) Reset added in v0.44.0

func (x *NodeHash) Reset()

func (*NodeHash) String added in v0.44.0

func (x *NodeHash) String() string

func (*NodeHash) Validate added in v0.44.0

func (this *NodeHash) Validate() error

type Payload added in v0.44.0

type Payload struct {

	// Types that are assignable to Data:
	//	*Payload_ActiveAssets
	//	*Payload_PendingAssets
	//	*Payload_BankingWithdrawals
	//	*Payload_BankingDeposits
	//	*Payload_BankingSeen
	//	*Payload_BankingAssetActions
	//	*Payload_Checkpoint
	//	*Payload_CollateralAccounts
	//	*Payload_CollateralAssets
	//	*Payload_DelegationActive
	//	*Payload_DelegationPending
	//	*Payload_DelegationAuto
	//	*Payload_GovernanceActive
	//	*Payload_GovernanceEnacted
	//	*Payload_StakingAccounts
	//	*Payload_MatchingBook
	//	*Payload_NetworkParameters
	//	*Payload_ExecutionMarkets
	//	*Payload_MarketPositions
	//	*Payload_AppState
	//	*Payload_Epoch
	//	*Payload_ExecutionIdGenerator
	//	*Payload_RewardsPendingPayouts
	//	*Payload_GovernanceNode
	Data isPayload_Data `protobuf_oneof:"data"`
	// contains filtered or unexported fields
}

func (*Payload) Descriptor deprecated added in v0.44.0

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

Deprecated: Use Payload.ProtoReflect.Descriptor instead.

func (*Payload) GetActiveAssets added in v0.44.0

func (x *Payload) GetActiveAssets() *ActiveAssets

func (*Payload) GetAppState added in v0.44.0

func (x *Payload) GetAppState() *AppState

func (*Payload) GetBankingAssetActions added in v0.44.0

func (x *Payload) GetBankingAssetActions() *BankingAssetActions

func (*Payload) GetBankingDeposits added in v0.44.0

func (x *Payload) GetBankingDeposits() *BankingDeposits

func (*Payload) GetBankingSeen added in v0.44.0

func (x *Payload) GetBankingSeen() *BankingSeen

func (*Payload) GetBankingWithdrawals added in v0.44.0

func (x *Payload) GetBankingWithdrawals() *BankingWithdrawals

func (*Payload) GetCheckpoint added in v0.44.0

func (x *Payload) GetCheckpoint() *Checkpoint

func (*Payload) GetCollateralAccounts added in v0.44.0

func (x *Payload) GetCollateralAccounts() *CollateralAccounts

func (*Payload) GetCollateralAssets added in v0.44.0

func (x *Payload) GetCollateralAssets() *CollateralAssets

func (*Payload) GetData added in v0.44.0

func (m *Payload) GetData() isPayload_Data

func (*Payload) GetDelegationActive added in v0.44.0

func (x *Payload) GetDelegationActive() *DelegationActive

func (*Payload) GetDelegationAuto added in v0.44.0

func (x *Payload) GetDelegationAuto() *DelegationAuto

func (*Payload) GetDelegationPending added in v0.44.0

func (x *Payload) GetDelegationPending() *DelegationPending

func (*Payload) GetEpoch added in v0.44.0

func (x *Payload) GetEpoch() *EpochState

func (*Payload) GetExecutionIdGenerator added in v0.44.0

func (x *Payload) GetExecutionIdGenerator() *ExecutionIDGenerator

func (*Payload) GetExecutionMarkets added in v0.44.0

func (x *Payload) GetExecutionMarkets() *ExecutionMarkets

func (*Payload) GetGovernanceActive added in v0.44.0

func (x *Payload) GetGovernanceActive() *GovernanceActive

func (*Payload) GetGovernanceEnacted added in v0.44.0

func (x *Payload) GetGovernanceEnacted() *GovernanceEnacted

func (*Payload) GetGovernanceNode added in v0.44.0

func (x *Payload) GetGovernanceNode() *GovernanceNode

func (*Payload) GetMarketPositions added in v0.44.0

func (x *Payload) GetMarketPositions() *MarketPositions

func (*Payload) GetMatchingBook added in v0.44.0

func (x *Payload) GetMatchingBook() *MatchingBook

func (*Payload) GetNetworkParameters added in v0.44.0

func (x *Payload) GetNetworkParameters() *NetParams

func (*Payload) GetPendingAssets added in v0.44.0

func (x *Payload) GetPendingAssets() *PendingAssets

func (*Payload) GetRewardsPendingPayouts added in v0.44.0

func (x *Payload) GetRewardsPendingPayouts() *RewardsPendingPayouts

func (*Payload) GetStakingAccounts added in v0.44.0

func (x *Payload) GetStakingAccounts() *StakingAccounts

func (*Payload) ProtoMessage added in v0.44.0

func (*Payload) ProtoMessage()

func (*Payload) ProtoReflect added in v0.44.0

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

func (*Payload) Reset added in v0.44.0

func (x *Payload) Reset()

func (*Payload) String added in v0.44.0

func (x *Payload) String() string

func (*Payload) Validate added in v0.44.0

func (this *Payload) Validate() error

type Payload_ActiveAssets added in v0.44.0

type Payload_ActiveAssets struct {
	ActiveAssets *ActiveAssets `protobuf:"bytes,1,opt,name=active_assets,json=activeAssets,proto3,oneof"`
}

type Payload_AppState added in v0.44.0

type Payload_AppState struct {
	AppState *AppState `protobuf:"bytes,20,opt,name=app_state,json=appState,proto3,oneof"`
}

type Payload_BankingAssetActions added in v0.44.0

type Payload_BankingAssetActions struct {
	BankingAssetActions *BankingAssetActions `protobuf:"bytes,6,opt,name=banking_asset_actions,json=bankingAssetActions,proto3,oneof"`
}

type Payload_BankingDeposits added in v0.44.0

type Payload_BankingDeposits struct {
	BankingDeposits *BankingDeposits `protobuf:"bytes,4,opt,name=banking_deposits,json=bankingDeposits,proto3,oneof"`
}

type Payload_BankingSeen added in v0.44.0

type Payload_BankingSeen struct {
	BankingSeen *BankingSeen `protobuf:"bytes,5,opt,name=banking_seen,json=bankingSeen,proto3,oneof"`
}

type Payload_BankingWithdrawals added in v0.44.0

type Payload_BankingWithdrawals struct {
	BankingWithdrawals *BankingWithdrawals `protobuf:"bytes,3,opt,name=banking_withdrawals,json=bankingWithdrawals,proto3,oneof"`
}

type Payload_Checkpoint added in v0.44.0

type Payload_Checkpoint struct {
	Checkpoint *Checkpoint `protobuf:"bytes,7,opt,name=checkpoint,proto3,oneof"`
}

type Payload_CollateralAccounts added in v0.44.0

type Payload_CollateralAccounts struct {
	CollateralAccounts *CollateralAccounts `protobuf:"bytes,8,opt,name=collateral_accounts,json=collateralAccounts,proto3,oneof"`
}

type Payload_CollateralAssets added in v0.44.0

type Payload_CollateralAssets struct {
	CollateralAssets *CollateralAssets `protobuf:"bytes,9,opt,name=collateral_assets,json=collateralAssets,proto3,oneof"`
}

type Payload_DelegationActive added in v0.44.0

type Payload_DelegationActive struct {
	DelegationActive *DelegationActive `protobuf:"bytes,10,opt,name=delegation_active,json=delegationActive,proto3,oneof"`
}

type Payload_DelegationAuto added in v0.44.0

type Payload_DelegationAuto struct {
	DelegationAuto *DelegationAuto `protobuf:"bytes,12,opt,name=delegation_auto,json=delegationAuto,proto3,oneof"`
}

type Payload_DelegationPending added in v0.44.0

type Payload_DelegationPending struct {
	DelegationPending *DelegationPending `protobuf:"bytes,11,opt,name=delegation_pending,json=delegationPending,proto3,oneof"`
}

type Payload_Epoch added in v0.44.0

type Payload_Epoch struct {
	Epoch *EpochState `protobuf:"bytes,21,opt,name=epoch,proto3,oneof"`
}

type Payload_ExecutionIdGenerator added in v0.44.0

type Payload_ExecutionIdGenerator struct {
	ExecutionIdGenerator *ExecutionIDGenerator `protobuf:"bytes,22,opt,name=execution_id_generator,json=executionIdGenerator,proto3,oneof"`
}

type Payload_ExecutionMarkets added in v0.44.0

type Payload_ExecutionMarkets struct {
	ExecutionMarkets *ExecutionMarkets `protobuf:"bytes,18,opt,name=execution_markets,json=executionMarkets,proto3,oneof"`
}

type Payload_GovernanceActive added in v0.44.0

type Payload_GovernanceActive struct {
	GovernanceActive *GovernanceActive `protobuf:"bytes,13,opt,name=governance_active,json=governanceActive,proto3,oneof"`
}

type Payload_GovernanceEnacted added in v0.44.0

type Payload_GovernanceEnacted struct {
	GovernanceEnacted *GovernanceEnacted `protobuf:"bytes,14,opt,name=governance_enacted,json=governanceEnacted,proto3,oneof"`
}

type Payload_GovernanceNode added in v0.44.0

type Payload_GovernanceNode struct {
	GovernanceNode *GovernanceNode `protobuf:"bytes,24,opt,name=governance_node,json=governanceNode,proto3,oneof"`
}

type Payload_MarketPositions added in v0.44.0

type Payload_MarketPositions struct {
	MarketPositions *MarketPositions `protobuf:"bytes,19,opt,name=market_positions,json=marketPositions,proto3,oneof"`
}

type Payload_MatchingBook added in v0.44.0

type Payload_MatchingBook struct {
	MatchingBook *MatchingBook `protobuf:"bytes,16,opt,name=matching_book,json=matchingBook,proto3,oneof"`
}

type Payload_NetworkParameters added in v0.44.0

type Payload_NetworkParameters struct {
	NetworkParameters *NetParams `protobuf:"bytes,17,opt,name=network_parameters,json=networkParameters,proto3,oneof"`
}

type Payload_PendingAssets added in v0.44.0

type Payload_PendingAssets struct {
	PendingAssets *PendingAssets `protobuf:"bytes,2,opt,name=pending_assets,json=pendingAssets,proto3,oneof"`
}

type Payload_RewardsPendingPayouts added in v0.44.0

type Payload_RewardsPendingPayouts struct {
	RewardsPendingPayouts *RewardsPendingPayouts `protobuf:"bytes,23,opt,name=rewards_pending_payouts,json=rewardsPendingPayouts,proto3,oneof"`
}

type Payload_StakingAccounts added in v0.44.0

type Payload_StakingAccounts struct {
	StakingAccounts *StakingAccounts `protobuf:"bytes,15,opt,name=staking_accounts,json=stakingAccounts,proto3,oneof"`
}

type PendingAssets added in v0.44.0

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

func (*PendingAssets) Descriptor deprecated added in v0.44.0

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

Deprecated: Use PendingAssets.ProtoReflect.Descriptor instead.

func (*PendingAssets) GetAssets added in v0.44.0

func (x *PendingAssets) GetAssets() []*vega.Asset

func (*PendingAssets) ProtoMessage added in v0.44.0

func (*PendingAssets) ProtoMessage()

func (*PendingAssets) ProtoReflect added in v0.44.0

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

func (*PendingAssets) Reset added in v0.44.0

func (x *PendingAssets) Reset()

func (*PendingAssets) String added in v0.44.0

func (x *PendingAssets) String() string

func (*PendingAssets) Validate added in v0.44.0

func (this *PendingAssets) Validate() error

type PendingProposal added in v0.44.0

type PendingProposal struct {
	Proposal *vega.Proposal `protobuf:"bytes,1,opt,name=proposal,proto3" json:"proposal,omitempty"`
	Yes      []*vega.Vote   `protobuf:"bytes,2,rep,name=yes,proto3" json:"yes,omitempty"`
	No       []*vega.Vote   `protobuf:"bytes,3,rep,name=no,proto3" json:"no,omitempty"`
	Invalid  []*vega.Vote   `protobuf:"bytes,4,rep,name=invalid,proto3" json:"invalid,omitempty"`
	// contains filtered or unexported fields
}

func (*PendingProposal) Descriptor deprecated added in v0.44.0

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

Deprecated: Use PendingProposal.ProtoReflect.Descriptor instead.

func (*PendingProposal) GetInvalid added in v0.44.0

func (x *PendingProposal) GetInvalid() []*vega.Vote

func (*PendingProposal) GetNo added in v0.44.0

func (x *PendingProposal) GetNo() []*vega.Vote

func (*PendingProposal) GetProposal added in v0.44.0

func (x *PendingProposal) GetProposal() *vega.Proposal

func (*PendingProposal) GetYes added in v0.44.0

func (x *PendingProposal) GetYes() []*vega.Vote

func (*PendingProposal) ProtoMessage added in v0.44.0

func (*PendingProposal) ProtoMessage()

func (*PendingProposal) ProtoReflect added in v0.44.0

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

func (*PendingProposal) Reset added in v0.44.0

func (x *PendingProposal) Reset()

func (*PendingProposal) String added in v0.44.0

func (x *PendingProposal) String() string

func (*PendingProposal) Validate added in v0.44.0

func (this *PendingProposal) Validate() error

type Position added in v0.44.0

type Position struct {
	PartyId     string `protobuf:"bytes,1,opt,name=party_id,json=partyId,proto3" json:"party_id,omitempty"`
	Size        int64  `protobuf:"varint,2,opt,name=size,proto3" json:"size,omitempty"`
	Buy         int64  `protobuf:"varint,3,opt,name=buy,proto3" json:"buy,omitempty"`
	Sell        int64  `protobuf:"varint,4,opt,name=sell,proto3" json:"sell,omitempty"`
	Price       string `protobuf:"bytes,5,opt,name=price,proto3" json:"price,omitempty"`
	VwBuyPrice  string `protobuf:"bytes,6,opt,name=vw_buy_price,json=vwBuyPrice,proto3" json:"vw_buy_price,omitempty"`
	VwSellPrice string `protobuf:"bytes,7,opt,name=vw_sell_price,json=vwSellPrice,proto3" json:"vw_sell_price,omitempty"`
	// contains filtered or unexported fields
}

func (*Position) Descriptor deprecated added in v0.44.0

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

Deprecated: Use Position.ProtoReflect.Descriptor instead.

func (*Position) GetBuy added in v0.44.0

func (x *Position) GetBuy() int64

func (*Position) GetPartyId added in v0.44.0

func (x *Position) GetPartyId() string

func (*Position) GetPrice added in v0.44.0

func (x *Position) GetPrice() string

func (*Position) GetSell added in v0.44.0

func (x *Position) GetSell() int64

func (*Position) GetSize added in v0.44.0

func (x *Position) GetSize() int64

func (*Position) GetVwBuyPrice added in v0.44.0

func (x *Position) GetVwBuyPrice() string

func (*Position) GetVwSellPrice added in v0.44.0

func (x *Position) GetVwSellPrice() string

func (*Position) ProtoMessage added in v0.44.0

func (*Position) ProtoMessage()

func (*Position) ProtoReflect added in v0.44.0

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

func (*Position) Reset added in v0.44.0

func (x *Position) Reset()

func (*Position) String added in v0.44.0

func (x *Position) String() string

func (*Position) Validate added in v0.44.0

func (this *Position) Validate() error

type PriceBound added in v0.44.0

type PriceBound struct {
	Active     bool                         `protobuf:"varint,1,opt,name=active,proto3" json:"active,omitempty"`
	UpFactor   string                       `protobuf:"bytes,2,opt,name=up_factor,json=upFactor,proto3" json:"up_factor,omitempty"`
	DownFactor string                       `protobuf:"bytes,3,opt,name=down_factor,json=downFactor,proto3" json:"down_factor,omitempty"`
	Trigger    *vega.PriceMonitoringTrigger `protobuf:"bytes,4,opt,name=trigger,proto3" json:"trigger,omitempty"`
	// contains filtered or unexported fields
}

func (*PriceBound) Descriptor deprecated added in v0.44.0

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

Deprecated: Use PriceBound.ProtoReflect.Descriptor instead.

func (*PriceBound) GetActive added in v0.44.0

func (x *PriceBound) GetActive() bool

func (*PriceBound) GetDownFactor added in v0.44.0

func (x *PriceBound) GetDownFactor() string

func (*PriceBound) GetTrigger added in v0.44.0

func (x *PriceBound) GetTrigger() *vega.PriceMonitoringTrigger

func (*PriceBound) GetUpFactor added in v0.44.0

func (x *PriceBound) GetUpFactor() string

func (*PriceBound) ProtoMessage added in v0.44.0

func (*PriceBound) ProtoMessage()

func (*PriceBound) ProtoReflect added in v0.44.0

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

func (*PriceBound) Reset added in v0.44.0

func (x *PriceBound) Reset()

func (*PriceBound) String added in v0.44.0

func (x *PriceBound) String() string

func (*PriceBound) Validate added in v0.44.0

func (this *PriceBound) Validate() error

type PriceMonitor added in v0.44.0

type PriceMonitor struct {
	Initialised         bool               `protobuf:"varint,3,opt,name=initialised,proto3" json:"initialised,omitempty"`
	FpHorizons          []*DecimalMap      `protobuf:"bytes,4,rep,name=fp_horizons,json=fpHorizons,proto3" json:"fp_horizons,omitempty"`
	Now                 int64              `protobuf:"varint,5,opt,name=now,proto3" json:"now,omitempty"`
	Update              int64              `protobuf:"varint,6,opt,name=update,proto3" json:"update,omitempty"`
	Bounds              []*PriceBound      `protobuf:"bytes,7,rep,name=bounds,proto3" json:"bounds,omitempty"`
	PriceRangeCacheTime int64              `protobuf:"varint,8,opt,name=price_range_cache_time,json=priceRangeCacheTime,proto3" json:"price_range_cache_time,omitempty"`
	PriceRangeCache     []*PriceRangeCache `protobuf:"bytes,9,rep,name=price_range_cache,json=priceRangeCache,proto3" json:"price_range_cache,omitempty"`
	RefPriceCacheTime   int64              `protobuf:"varint,10,opt,name=ref_price_cache_time,json=refPriceCacheTime,proto3" json:"ref_price_cache_time,omitempty"`
	RefPriceCache       []*DecimalMap      `protobuf:"bytes,11,rep,name=ref_price_cache,json=refPriceCache,proto3" json:"ref_price_cache,omitempty"`
	// contains filtered or unexported fields
}

func (*PriceMonitor) Descriptor deprecated added in v0.44.0

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

Deprecated: Use PriceMonitor.ProtoReflect.Descriptor instead.

func (*PriceMonitor) GetBounds added in v0.44.0

func (x *PriceMonitor) GetBounds() []*PriceBound

func (*PriceMonitor) GetFpHorizons added in v0.44.0

func (x *PriceMonitor) GetFpHorizons() []*DecimalMap

func (*PriceMonitor) GetInitialised added in v0.44.0

func (x *PriceMonitor) GetInitialised() bool

func (*PriceMonitor) GetNow added in v0.44.0

func (x *PriceMonitor) GetNow() int64

func (*PriceMonitor) GetPriceRangeCache added in v0.44.0

func (x *PriceMonitor) GetPriceRangeCache() []*PriceRangeCache

func (*PriceMonitor) GetPriceRangeCacheTime added in v0.44.0

func (x *PriceMonitor) GetPriceRangeCacheTime() int64

func (*PriceMonitor) GetRefPriceCache added in v0.44.0

func (x *PriceMonitor) GetRefPriceCache() []*DecimalMap

func (*PriceMonitor) GetRefPriceCacheTime added in v0.44.0

func (x *PriceMonitor) GetRefPriceCacheTime() int64

func (*PriceMonitor) GetUpdate added in v0.44.0

func (x *PriceMonitor) GetUpdate() int64

func (*PriceMonitor) ProtoMessage added in v0.44.0

func (*PriceMonitor) ProtoMessage()

func (*PriceMonitor) ProtoReflect added in v0.44.0

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

func (*PriceMonitor) Reset added in v0.44.0

func (x *PriceMonitor) Reset()

func (*PriceMonitor) String added in v0.44.0

func (x *PriceMonitor) String() string

func (*PriceMonitor) Validate added in v0.44.0

func (this *PriceMonitor) Validate() error

type PriceRange added in v0.44.0

type PriceRange struct {
	Min string `protobuf:"bytes,1,opt,name=min,proto3" json:"min,omitempty"`
	Max string `protobuf:"bytes,2,opt,name=max,proto3" json:"max,omitempty"`
	Ref string `protobuf:"bytes,3,opt,name=ref,proto3" json:"ref,omitempty"`
	// contains filtered or unexported fields
}

func (*PriceRange) Descriptor deprecated added in v0.44.0

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

Deprecated: Use PriceRange.ProtoReflect.Descriptor instead.

func (*PriceRange) GetMax added in v0.44.0

func (x *PriceRange) GetMax() string

func (*PriceRange) GetMin added in v0.44.0

func (x *PriceRange) GetMin() string

func (*PriceRange) GetRef added in v0.44.0

func (x *PriceRange) GetRef() string

func (*PriceRange) ProtoMessage added in v0.44.0

func (*PriceRange) ProtoMessage()

func (*PriceRange) ProtoReflect added in v0.44.0

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

func (*PriceRange) Reset added in v0.44.0

func (x *PriceRange) Reset()

func (*PriceRange) String added in v0.44.0

func (x *PriceRange) String() string

func (*PriceRange) Validate added in v0.44.0

func (this *PriceRange) Validate() error

type PriceRangeCache added in v0.44.0

type PriceRangeCache struct {
	Bound *PriceBound `protobuf:"bytes,1,opt,name=bound,proto3" json:"bound,omitempty"`
	Range *PriceRange `protobuf:"bytes,2,opt,name=range,proto3" json:"range,omitempty"`
	// contains filtered or unexported fields
}

func (*PriceRangeCache) Descriptor deprecated added in v0.44.0

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

Deprecated: Use PriceRangeCache.ProtoReflect.Descriptor instead.

func (*PriceRangeCache) GetBound added in v0.44.0

func (x *PriceRangeCache) GetBound() *PriceBound

func (*PriceRangeCache) GetRange added in v0.44.0

func (x *PriceRangeCache) GetRange() *PriceRange

func (*PriceRangeCache) ProtoMessage added in v0.44.0

func (*PriceRangeCache) ProtoMessage()

func (*PriceRangeCache) ProtoReflect added in v0.44.0

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

func (*PriceRangeCache) Reset added in v0.44.0

func (x *PriceRangeCache) Reset()

func (*PriceRangeCache) String added in v0.44.0

func (x *PriceRangeCache) String() string

func (*PriceRangeCache) Validate added in v0.44.0

func (this *PriceRangeCache) Validate() error

type PriceVolume added in v0.44.0

type PriceVolume struct {
	Price  string `protobuf:"bytes,1,opt,name=price,proto3" json:"price,omitempty"`
	Volume uint64 `protobuf:"varint,2,opt,name=volume,proto3" json:"volume,omitempty"`
	// contains filtered or unexported fields
}

func (*PriceVolume) Descriptor deprecated added in v0.44.0

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

Deprecated: Use PriceVolume.ProtoReflect.Descriptor instead.

func (*PriceVolume) GetPrice added in v0.44.0

func (x *PriceVolume) GetPrice() string

func (*PriceVolume) GetVolume added in v0.44.0

func (x *PriceVolume) GetVolume() uint64

func (*PriceVolume) ProtoMessage added in v0.44.0

func (*PriceVolume) ProtoMessage()

func (*PriceVolume) ProtoReflect added in v0.44.0

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

func (*PriceVolume) Reset added in v0.44.0

func (x *PriceVolume) Reset()

func (*PriceVolume) String added in v0.44.0

func (x *PriceVolume) String() string

func (*PriceVolume) Validate added in v0.44.0

func (this *PriceVolume) Validate() error

type RewardPartyAmount added in v0.44.0

type RewardPartyAmount 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 (*RewardPartyAmount) Descriptor deprecated added in v0.44.0

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

Deprecated: Use RewardPartyAmount.ProtoReflect.Descriptor instead.

func (*RewardPartyAmount) GetAmount added in v0.44.0

func (x *RewardPartyAmount) GetAmount() string

func (*RewardPartyAmount) GetParty added in v0.44.0

func (x *RewardPartyAmount) GetParty() string

func (*RewardPartyAmount) ProtoMessage added in v0.44.0

func (*RewardPartyAmount) ProtoMessage()

func (*RewardPartyAmount) ProtoReflect added in v0.44.0

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

func (*RewardPartyAmount) Reset added in v0.44.0

func (x *RewardPartyAmount) Reset()

func (*RewardPartyAmount) String added in v0.44.0

func (x *RewardPartyAmount) String() string

func (*RewardPartyAmount) Validate added in v0.44.0

func (this *RewardPartyAmount) Validate() error

type RewardsPendingPayouts added in v0.44.0

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

func (*RewardsPendingPayouts) Descriptor deprecated added in v0.44.0

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

Deprecated: Use RewardsPendingPayouts.ProtoReflect.Descriptor instead.

func (*RewardsPendingPayouts) GetAsset added in v0.44.0

func (x *RewardsPendingPayouts) GetAsset() string

func (*RewardsPendingPayouts) GetEpochSeq added in v0.44.0

func (x *RewardsPendingPayouts) GetEpochSeq() string

func (*RewardsPendingPayouts) GetFromAccount added in v0.44.0

func (x *RewardsPendingPayouts) GetFromAccount() string

func (*RewardsPendingPayouts) GetRewardPartyAmount added in v0.44.0

func (x *RewardsPendingPayouts) GetRewardPartyAmount() []*RewardPartyAmount

func (*RewardsPendingPayouts) GetRewardTime added in v0.44.0

func (x *RewardsPendingPayouts) GetRewardTime() int64

func (*RewardsPendingPayouts) GetTimestamp added in v0.44.0

func (x *RewardsPendingPayouts) GetTimestamp() int64

func (*RewardsPendingPayouts) GetTotalReward added in v0.44.0

func (x *RewardsPendingPayouts) GetTotalReward() string

func (*RewardsPendingPayouts) ProtoMessage added in v0.44.0

func (*RewardsPendingPayouts) ProtoMessage()

func (*RewardsPendingPayouts) ProtoReflect added in v0.44.0

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

func (*RewardsPendingPayouts) Reset added in v0.44.0

func (x *RewardsPendingPayouts) Reset()

func (*RewardsPendingPayouts) String added in v0.44.0

func (x *RewardsPendingPayouts) String() string

func (*RewardsPendingPayouts) Validate added in v0.44.0

func (this *RewardsPendingPayouts) Validate() error

type Snapshot

type Snapshot struct {
	Height   uint64 `protobuf:"varint,1,opt,name=height,proto3" json:"height,omitempty"`
	Format   Format `protobuf:"varint,2,opt,name=format,proto3,enum=vega.snapshot.v1.Format" json:"format,omitempty"`
	Chunks   uint32 `protobuf:"varint,3,opt,name=chunks,proto3" json:"chunks,omitempty"`
	Hash     []byte `protobuf:"bytes,4,opt,name=hash,proto3" json:"hash,omitempty"`
	Metadata []byte `protobuf:"bytes,5,opt,name=metadata,proto3" json:"metadata,omitempty"`
	// contains filtered or unexported fields
}

func (*Snapshot) Descriptor deprecated

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

Deprecated: Use Snapshot.ProtoReflect.Descriptor instead.

func (*Snapshot) GetChunks added in v0.44.0

func (x *Snapshot) GetChunks() uint32

func (*Snapshot) GetFormat added in v0.44.0

func (x *Snapshot) GetFormat() Format

func (*Snapshot) GetHash

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

func (*Snapshot) GetHeight added in v0.44.0

func (x *Snapshot) GetHeight() uint64

func (*Snapshot) GetMetadata added in v0.44.0

func (x *Snapshot) GetMetadata() []byte

func (*Snapshot) ProtoMessage

func (*Snapshot) ProtoMessage()

func (*Snapshot) ProtoReflect

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

func (*Snapshot) Reset

func (x *Snapshot) Reset()

func (*Snapshot) String

func (x *Snapshot) String() string

func (*Snapshot) Validate

func (this *Snapshot) Validate() error

type StakingAccount added in v0.44.0

type StakingAccount struct {
	Party   string             `protobuf:"bytes,1,opt,name=party,proto3" json:"party,omitempty"`
	Balance string             `protobuf:"bytes,2,opt,name=balance,proto3" json:"balance,omitempty"`
	Events  []*v1.StakeLinking `protobuf:"bytes,3,rep,name=events,proto3" json:"events,omitempty"`
	// contains filtered or unexported fields
}

func (*StakingAccount) Descriptor deprecated added in v0.44.0

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

Deprecated: Use StakingAccount.ProtoReflect.Descriptor instead.

func (*StakingAccount) GetBalance added in v0.44.0

func (x *StakingAccount) GetBalance() string

func (*StakingAccount) GetEvents added in v0.44.0

func (x *StakingAccount) GetEvents() []*v1.StakeLinking

func (*StakingAccount) GetParty added in v0.44.0

func (x *StakingAccount) GetParty() string

func (*StakingAccount) ProtoMessage added in v0.44.0

func (*StakingAccount) ProtoMessage()

func (*StakingAccount) ProtoReflect added in v0.44.0

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

func (*StakingAccount) Reset added in v0.44.0

func (x *StakingAccount) Reset()

func (*StakingAccount) String added in v0.44.0

func (x *StakingAccount) String() string

func (*StakingAccount) Validate added in v0.44.0

func (this *StakingAccount) Validate() error

type StakingAccounts added in v0.44.0

type StakingAccounts struct {
	Accounts []*StakingAccount `protobuf:"bytes,1,rep,name=accounts,proto3" json:"accounts,omitempty"`
	// contains filtered or unexported fields
}

func (*StakingAccounts) Descriptor deprecated added in v0.44.0

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

Deprecated: Use StakingAccounts.ProtoReflect.Descriptor instead.

func (*StakingAccounts) GetAccounts added in v0.44.0

func (x *StakingAccounts) GetAccounts() []*StakingAccount

func (*StakingAccounts) ProtoMessage added in v0.44.0

func (*StakingAccounts) ProtoMessage()

func (*StakingAccounts) ProtoReflect added in v0.44.0

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

func (*StakingAccounts) Reset added in v0.44.0

func (x *StakingAccounts) Reset()

func (*StakingAccounts) String added in v0.44.0

func (x *StakingAccounts) String() string

func (*StakingAccounts) Validate added in v0.44.0

func (this *StakingAccounts) Validate() error

type TimePrice added in v0.44.0

type TimePrice struct {
	Time  int64  `protobuf:"varint,1,opt,name=time,proto3" json:"time,omitempty"`
	Price string `protobuf:"bytes,2,opt,name=price,proto3" json:"price,omitempty"`
	// contains filtered or unexported fields
}

func (*TimePrice) Descriptor deprecated added in v0.44.0

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

Deprecated: Use TimePrice.ProtoReflect.Descriptor instead.

func (*TimePrice) GetPrice added in v0.44.0

func (x *TimePrice) GetPrice() string

func (*TimePrice) GetTime added in v0.44.0

func (x *TimePrice) GetTime() int64

func (*TimePrice) ProtoMessage added in v0.44.0

func (*TimePrice) ProtoMessage()

func (*TimePrice) ProtoReflect added in v0.44.0

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

func (*TimePrice) Reset added in v0.44.0

func (x *TimePrice) Reset()

func (*TimePrice) String added in v0.44.0

func (x *TimePrice) String() string

func (*TimePrice) Validate added in v0.44.0

func (this *TimePrice) Validate() error

type TxRef added in v0.44.0

type TxRef struct {
	Asset    string `protobuf:"bytes,1,opt,name=asset,proto3" json:"asset,omitempty"`
	BlockNr  uint64 `protobuf:"varint,2,opt,name=block_nr,json=blockNr,proto3" json:"block_nr,omitempty"`
	Hash     string `protobuf:"bytes,3,opt,name=hash,proto3" json:"hash,omitempty"`
	LogIndex uint64 `protobuf:"varint,4,opt,name=log_index,json=logIndex,proto3" json:"log_index,omitempty"`
	// contains filtered or unexported fields
}

func (*TxRef) Descriptor deprecated added in v0.44.0

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

Deprecated: Use TxRef.ProtoReflect.Descriptor instead.

func (*TxRef) GetAsset added in v0.44.0

func (x *TxRef) GetAsset() string

func (*TxRef) GetBlockNr added in v0.44.0

func (x *TxRef) GetBlockNr() uint64

func (*TxRef) GetHash added in v0.44.0

func (x *TxRef) GetHash() string

func (*TxRef) GetLogIndex added in v0.44.0

func (x *TxRef) GetLogIndex() uint64

func (*TxRef) ProtoMessage added in v0.44.0

func (*TxRef) ProtoMessage()

func (*TxRef) ProtoReflect added in v0.44.0

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

func (*TxRef) Reset added in v0.44.0

func (x *TxRef) Reset()

func (*TxRef) String added in v0.44.0

func (x *TxRef) String() string

func (*TxRef) Validate added in v0.44.0

func (this *TxRef) Validate() error

type Withdrawal added in v0.44.0

type Withdrawal struct {
	Ref        string           `protobuf:"bytes,1,opt,name=ref,proto3" json:"ref,omitempty"`
	Withdrawal *vega.Withdrawal `protobuf:"bytes,2,opt,name=withdrawal,proto3" json:"withdrawal,omitempty"`
	// contains filtered or unexported fields
}

func (*Withdrawal) Descriptor deprecated added in v0.44.0

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

Deprecated: Use Withdrawal.ProtoReflect.Descriptor instead.

func (*Withdrawal) GetRef added in v0.44.0

func (x *Withdrawal) GetRef() string

func (*Withdrawal) GetWithdrawal added in v0.44.0

func (x *Withdrawal) GetWithdrawal() *vega.Withdrawal

func (*Withdrawal) ProtoMessage added in v0.44.0

func (*Withdrawal) ProtoMessage()

func (*Withdrawal) ProtoReflect added in v0.44.0

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

func (*Withdrawal) Reset added in v0.44.0

func (x *Withdrawal) Reset()

func (*Withdrawal) String added in v0.44.0

func (x *Withdrawal) String() string

func (*Withdrawal) Validate added in v0.44.0

func (this *Withdrawal) Validate() error

Jump to

Keyboard shortcuts

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