Documentation ¶
Index ¶
- Variables
- type AddressWithBlindingKey
- func (*AddressWithBlindingKey) Descriptor() ([]byte, []int)deprecated
- func (x *AddressWithBlindingKey) GetAddress() string
- func (x *AddressWithBlindingKey) GetBlinding() string
- func (*AddressWithBlindingKey) ProtoMessage()
- func (x *AddressWithBlindingKey) ProtoReflect() protoreflect.Message
- func (x *AddressWithBlindingKey) Reset()
- func (x *AddressWithBlindingKey) String() string
- type Balance
- type BalanceWithFee
- func (*BalanceWithFee) Descriptor() ([]byte, []int)deprecated
- func (x *BalanceWithFee) GetBalance() *Balance
- func (x *BalanceWithFee) GetFee() *Fee
- func (*BalanceWithFee) ProtoMessage()
- func (x *BalanceWithFee) ProtoReflect() protoreflect.Message
- func (x *BalanceWithFee) Reset()
- func (x *BalanceWithFee) String() string
- type Fee
- type Fixed
- type Market
- type MarketWithFee
- func (*MarketWithFee) Descriptor() ([]byte, []int)deprecated
- func (x *MarketWithFee) GetFee() *Fee
- func (x *MarketWithFee) GetMarket() *Market
- func (*MarketWithFee) ProtoMessage()
- func (x *MarketWithFee) ProtoReflect() protoreflect.Message
- func (x *MarketWithFee) Reset()
- func (x *MarketWithFee) String() string
- type Price
- func (*Price) Descriptor() ([]byte, []int)deprecated
- func (x *Price) GetBasePrice() float64
- func (x *Price) GetBasePriceDeprecated() float32
- func (x *Price) GetQuotePrice() float64
- func (x *Price) GetQuotePriceDeprecated() float32
- func (*Price) ProtoMessage()
- func (x *Price) ProtoReflect() protoreflect.Message
- func (x *Price) Reset()
- func (x *Price) String() string
- type PriceWithFee
- func (*PriceWithFee) Descriptor() ([]byte, []int)deprecated
- func (x *PriceWithFee) GetAmount() uint64
- func (x *PriceWithFee) GetAsset() string
- func (x *PriceWithFee) GetBalance() *Balance
- func (x *PriceWithFee) GetFee() *Fee
- func (x *PriceWithFee) GetPrice() *Price
- func (*PriceWithFee) ProtoMessage()
- func (x *PriceWithFee) ProtoReflect() protoreflect.Message
- func (x *PriceWithFee) Reset()
- func (x *PriceWithFee) String() string
Constants ¶
This section is empty.
Variables ¶
View Source
var File_types_proto protoreflect.FileDescriptor
Functions ¶
This section is empty.
Types ¶
type AddressWithBlindingKey ¶
type AddressWithBlindingKey struct { // The confidential address encoded using a blech32 format. Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"` // The blinding private key for the given address encoded in hex format Blinding string `protobuf:"bytes,2,opt,name=blinding,proto3" json:"blinding,omitempty"` // contains filtered or unexported fields }
func (*AddressWithBlindingKey) Descriptor
deprecated
func (*AddressWithBlindingKey) Descriptor() ([]byte, []int)
Deprecated: Use AddressWithBlindingKey.ProtoReflect.Descriptor instead.
func (*AddressWithBlindingKey) GetAddress ¶
func (x *AddressWithBlindingKey) GetAddress() string
func (*AddressWithBlindingKey) GetBlinding ¶
func (x *AddressWithBlindingKey) GetBlinding() string
func (*AddressWithBlindingKey) ProtoMessage ¶
func (*AddressWithBlindingKey) ProtoMessage()
func (*AddressWithBlindingKey) ProtoReflect ¶
func (x *AddressWithBlindingKey) ProtoReflect() protoreflect.Message
func (*AddressWithBlindingKey) Reset ¶
func (x *AddressWithBlindingKey) Reset()
func (*AddressWithBlindingKey) String ¶
func (x *AddressWithBlindingKey) String() string
type Balance ¶
type Balance struct { BaseAmount uint64 `protobuf:"varint,1,opt,name=base_amount,json=baseAmount,proto3" json:"base_amount,omitempty"` QuoteAmount uint64 `protobuf:"varint,2,opt,name=quote_amount,json=quoteAmount,proto3" json:"quote_amount,omitempty"` // contains filtered or unexported fields }
func (*Balance) Descriptor
deprecated
func (*Balance) GetBaseAmount ¶
func (*Balance) GetQuoteAmount ¶
func (*Balance) ProtoMessage ¶
func (*Balance) ProtoMessage()
func (*Balance) ProtoReflect ¶
func (x *Balance) ProtoReflect() protoreflect.Message
type BalanceWithFee ¶
type BalanceWithFee struct { Balance *Balance `protobuf:"bytes,1,opt,name=balance,proto3" json:"balance,omitempty"` Fee *Fee `protobuf:"bytes,2,opt,name=fee,proto3" json:"fee,omitempty"` // contains filtered or unexported fields }
func (*BalanceWithFee) Descriptor
deprecated
func (*BalanceWithFee) Descriptor() ([]byte, []int)
Deprecated: Use BalanceWithFee.ProtoReflect.Descriptor instead.
func (*BalanceWithFee) GetBalance ¶
func (x *BalanceWithFee) GetBalance() *Balance
func (*BalanceWithFee) GetFee ¶
func (x *BalanceWithFee) GetFee() *Fee
func (*BalanceWithFee) ProtoMessage ¶
func (*BalanceWithFee) ProtoMessage()
func (*BalanceWithFee) ProtoReflect ¶
func (x *BalanceWithFee) ProtoReflect() protoreflect.Message
func (*BalanceWithFee) Reset ¶
func (x *BalanceWithFee) Reset()
func (*BalanceWithFee) String ¶
func (x *BalanceWithFee) String() string
type Fee ¶
type Fee struct { BasisPoint int64 `protobuf:"varint,2,opt,name=basis_point,json=basisPoint,proto3" json:"basis_point,omitempty"` Fixed *Fixed `protobuf:"bytes,3,opt,name=fixed,proto3" json:"fixed,omitempty"` // contains filtered or unexported fields }
Custom Types
func (*Fee) Descriptor
deprecated
func (*Fee) GetBasisPoint ¶
func (*Fee) ProtoMessage ¶
func (*Fee) ProtoMessage()
func (*Fee) ProtoReflect ¶
func (x *Fee) ProtoReflect() protoreflect.Message
type Fixed ¶
type Fixed struct { BaseFee int64 `protobuf:"varint,1,opt,name=base_fee,json=baseFee,proto3" json:"base_fee,omitempty"` QuoteFee int64 `protobuf:"varint,2,opt,name=quote_fee,json=quoteFee,proto3" json:"quote_fee,omitempty"` // contains filtered or unexported fields }
func (*Fixed) Descriptor
deprecated
func (*Fixed) GetBaseFee ¶
func (*Fixed) GetQuoteFee ¶
func (*Fixed) ProtoMessage ¶
func (*Fixed) ProtoMessage()
func (*Fixed) ProtoReflect ¶
func (x *Fixed) ProtoReflect() protoreflect.Message
type Market ¶
type Market struct { BaseAsset string `protobuf:"bytes,1,opt,name=base_asset,json=baseAsset,proto3" json:"base_asset,omitempty"` QuoteAsset string `protobuf:"bytes,2,opt,name=quote_asset,json=quoteAsset,proto3" json:"quote_asset,omitempty"` // contains filtered or unexported fields }
func (*Market) Descriptor
deprecated
func (*Market) GetBaseAsset ¶
func (*Market) GetQuoteAsset ¶
func (*Market) ProtoMessage ¶
func (*Market) ProtoMessage()
func (*Market) ProtoReflect ¶
func (x *Market) ProtoReflect() protoreflect.Message
type MarketWithFee ¶
type MarketWithFee struct { Market *Market `protobuf:"bytes,1,opt,name=market,proto3" json:"market,omitempty"` Fee *Fee `protobuf:"bytes,2,opt,name=fee,proto3" json:"fee,omitempty"` // contains filtered or unexported fields }
func (*MarketWithFee) Descriptor
deprecated
func (*MarketWithFee) Descriptor() ([]byte, []int)
Deprecated: Use MarketWithFee.ProtoReflect.Descriptor instead.
func (*MarketWithFee) GetFee ¶
func (x *MarketWithFee) GetFee() *Fee
func (*MarketWithFee) GetMarket ¶
func (x *MarketWithFee) GetMarket() *Market
func (*MarketWithFee) ProtoMessage ¶
func (*MarketWithFee) ProtoMessage()
func (*MarketWithFee) ProtoReflect ¶
func (x *MarketWithFee) ProtoReflect() protoreflect.Message
func (*MarketWithFee) Reset ¶
func (x *MarketWithFee) Reset()
func (*MarketWithFee) String ¶
func (x *MarketWithFee) String() string
type Price ¶
type Price struct { BasePriceDeprecated float32 `protobuf:"fixed32,1,opt,name=base_price_deprecated,json=basePriceDeprecated,proto3" json:"base_price_deprecated,omitempty"` QuotePriceDeprecated float32 `protobuf:"fixed32,2,opt,name=quote_price_deprecated,json=quotePriceDeprecated,proto3" json:"quote_price_deprecated,omitempty"` BasePrice float64 `protobuf:"fixed64,3,opt,name=base_price,json=basePrice,proto3" json:"base_price,omitempty"` QuotePrice float64 `protobuf:"fixed64,4,opt,name=quote_price,json=quotePrice,proto3" json:"quote_price,omitempty"` // contains filtered or unexported fields }
func (*Price) Descriptor
deprecated
func (*Price) GetBasePrice ¶
func (*Price) GetBasePriceDeprecated ¶
func (*Price) GetQuotePrice ¶
func (*Price) GetQuotePriceDeprecated ¶
func (*Price) ProtoMessage ¶
func (*Price) ProtoMessage()
func (*Price) ProtoReflect ¶
func (x *Price) ProtoReflect() protoreflect.Message
type PriceWithFee ¶
type PriceWithFee struct { Price *Price `protobuf:"bytes,1,opt,name=price,proto3" json:"price,omitempty"` Fee *Fee `protobuf:"bytes,2,opt,name=fee,proto3" json:"fee,omitempty"` Amount uint64 `protobuf:"varint,3,opt,name=amount,proto3" json:"amount,omitempty"` Asset string `protobuf:"bytes,4,opt,name=asset,proto3" json:"asset,omitempty"` Balance *Balance `protobuf:"bytes,5,opt,name=balance,proto3" json:"balance,omitempty"` // contains filtered or unexported fields }
func (*PriceWithFee) Descriptor
deprecated
func (*PriceWithFee) Descriptor() ([]byte, []int)
Deprecated: Use PriceWithFee.ProtoReflect.Descriptor instead.
func (*PriceWithFee) GetAmount ¶
func (x *PriceWithFee) GetAmount() uint64
func (*PriceWithFee) GetAsset ¶
func (x *PriceWithFee) GetAsset() string
func (*PriceWithFee) GetBalance ¶
func (x *PriceWithFee) GetBalance() *Balance
func (*PriceWithFee) GetFee ¶
func (x *PriceWithFee) GetFee() *Fee
func (*PriceWithFee) GetPrice ¶
func (x *PriceWithFee) GetPrice() *Price
func (*PriceWithFee) ProtoMessage ¶
func (*PriceWithFee) ProtoMessage()
func (*PriceWithFee) ProtoReflect ¶
func (x *PriceWithFee) ProtoReflect() protoreflect.Message
func (*PriceWithFee) Reset ¶
func (x *PriceWithFee) Reset()
func (*PriceWithFee) String ¶
func (x *PriceWithFee) String() string
Click to show internal directories.
Click to hide internal directories.