types

package
v0.37.0 Latest Latest
Warning

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

Go to latest
Published: Jul 1, 2024 License: Apache-2.0 Imports: 36 Imported by: 1

Documentation

Overview

Package types is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Index

Constants

View Source
const (
	EventOpen               = "leveragelp/position_open"
	EventClose              = "leveragelp/position_close"
	EventIncrementalPayFund = "leveragelp/incremental_pay_fund"
	EventRepayFund          = "leveragelp/repay_fund"
)
View Source
const (
	// ModuleName defines the module name
	ModuleName = "leveragelp"

	// StoreKey defines the primary module store key
	StoreKey = ModuleName

	// RouterKey defines the module's message routing key
	RouterKey = ModuleName

	// MemStoreKey defines the in-memory store key
	MemStoreKey = "mem_leveragelp"

	// ParamsKey is the prefix for parameters of leveragelp module
	ParamsKey = "leveragelp_params"
)
View Source
const (
	TypeMsgOpen         = "open"
	TypeMsgClose        = "close"
	TypeMsgUpdateParams = "update_params"
	TypeMsgWhitelist    = "whitelist"
	TypeMsgUpdatePools  = "update_pools"
	TypeMsgDewhitelist  = "dewhitelist"
	TypeMsgClaimRewards = "claim_rewards"
)
View Source
const DefaultIndex uint64 = 1

DefaultIndex is the default global index

View Source
const MaxPageLimit = 100
View Source
const (
	// PoolKeyPrefix is the prefix to retrieve all Pool
	PoolKeyPrefix = "Pool/value/"
)
View Source
const TypeMsgAddCollateral = "add_collateral"
View Source
const TypeMsgUpdateStopLoss = "update_stop_loss"

Variables

View Source
var (
	ErrPositionDoesNotExist    = errorsmod.Register(ModuleName, 1, "position not found")
	ErrPositionInvalid         = errorsmod.Register(ModuleName, 2, "position invalid")
	ErrPositionDisabled        = errorsmod.Register(ModuleName, 3, "leveragelp not enabled for pool")
	ErrInvalidPosition         = errorsmod.Register(ModuleName, 6, "position position invalid")
	ErrMaxOpenPositions        = errorsmod.Register(ModuleName, 7, "max open positions reached")
	ErrUnauthorised            = errorsmod.Register(ModuleName, 8, "address not on whitelist")
	ErrBorrowTooLow            = errorsmod.Register(ModuleName, 9, "borrowed amount is too low")
	ErrBorrowTooHigh           = errorsmod.Register(ModuleName, 10, "borrowed amount is higher than pool depth")
	ErrCustodyTooHigh          = errorsmod.Register(ModuleName, 11, "custody amount is higher than pool depth")
	ErrPositionUnhealthy       = errorsmod.Register(ModuleName, 12, "position health would be too low for safety factor")
	ErrInvalidCollateralAsset  = errorsmod.Register(ModuleName, 13, "invalid collateral asset")
	ErrInvalidBorrowingAsset   = errorsmod.Register(ModuleName, 14, "invalid borrowing asset")
	ErrPoolDoesNotExist        = errorsmod.Register(ModuleName, 15, "pool does not exist")
	ErrBalanceNotAvailable     = errorsmod.Register(ModuleName, 18, "user does not have enough balance of the required coin")
	ErrAmountTooLow            = errorsmod.Register(ModuleName, 32, "Tx amount is too low")
	ErrLeveragelpDisabled      = errorsmod.Register(ModuleName, 33, "leveragelp disabled pool")
	ErrAmmPoolNotFound         = errorsmod.Register(ModuleName, 34, "amm pool not found")
	ErrOnlyBaseCurrencyAllowed = errorsmod.Register(ModuleName, 35, "only base currency is allowed for leverage lp")
	ErrInsufficientUsdcAfterOp = errorsmod.Register(ModuleName, 36, "insufficient amount of usdc after the operation for leveragelp withdrawal")
	ErrInvalidCloseSize        = errorsmod.Register(ModuleName, 37, "invalid close size")
	ErrNegUserAmountAfterRepay = errorsmod.Register(ModuleName, 38, "negative user amount after repay")
	ErrInvalidLeverage         = errorsmod.Register(ModuleName, 39, "leverage should be same as existing position")
)

x/leveragelp module sentinel errors

View Source
var (
	ErrInvalidLengthGenesis        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowGenesis          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupGenesis = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	PositionPrefix          = []byte{0x01}
	PositionCountPrefix     = []byte{0x02}
	OpenPositionCountPrefix = []byte{0x04}
	WhitelistPrefix         = []byte{0x05}
	SQBeginBlockPrefix      = []byte{0x06}
	LiquidationSortPrefix   = []byte{0x07} // Position liquidation sort prefix
	StopLossSortPrefix      = []byte{0x08} // Position stop loss sort prefix
)
View Source
var (
	KeyLeverageMax              = []byte("LeverageMax")
	KeyEpochLength              = []byte("EpochLength")
	KeyRemovalQueueThreshold    = []byte("RemovalQueueThreshold")
	KeyMaxOpenPositions         = []byte("MaxOpenPositions")
	KeyPoolOpenThreshold        = []byte("PoolOpenThreshold")
	KeyForceCloseFundPercentage = []byte("ForceCloseFundPercentage")
	KeyForceCloseFundAddress    = []byte("ForceCloseFundAddress")
	KeySqModifier               = []byte("SqModifier")
	KeySafetyFactor             = []byte("SafetyFactor")
	KeyWhitelistingEnabled      = []byte("WhitelistingEnabled")
	KeyInvariantCheckEpoch      = []byte("InvariantCheckEpoch")
)
View Source
var (
	ErrInvalidLengthParams        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowParams          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupParams = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthPool        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowPool          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupPool = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthQuery        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowQuery          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupQuery = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthTx        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowTx          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupTx = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthTypes        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowTypes          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupTypes = fmt.Errorf("proto: unexpected end of group")
)

Functions

func GetLiquidationSortKey added in v0.33.0

func GetLiquidationSortKey(poolId uint64, lpAmount math.Int, borrowed math.Int, id uint64) []byte

func GetLiquidationSortPrefix added in v0.33.0

func GetLiquidationSortPrefix(poolId uint64) []byte

func GetPositionAddress added in v0.33.0

func GetPositionAddress(positionId uint64) sdk.AccAddress

func GetPositionKey

func GetPositionKey(address string, id uint64) []byte

func GetPositionPrefixForAddress

func GetPositionPrefixForAddress(address string) []byte

func GetStopLossSortKey added in v0.33.0

func GetStopLossSortKey(poolId uint64, stopLossPrice math.LegacyDec, id uint64) []byte

func GetStopLossSortPrefix added in v0.33.0

func GetStopLossSortPrefix(poolId uint64) []byte

func GetUint64Bytes

func GetUint64Bytes(ID uint64) []byte

GetUint64Bytes returns the byte representation of the ID

func GetUint64FromBytes

func GetUint64FromBytes(bz []byte) uint64

GetUint64FromBytes returns ID in uint64 format from a byte array

func GetWhitelistKey

func GetWhitelistKey(address string) []byte

func KeyPrefix

func KeyPrefix(p string) []byte

func NewLeveragelpCollateralAddress

func NewLeveragelpCollateralAddress(positionId uint64) sdk.AccAddress

Generate a new leveragelp collateral wallet per position

func NewLeveragelpCustodyAddress

func NewLeveragelpCustodyAddress(positionId uint64) sdk.AccAddress

Generate a new leveragelp custody wallet per position

func ParamKeyTable

func ParamKeyTable() paramtypes.KeyTable

ParamKeyTable the param key table for launch module

func PoolKey

func PoolKey(
	index uint64,
) []byte

PoolKey returns the store key to retrieve a Pool from the index fields

func RegisterCodec

func RegisterCodec(cdc *codec.LegacyAmino)

func RegisterInterfaces

func RegisterInterfaces(registry cdctypes.InterfaceRegistry)

func RegisterMsgServer

func RegisterMsgServer(s grpc1.Server, srv MsgServer)

func RegisterQueryHandler

func RegisterQueryHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error

RegisterQueryHandler registers the http handlers for service Query to "mux". The handlers forward requests to the grpc endpoint over "conn".

func RegisterQueryHandlerClient

func RegisterQueryHandlerClient(ctx context.Context, mux *runtime.ServeMux, client QueryClient) error

RegisterQueryHandlerClient registers the http handlers for service Query to "mux". The handlers forward requests to the grpc endpoint over the given implementation of "QueryClient". Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in "QueryClient" doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in "QueryClient" to call the correct interceptors.

func RegisterQueryHandlerFromEndpoint

func RegisterQueryHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error)

RegisterQueryHandlerFromEndpoint is same as RegisterQueryHandler but automatically dials to "endpoint" and closes the connection when "ctx" gets done.

func RegisterQueryHandlerServer

func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, server QueryServer) error

RegisterQueryHandlerServer registers the http handlers for service Query to "mux". UnaryRPC :call QueryServer directly. StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906. Note that using this registration option will cause many gRPC library features to stop working. Consider using RegisterQueryHandlerFromEndpoint instead.

func RegisterQueryServer

func RegisterQueryServer(s grpc1.Server, srv QueryServer)

Types

type AccountKeeper

type AccountKeeper interface {
	GetAccount(ctx sdk.Context, addr sdk.AccAddress) authtypes.AccountI
}

AccountKeeper defines the expected account keeper used for simulations (noalias)

type AddressId added in v0.33.0

type AddressId struct {
	Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	Id      uint64 `protobuf:"varint,2,opt,name=id,proto3" json:"id,omitempty"`
}

func (*AddressId) Descriptor added in v0.33.0

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

func (*AddressId) GetAddress added in v0.33.0

func (m *AddressId) GetAddress() string

func (*AddressId) GetId added in v0.33.0

func (m *AddressId) GetId() uint64

func (*AddressId) Marshal added in v0.33.0

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

func (*AddressId) MarshalTo added in v0.33.0

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

func (*AddressId) MarshalToSizedBuffer added in v0.33.0

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

func (*AddressId) ProtoMessage added in v0.33.0

func (*AddressId) ProtoMessage()

func (*AddressId) Reset added in v0.33.0

func (m *AddressId) Reset()

func (*AddressId) Size added in v0.33.0

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

func (*AddressId) String added in v0.33.0

func (m *AddressId) String() string

func (*AddressId) Unmarshal added in v0.33.0

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

func (*AddressId) XXX_DiscardUnknown added in v0.33.0

func (m *AddressId) XXX_DiscardUnknown()

func (*AddressId) XXX_Marshal added in v0.33.0

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

func (*AddressId) XXX_Merge added in v0.33.0

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

func (*AddressId) XXX_Size added in v0.33.0

func (m *AddressId) XXX_Size() int

func (*AddressId) XXX_Unmarshal added in v0.33.0

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

type AmmKeeper

type AmmKeeper interface {
	// GetPool returns a pool from its index
	GetPool(sdk.Context, uint64) (ammtypes.Pool, bool)
	// Get all pools
	GetAllPool(sdk.Context) []ammtypes.Pool
	ExitPoolEst(ctx sdk.Context, poolId uint64, shareInAmount math.Int, tokenOutDenom string) (exitCoins sdk.Coins, weightBalanceBonus math.LegacyDec, err error)
	JoinPoolEst(ctx sdk.Context, poolId uint64, tokenInMaxs sdk.Coins) (tokensIn sdk.Coins, sharesOut math.Int, slippage sdk.Dec, weightBalanceBonus sdk.Dec, err error)
	// IterateCommitments iterates over all Commitments and performs a callback.
	IterateLiquidityPools(sdk.Context, func(ammtypes.Pool) bool)
	GetPoolSnapshotOrSet(ctx sdk.Context, pool ammtypes.Pool) (val ammtypes.Pool)

	CalcOutAmtGivenIn(ctx sdk.Context, poolId uint64, oracle ammtypes.OracleKeeper, snapshot *ammtypes.Pool, tokensIn sdk.Coins, tokenOutDenom string, swapFee sdk.Dec) (sdk.Coin, sdk.Dec, error)
	CalcInAmtGivenOut(ctx sdk.Context, poolId uint64, oracle ammtypes.OracleKeeper, snapshot *ammtypes.Pool, tokensOut sdk.Coins, tokenInDenom string, swapFee sdk.Dec) (tokenIn sdk.Coin, slippage sdk.Dec, err error)
	JoinPoolNoSwap(ctx sdk.Context, sender sdk.AccAddress, poolId uint64, shareOutAmount math.Int, tokenInMaxs sdk.Coins) (tokenIn sdk.Coins, sharesOut math.Int, err error)
	ExitPool(ctx sdk.Context, sender sdk.AccAddress, poolId uint64, shareInAmount math.Int, tokenOutMins sdk.Coins, tokenOutDenom string) (exitCoins sdk.Coins, err error)
}

AmmKeeper defines the expected interface needed to swap tokens

type AssetProfileKeeper added in v0.15.0

type AssetProfileKeeper interface {
	GetEntry(ctx sdk.Context, baseDenom string) (val assetprofiletypes.Entry, found bool)
	// GetUsdcDenom returns USDC denom
	GetUsdcDenom(ctx sdk.Context) (string, bool)
}

AssetProfileKeeper defines the expected interface needed to retrieve denom info

type BankKeeper

type BankKeeper interface {
	GetAllBalances(ctx sdk.Context, addr sdk.AccAddress) sdk.Coins
	GetBalance(ctx sdk.Context, addr sdk.AccAddress, denom string) sdk.Coin

	SpendableCoins(ctx sdk.Context, addr sdk.AccAddress) sdk.Coins

	SendCoinsFromModuleToModule(ctx sdk.Context, senderModule string, recipientModule string, amt sdk.Coins) error
	SendCoinsFromModuleToAccount(ctx sdk.Context, senderModule string, recipientAddr sdk.AccAddress, amt sdk.Coins) error
	SendCoinsFromAccountToModule(ctx sdk.Context, senderAddr sdk.AccAddress, recipientModule string, amt sdk.Coins) error
	SendCoins(ctx sdk.Context, fromAddr sdk.AccAddress, toAddr sdk.AccAddress, amt sdk.Coins) error

	BlockedAddr(addr sdk.AccAddress) bool
	HasBalance(ctx sdk.Context, addr sdk.AccAddress, amt sdk.Coin) bool
}

BankKeeper defines the expected interface needed to retrieve account balances.

type CommitmentKeeper

type CommitmentKeeper interface {
	GetCommitments(ctx sdk.Context, creator string) commitmenttypes.Commitments
}

type GenesisState

type GenesisState struct {
	Params           Params     `protobuf:"bytes,1,opt,name=params,proto3" json:"params"`
	PoolList         []Pool     `protobuf:"bytes,2,rep,name=pool_list,json=poolList,proto3" json:"pool_list"`
	PositionList     []Position `protobuf:"bytes,3,rep,name=position_list,json=positionList,proto3" json:"position_list"`
	AddressWhitelist []string   `protobuf:"bytes,4,rep,name=address_whitelist,json=addressWhitelist,proto3" json:"address_whitelist,omitempty"`
}

GenesisState defines the leveragelp module's genesis state.

func DefaultGenesis

func DefaultGenesis() *GenesisState

DefaultGenesis returns the default genesis state

func (*GenesisState) Descriptor

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

func (*GenesisState) GetAddressWhitelist

func (m *GenesisState) GetAddressWhitelist() []string

func (*GenesisState) GetParams

func (m *GenesisState) GetParams() Params

func (*GenesisState) GetPoolList

func (m *GenesisState) GetPoolList() []Pool

func (*GenesisState) GetPositionList

func (m *GenesisState) GetPositionList() []Position

func (*GenesisState) Marshal

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

func (*GenesisState) MarshalTo

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

func (*GenesisState) MarshalToSizedBuffer

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

func (*GenesisState) ProtoMessage

func (*GenesisState) ProtoMessage()

func (*GenesisState) Reset

func (m *GenesisState) Reset()

func (*GenesisState) Size

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

func (*GenesisState) String

func (m *GenesisState) String() string

func (*GenesisState) Unmarshal

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

func (GenesisState) Validate

func (gs GenesisState) Validate() error

Validate performs basic genesis state validation returning an error upon any failure.

func (*GenesisState) XXX_DiscardUnknown

func (m *GenesisState) XXX_DiscardUnknown()

func (*GenesisState) XXX_Marshal

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

func (*GenesisState) XXX_Merge

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

func (*GenesisState) XXX_Size

func (m *GenesisState) XXX_Size() int

func (*GenesisState) XXX_Unmarshal

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

type IsWhitelistedRequest

type IsWhitelistedRequest struct {
	Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
}

func (*IsWhitelistedRequest) Descriptor

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

func (*IsWhitelistedRequest) GetAddress

func (m *IsWhitelistedRequest) GetAddress() string

func (*IsWhitelistedRequest) Marshal

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

func (*IsWhitelistedRequest) MarshalTo

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

func (*IsWhitelistedRequest) MarshalToSizedBuffer

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

func (*IsWhitelistedRequest) ProtoMessage

func (*IsWhitelistedRequest) ProtoMessage()

func (*IsWhitelistedRequest) Reset

func (m *IsWhitelistedRequest) Reset()

func (*IsWhitelistedRequest) Size

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

func (*IsWhitelistedRequest) String

func (m *IsWhitelistedRequest) String() string

func (*IsWhitelistedRequest) Unmarshal

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

func (*IsWhitelistedRequest) XXX_DiscardUnknown

func (m *IsWhitelistedRequest) XXX_DiscardUnknown()

func (*IsWhitelistedRequest) XXX_Marshal

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

func (*IsWhitelistedRequest) XXX_Merge

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

func (*IsWhitelistedRequest) XXX_Size

func (m *IsWhitelistedRequest) XXX_Size() int

func (*IsWhitelistedRequest) XXX_Unmarshal

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

type IsWhitelistedResponse

type IsWhitelistedResponse struct {
	Address       string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	IsWhitelisted bool   `protobuf:"varint,2,opt,name=is_whitelisted,json=isWhitelisted,proto3" json:"is_whitelisted,omitempty"`
}

func (*IsWhitelistedResponse) Descriptor

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

func (*IsWhitelistedResponse) GetAddress

func (m *IsWhitelistedResponse) GetAddress() string

func (*IsWhitelistedResponse) GetIsWhitelisted

func (m *IsWhitelistedResponse) GetIsWhitelisted() bool

func (*IsWhitelistedResponse) Marshal

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

func (*IsWhitelistedResponse) MarshalTo

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

func (*IsWhitelistedResponse) MarshalToSizedBuffer

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

func (*IsWhitelistedResponse) ProtoMessage

func (*IsWhitelistedResponse) ProtoMessage()

func (*IsWhitelistedResponse) Reset

func (m *IsWhitelistedResponse) Reset()

func (*IsWhitelistedResponse) Size

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

func (*IsWhitelistedResponse) String

func (m *IsWhitelistedResponse) String() string

func (*IsWhitelistedResponse) Unmarshal

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

func (*IsWhitelistedResponse) XXX_DiscardUnknown

func (m *IsWhitelistedResponse) XXX_DiscardUnknown()

func (*IsWhitelistedResponse) XXX_Marshal

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

func (*IsWhitelistedResponse) XXX_Merge

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

func (*IsWhitelistedResponse) XXX_Size

func (m *IsWhitelistedResponse) XXX_Size() int

func (*IsWhitelistedResponse) XXX_Unmarshal

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

type LeveragelpHooks

type LeveragelpHooks interface {
	// AfterLeveragelpPositionOpen is called after Open position.
	AfterLeveragelpPositionOpen(ctx sdk.Context, ammPool ammtypes.Pool, leveragelpPool Pool)

	// AfterLeveragelpPositionModified is called after a position gets modified.
	AfterLeveragelpPositionModified(ctx sdk.Context, ammPool ammtypes.Pool, leveragelpPool Pool)

	// AfterLeveragelpPositionClosed is called after a position gets closed.
	AfterLeveragelpPositionClosed(ctx sdk.Context, leveragelpPool Pool)

	// AfterPoolCreated is called after CreatePool
	AfterAmmPoolCreated(ctx sdk.Context, ammPool ammtypes.Pool)

	// AfterJoinPool is called after JoinPool, JoinSwapExternAmountIn, and JoinSwapShareAmountOut
	AfterAmmJoinPool(ctx sdk.Context, ammPool ammtypes.Pool, leveragelpPool Pool)

	// AfterExitPool is called after ExitPool, ExitSwapShareAmountIn, and ExitSwapExternAmountOut
	AfterAmmExitPool(ctx sdk.Context, ammPool ammtypes.Pool, leveragelpPool Pool)

	// AfterSwap is called after SwapExactAmountIn and SwapExactAmountOut
	AfterAmmSwap(ctx sdk.Context, ammPool ammtypes.Pool, leveragelpPool Pool)
}

type MasterchefKeeper added in v0.33.0

type MasterchefKeeper interface {
	ClaimRewards(ctx sdk.Context, sender sdk.AccAddress, poolIds []uint64, recipient sdk.AccAddress) error
	UserPoolPendingReward(ctx sdk.Context, user sdk.AccAddress, poolId uint64) sdk.Coins
}

MasterchefKeeper defines expected interface for masterchef keeper

type MsgAddCollateral added in v0.37.0

type MsgAddCollateral struct {
	Creator    string                                 `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	Id         uint64                                 `protobuf:"varint,2,opt,name=id,proto3" json:"id,omitempty"`
	Collateral github_com_cosmos_cosmos_sdk_types.Int `protobuf:"bytes,3,opt,name=collateral,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Int" json:"collateral"`
}

func NewMsgAddCollateral added in v0.37.0

func NewMsgAddCollateral(creator string, id uint64, collateral sdk.Int) *MsgAddCollateral

func (*MsgAddCollateral) Descriptor added in v0.37.0

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

func (*MsgAddCollateral) GetCreator added in v0.37.0

func (m *MsgAddCollateral) GetCreator() string

func (*MsgAddCollateral) GetId added in v0.37.0

func (m *MsgAddCollateral) GetId() uint64

func (*MsgAddCollateral) GetSignBytes added in v0.37.0

func (msg *MsgAddCollateral) GetSignBytes() []byte

func (*MsgAddCollateral) GetSigners added in v0.37.0

func (msg *MsgAddCollateral) GetSigners() []sdk.AccAddress

func (*MsgAddCollateral) Marshal added in v0.37.0

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

func (*MsgAddCollateral) MarshalTo added in v0.37.0

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

func (*MsgAddCollateral) MarshalToSizedBuffer added in v0.37.0

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

func (*MsgAddCollateral) ProtoMessage added in v0.37.0

func (*MsgAddCollateral) ProtoMessage()

func (*MsgAddCollateral) Reset added in v0.37.0

func (m *MsgAddCollateral) Reset()

func (*MsgAddCollateral) Route added in v0.37.0

func (msg *MsgAddCollateral) Route() string

func (*MsgAddCollateral) Size added in v0.37.0

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

func (*MsgAddCollateral) String added in v0.37.0

func (m *MsgAddCollateral) String() string

func (*MsgAddCollateral) Type added in v0.37.0

func (msg *MsgAddCollateral) Type() string

func (*MsgAddCollateral) Unmarshal added in v0.37.0

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

func (*MsgAddCollateral) ValidateBasic added in v0.37.0

func (msg *MsgAddCollateral) ValidateBasic() error

func (*MsgAddCollateral) XXX_DiscardUnknown added in v0.37.0

func (m *MsgAddCollateral) XXX_DiscardUnknown()

func (*MsgAddCollateral) XXX_Marshal added in v0.37.0

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

func (*MsgAddCollateral) XXX_Merge added in v0.37.0

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

func (*MsgAddCollateral) XXX_Size added in v0.37.0

func (m *MsgAddCollateral) XXX_Size() int

func (*MsgAddCollateral) XXX_Unmarshal added in v0.37.0

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

type MsgAddCollateralResponse added in v0.37.0

type MsgAddCollateralResponse struct {
}

func (*MsgAddCollateralResponse) Descriptor added in v0.37.0

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

func (*MsgAddCollateralResponse) Marshal added in v0.37.0

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

func (*MsgAddCollateralResponse) MarshalTo added in v0.37.0

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

func (*MsgAddCollateralResponse) MarshalToSizedBuffer added in v0.37.0

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

func (*MsgAddCollateralResponse) ProtoMessage added in v0.37.0

func (*MsgAddCollateralResponse) ProtoMessage()

func (*MsgAddCollateralResponse) Reset added in v0.37.0

func (m *MsgAddCollateralResponse) Reset()

func (*MsgAddCollateralResponse) Size added in v0.37.0

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

func (*MsgAddCollateralResponse) String added in v0.37.0

func (m *MsgAddCollateralResponse) String() string

func (*MsgAddCollateralResponse) Unmarshal added in v0.37.0

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

func (*MsgAddCollateralResponse) XXX_DiscardUnknown added in v0.37.0

func (m *MsgAddCollateralResponse) XXX_DiscardUnknown()

func (*MsgAddCollateralResponse) XXX_Marshal added in v0.37.0

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

func (*MsgAddCollateralResponse) XXX_Merge added in v0.37.0

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

func (*MsgAddCollateralResponse) XXX_Size added in v0.37.0

func (m *MsgAddCollateralResponse) XXX_Size() int

func (*MsgAddCollateralResponse) XXX_Unmarshal added in v0.37.0

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

type MsgClaimRewards added in v0.33.0

type MsgClaimRewards struct {
	Sender string   `protobuf:"bytes,1,opt,name=sender,proto3" json:"sender,omitempty"`
	Ids    []uint64 `protobuf:"varint,2,rep,packed,name=ids,proto3" json:"ids,omitempty"`
}

func NewMsgClaimRewards added in v0.33.0

func NewMsgClaimRewards(signer string, ids []uint64) *MsgClaimRewards

func (*MsgClaimRewards) Descriptor added in v0.33.0

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

func (*MsgClaimRewards) GetIds added in v0.33.0

func (m *MsgClaimRewards) GetIds() []uint64

func (*MsgClaimRewards) GetSender added in v0.33.0

func (m *MsgClaimRewards) GetSender() string

func (*MsgClaimRewards) GetSignBytes added in v0.33.0

func (msg *MsgClaimRewards) GetSignBytes() []byte

func (*MsgClaimRewards) GetSigners added in v0.33.0

func (msg *MsgClaimRewards) GetSigners() []sdk.AccAddress

func (*MsgClaimRewards) Marshal added in v0.33.0

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

func (*MsgClaimRewards) MarshalTo added in v0.33.0

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

func (*MsgClaimRewards) MarshalToSizedBuffer added in v0.33.0

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

func (*MsgClaimRewards) ProtoMessage added in v0.33.0

func (*MsgClaimRewards) ProtoMessage()

func (*MsgClaimRewards) Reset added in v0.33.0

func (m *MsgClaimRewards) Reset()

func (*MsgClaimRewards) Route added in v0.33.0

func (msg *MsgClaimRewards) Route() string

func (*MsgClaimRewards) Size added in v0.33.0

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

func (*MsgClaimRewards) String added in v0.33.0

func (m *MsgClaimRewards) String() string

func (*MsgClaimRewards) Type added in v0.33.0

func (msg *MsgClaimRewards) Type() string

func (*MsgClaimRewards) Unmarshal added in v0.33.0

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

func (*MsgClaimRewards) ValidateBasic added in v0.33.0

func (msg *MsgClaimRewards) ValidateBasic() error

func (*MsgClaimRewards) XXX_DiscardUnknown added in v0.33.0

func (m *MsgClaimRewards) XXX_DiscardUnknown()

func (*MsgClaimRewards) XXX_Marshal added in v0.33.0

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

func (*MsgClaimRewards) XXX_Merge added in v0.33.0

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

func (*MsgClaimRewards) XXX_Size added in v0.33.0

func (m *MsgClaimRewards) XXX_Size() int

func (*MsgClaimRewards) XXX_Unmarshal added in v0.33.0

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

type MsgClaimRewardsResponse added in v0.33.0

type MsgClaimRewardsResponse struct {
}

func (*MsgClaimRewardsResponse) Descriptor added in v0.33.0

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

func (*MsgClaimRewardsResponse) Marshal added in v0.33.0

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

func (*MsgClaimRewardsResponse) MarshalTo added in v0.33.0

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

func (*MsgClaimRewardsResponse) MarshalToSizedBuffer added in v0.33.0

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

func (*MsgClaimRewardsResponse) ProtoMessage added in v0.33.0

func (*MsgClaimRewardsResponse) ProtoMessage()

func (*MsgClaimRewardsResponse) Reset added in v0.33.0

func (m *MsgClaimRewardsResponse) Reset()

func (*MsgClaimRewardsResponse) Size added in v0.33.0

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

func (*MsgClaimRewardsResponse) String added in v0.33.0

func (m *MsgClaimRewardsResponse) String() string

func (*MsgClaimRewardsResponse) Unmarshal added in v0.33.0

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

func (*MsgClaimRewardsResponse) XXX_DiscardUnknown added in v0.33.0

func (m *MsgClaimRewardsResponse) XXX_DiscardUnknown()

func (*MsgClaimRewardsResponse) XXX_Marshal added in v0.33.0

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

func (*MsgClaimRewardsResponse) XXX_Merge added in v0.33.0

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

func (*MsgClaimRewardsResponse) XXX_Size added in v0.33.0

func (m *MsgClaimRewardsResponse) XXX_Size() int

func (*MsgClaimRewardsResponse) XXX_Unmarshal added in v0.33.0

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

type MsgClient

MsgClient is the client API for Msg service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewMsgClient

func NewMsgClient(cc grpc1.ClientConn) MsgClient

type MsgClose

type MsgClose struct {
	Creator  string                                 `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	Id       uint64                                 `protobuf:"varint,2,opt,name=id,proto3" json:"id,omitempty"`
	LpAmount github_com_cosmos_cosmos_sdk_types.Int `protobuf:"bytes,3,opt,name=lp_amount,json=lpAmount,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Int" json:"lp_amount"`
}

func NewMsgClose

func NewMsgClose(creator string, id uint64, amount math.Int) *MsgClose

func (*MsgClose) Descriptor

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

func (*MsgClose) GetCreator

func (m *MsgClose) GetCreator() string

func (*MsgClose) GetId

func (m *MsgClose) GetId() uint64

func (*MsgClose) GetSignBytes

func (msg *MsgClose) GetSignBytes() []byte

func (*MsgClose) GetSigners

func (msg *MsgClose) GetSigners() []sdk.AccAddress

func (*MsgClose) Marshal

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

func (*MsgClose) MarshalTo

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

func (*MsgClose) MarshalToSizedBuffer

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

func (*MsgClose) ProtoMessage

func (*MsgClose) ProtoMessage()

func (*MsgClose) Reset

func (m *MsgClose) Reset()

func (*MsgClose) Route

func (msg *MsgClose) Route() string

func (*MsgClose) Size

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

func (*MsgClose) String

func (m *MsgClose) String() string

func (*MsgClose) Type

func (msg *MsgClose) Type() string

func (*MsgClose) Unmarshal

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

func (*MsgClose) ValidateBasic

func (msg *MsgClose) ValidateBasic() error

func (*MsgClose) XXX_DiscardUnknown

func (m *MsgClose) XXX_DiscardUnknown()

func (*MsgClose) XXX_Marshal

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

func (*MsgClose) XXX_Merge

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

func (*MsgClose) XXX_Size

func (m *MsgClose) XXX_Size() int

func (*MsgClose) XXX_Unmarshal

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

type MsgCloseResponse

type MsgCloseResponse struct {
}

func (*MsgCloseResponse) Descriptor

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

func (*MsgCloseResponse) Marshal

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

func (*MsgCloseResponse) MarshalTo

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

func (*MsgCloseResponse) MarshalToSizedBuffer

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

func (*MsgCloseResponse) ProtoMessage

func (*MsgCloseResponse) ProtoMessage()

func (*MsgCloseResponse) Reset

func (m *MsgCloseResponse) Reset()

func (*MsgCloseResponse) Size

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

func (*MsgCloseResponse) String

func (m *MsgCloseResponse) String() string

func (*MsgCloseResponse) Unmarshal

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

func (*MsgCloseResponse) XXX_DiscardUnknown

func (m *MsgCloseResponse) XXX_DiscardUnknown()

func (*MsgCloseResponse) XXX_Marshal

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

func (*MsgCloseResponse) XXX_Merge

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

func (*MsgCloseResponse) XXX_Size

func (m *MsgCloseResponse) XXX_Size() int

func (*MsgCloseResponse) XXX_Unmarshal

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

type MsgDewhitelist

type MsgDewhitelist struct {
	Authority          string `protobuf:"bytes,1,opt,name=authority,proto3" json:"authority,omitempty"`
	WhitelistedAddress string `protobuf:"bytes,2,opt,name=whitelisted_address,json=whitelistedAddress,proto3" json:"whitelisted_address,omitempty"`
}

func NewMsgDewhitelist

func NewMsgDewhitelist(signer string, whitelistedAddress string) *MsgDewhitelist

func (*MsgDewhitelist) Descriptor

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

func (*MsgDewhitelist) GetAuthority

func (m *MsgDewhitelist) GetAuthority() string

func (*MsgDewhitelist) GetSignBytes

func (msg *MsgDewhitelist) GetSignBytes() []byte

func (*MsgDewhitelist) GetSigners

func (msg *MsgDewhitelist) GetSigners() []sdk.AccAddress

func (*MsgDewhitelist) GetWhitelistedAddress

func (m *MsgDewhitelist) GetWhitelistedAddress() string

func (*MsgDewhitelist) Marshal

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

func (*MsgDewhitelist) MarshalTo

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

func (*MsgDewhitelist) MarshalToSizedBuffer

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

func (*MsgDewhitelist) ProtoMessage

func (*MsgDewhitelist) ProtoMessage()

func (*MsgDewhitelist) Reset

func (m *MsgDewhitelist) Reset()

func (*MsgDewhitelist) Route

func (msg *MsgDewhitelist) Route() string

func (*MsgDewhitelist) Size

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

func (*MsgDewhitelist) String

func (m *MsgDewhitelist) String() string

func (*MsgDewhitelist) Type

func (msg *MsgDewhitelist) Type() string

func (*MsgDewhitelist) Unmarshal

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

func (*MsgDewhitelist) ValidateBasic

func (msg *MsgDewhitelist) ValidateBasic() error

func (*MsgDewhitelist) XXX_DiscardUnknown

func (m *MsgDewhitelist) XXX_DiscardUnknown()

func (*MsgDewhitelist) XXX_Marshal

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

func (*MsgDewhitelist) XXX_Merge

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

func (*MsgDewhitelist) XXX_Size

func (m *MsgDewhitelist) XXX_Size() int

func (*MsgDewhitelist) XXX_Unmarshal

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

type MsgDewhitelistResponse

type MsgDewhitelistResponse struct {
}

func (*MsgDewhitelistResponse) Descriptor

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

func (*MsgDewhitelistResponse) Marshal

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

func (*MsgDewhitelistResponse) MarshalTo

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

func (*MsgDewhitelistResponse) MarshalToSizedBuffer

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

func (*MsgDewhitelistResponse) ProtoMessage

func (*MsgDewhitelistResponse) ProtoMessage()

func (*MsgDewhitelistResponse) Reset

func (m *MsgDewhitelistResponse) Reset()

func (*MsgDewhitelistResponse) Size

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

func (*MsgDewhitelistResponse) String

func (m *MsgDewhitelistResponse) String() string

func (*MsgDewhitelistResponse) Unmarshal

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

func (*MsgDewhitelistResponse) XXX_DiscardUnknown

func (m *MsgDewhitelistResponse) XXX_DiscardUnknown()

func (*MsgDewhitelistResponse) XXX_Marshal

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

func (*MsgDewhitelistResponse) XXX_Merge

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

func (*MsgDewhitelistResponse) XXX_Size

func (m *MsgDewhitelistResponse) XXX_Size() int

func (*MsgDewhitelistResponse) XXX_Unmarshal

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

type MsgOpen

type MsgOpen struct {
	Creator          string                                 `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	CollateralAsset  string                                 `protobuf:"bytes,2,opt,name=collateral_asset,json=collateralAsset,proto3" json:"collateral_asset,omitempty"`
	CollateralAmount github_com_cosmos_cosmos_sdk_types.Int `` /* 149-byte string literal not displayed */
	AmmPoolId        uint64                                 `protobuf:"varint,4,opt,name=amm_pool_id,json=ammPoolId,proto3" json:"amm_pool_id,omitempty"`
	Leverage         github_com_cosmos_cosmos_sdk_types.Dec `protobuf:"bytes,5,opt,name=leverage,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Dec" json:"leverage"`
	StopLossPrice    github_com_cosmos_cosmos_sdk_types.Dec `` /* 142-byte string literal not displayed */
}

func NewMsgOpen

func NewMsgOpen(creator string, collateralAsset string, collateralAmount math.Int, ammPoolId uint64, leverage sdk.Dec, stopLossPrice sdk.Dec) *MsgOpen

func (*MsgOpen) Descriptor

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

func (*MsgOpen) GetAmmPoolId

func (m *MsgOpen) GetAmmPoolId() uint64

func (*MsgOpen) GetCollateralAsset

func (m *MsgOpen) GetCollateralAsset() string

func (*MsgOpen) GetCreator

func (m *MsgOpen) GetCreator() string

func (*MsgOpen) GetSignBytes

func (msg *MsgOpen) GetSignBytes() []byte

func (*MsgOpen) GetSigners

func (msg *MsgOpen) GetSigners() []sdk.AccAddress

func (*MsgOpen) Marshal

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

func (*MsgOpen) MarshalTo

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

func (*MsgOpen) MarshalToSizedBuffer

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

func (*MsgOpen) ProtoMessage

func (*MsgOpen) ProtoMessage()

func (*MsgOpen) Reset

func (m *MsgOpen) Reset()

func (*MsgOpen) Route

func (msg *MsgOpen) Route() string

func (*MsgOpen) Size

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

func (*MsgOpen) String

func (m *MsgOpen) String() string

func (*MsgOpen) Type

func (msg *MsgOpen) Type() string

func (*MsgOpen) Unmarshal

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

func (*MsgOpen) ValidateBasic

func (msg *MsgOpen) ValidateBasic() error

func (*MsgOpen) XXX_DiscardUnknown

func (m *MsgOpen) XXX_DiscardUnknown()

func (*MsgOpen) XXX_Marshal

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

func (*MsgOpen) XXX_Merge

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

func (*MsgOpen) XXX_Size

func (m *MsgOpen) XXX_Size() int

func (*MsgOpen) XXX_Unmarshal

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

type MsgOpenResponse

type MsgOpenResponse struct {
}

func (*MsgOpenResponse) Descriptor

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

func (*MsgOpenResponse) Marshal

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

func (*MsgOpenResponse) MarshalTo

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

func (*MsgOpenResponse) MarshalToSizedBuffer

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

func (*MsgOpenResponse) ProtoMessage

func (*MsgOpenResponse) ProtoMessage()

func (*MsgOpenResponse) Reset

func (m *MsgOpenResponse) Reset()

func (*MsgOpenResponse) Size

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

func (*MsgOpenResponse) String

func (m *MsgOpenResponse) String() string

func (*MsgOpenResponse) Unmarshal

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

func (*MsgOpenResponse) XXX_DiscardUnknown

func (m *MsgOpenResponse) XXX_DiscardUnknown()

func (*MsgOpenResponse) XXX_Marshal

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

func (*MsgOpenResponse) XXX_Merge

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

func (*MsgOpenResponse) XXX_Size

func (m *MsgOpenResponse) XXX_Size() int

func (*MsgOpenResponse) XXX_Unmarshal

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

type MsgUpdateParams

type MsgUpdateParams struct {
	// authority is the address that controls the module (defaults to x/gov unless
	// overwritten).
	Authority string `protobuf:"bytes,1,opt,name=authority,proto3" json:"authority,omitempty"`
	// NOTE: All parameters must be supplied.
	Params *Params `protobuf:"bytes,2,opt,name=params,proto3" json:"params,omitempty"`
}

func NewMsgUpdateParams

func NewMsgUpdateParams(signer string, params *Params) *MsgUpdateParams

func (*MsgUpdateParams) Descriptor

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

func (*MsgUpdateParams) GetAuthority

func (m *MsgUpdateParams) GetAuthority() string

func (*MsgUpdateParams) GetParams

func (m *MsgUpdateParams) GetParams() *Params

func (*MsgUpdateParams) GetSignBytes

func (msg *MsgUpdateParams) GetSignBytes() []byte

func (*MsgUpdateParams) GetSigners

func (msg *MsgUpdateParams) GetSigners() []sdk.AccAddress

func (*MsgUpdateParams) Marshal

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

func (*MsgUpdateParams) MarshalTo

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

func (*MsgUpdateParams) MarshalToSizedBuffer

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

func (*MsgUpdateParams) ProtoMessage

func (*MsgUpdateParams) ProtoMessage()

func (*MsgUpdateParams) Reset

func (m *MsgUpdateParams) Reset()

func (*MsgUpdateParams) Route

func (msg *MsgUpdateParams) Route() string

func (*MsgUpdateParams) Size

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

func (*MsgUpdateParams) String

func (m *MsgUpdateParams) String() string

func (*MsgUpdateParams) Type

func (msg *MsgUpdateParams) Type() string

func (*MsgUpdateParams) Unmarshal

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

func (*MsgUpdateParams) ValidateBasic

func (msg *MsgUpdateParams) ValidateBasic() error

func (*MsgUpdateParams) XXX_DiscardUnknown

func (m *MsgUpdateParams) XXX_DiscardUnknown()

func (*MsgUpdateParams) XXX_Marshal

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

func (*MsgUpdateParams) XXX_Merge

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

func (*MsgUpdateParams) XXX_Size

func (m *MsgUpdateParams) XXX_Size() int

func (*MsgUpdateParams) XXX_Unmarshal

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

type MsgUpdateParamsResponse

type MsgUpdateParamsResponse struct {
}

func (*MsgUpdateParamsResponse) Descriptor

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

func (*MsgUpdateParamsResponse) Marshal

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

func (*MsgUpdateParamsResponse) MarshalTo

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

func (*MsgUpdateParamsResponse) MarshalToSizedBuffer

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

func (*MsgUpdateParamsResponse) ProtoMessage

func (*MsgUpdateParamsResponse) ProtoMessage()

func (*MsgUpdateParamsResponse) Reset

func (m *MsgUpdateParamsResponse) Reset()

func (*MsgUpdateParamsResponse) Size

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

func (*MsgUpdateParamsResponse) String

func (m *MsgUpdateParamsResponse) String() string

func (*MsgUpdateParamsResponse) Unmarshal

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

func (*MsgUpdateParamsResponse) XXX_DiscardUnknown

func (m *MsgUpdateParamsResponse) XXX_DiscardUnknown()

func (*MsgUpdateParamsResponse) XXX_Marshal

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

func (*MsgUpdateParamsResponse) XXX_Merge

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

func (*MsgUpdateParamsResponse) XXX_Size

func (m *MsgUpdateParamsResponse) XXX_Size() int

func (*MsgUpdateParamsResponse) XXX_Unmarshal

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

type MsgUpdatePools

type MsgUpdatePools struct {
	Authority string `protobuf:"bytes,1,opt,name=authority,proto3" json:"authority,omitempty"`
	Pools     []Pool `protobuf:"bytes,2,rep,name=pools,proto3" json:"pools"`
}

func NewMsgUpdatePools

func NewMsgUpdatePools(signer string, pools []Pool) *MsgUpdatePools

func (*MsgUpdatePools) Descriptor

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

func (*MsgUpdatePools) GetAuthority

func (m *MsgUpdatePools) GetAuthority() string

func (*MsgUpdatePools) GetPools

func (m *MsgUpdatePools) GetPools() []Pool

func (*MsgUpdatePools) GetSignBytes

func (msg *MsgUpdatePools) GetSignBytes() []byte

func (*MsgUpdatePools) GetSigners

func (msg *MsgUpdatePools) GetSigners() []sdk.AccAddress

func (*MsgUpdatePools) Marshal

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

func (*MsgUpdatePools) MarshalTo

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

func (*MsgUpdatePools) MarshalToSizedBuffer

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

func (*MsgUpdatePools) ProtoMessage

func (*MsgUpdatePools) ProtoMessage()

func (*MsgUpdatePools) Reset

func (m *MsgUpdatePools) Reset()

func (*MsgUpdatePools) Route

func (msg *MsgUpdatePools) Route() string

func (*MsgUpdatePools) Size

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

func (*MsgUpdatePools) String

func (m *MsgUpdatePools) String() string

func (*MsgUpdatePools) Type

func (msg *MsgUpdatePools) Type() string

func (*MsgUpdatePools) Unmarshal

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

func (*MsgUpdatePools) ValidateBasic

func (msg *MsgUpdatePools) ValidateBasic() error

func (*MsgUpdatePools) XXX_DiscardUnknown

func (m *MsgUpdatePools) XXX_DiscardUnknown()

func (*MsgUpdatePools) XXX_Marshal

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

func (*MsgUpdatePools) XXX_Merge

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

func (*MsgUpdatePools) XXX_Size

func (m *MsgUpdatePools) XXX_Size() int

func (*MsgUpdatePools) XXX_Unmarshal

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

type MsgUpdatePoolsResponse

type MsgUpdatePoolsResponse struct {
}

func (*MsgUpdatePoolsResponse) Descriptor

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

func (*MsgUpdatePoolsResponse) Marshal

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

func (*MsgUpdatePoolsResponse) MarshalTo

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

func (*MsgUpdatePoolsResponse) MarshalToSizedBuffer

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

func (*MsgUpdatePoolsResponse) ProtoMessage

func (*MsgUpdatePoolsResponse) ProtoMessage()

func (*MsgUpdatePoolsResponse) Reset

func (m *MsgUpdatePoolsResponse) Reset()

func (*MsgUpdatePoolsResponse) Size

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

func (*MsgUpdatePoolsResponse) String

func (m *MsgUpdatePoolsResponse) String() string

func (*MsgUpdatePoolsResponse) Unmarshal

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

func (*MsgUpdatePoolsResponse) XXX_DiscardUnknown

func (m *MsgUpdatePoolsResponse) XXX_DiscardUnknown()

func (*MsgUpdatePoolsResponse) XXX_Marshal

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

func (*MsgUpdatePoolsResponse) XXX_Merge

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

func (*MsgUpdatePoolsResponse) XXX_Size

func (m *MsgUpdatePoolsResponse) XXX_Size() int

func (*MsgUpdatePoolsResponse) XXX_Unmarshal

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

type MsgUpdateStopLoss added in v0.33.0

type MsgUpdateStopLoss struct {
	Creator  string                                 `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	Position int32                                  `protobuf:"varint,2,opt,name=position,proto3" json:"position,omitempty"`
	Price    github_com_cosmos_cosmos_sdk_types.Dec `protobuf:"bytes,3,opt,name=price,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Dec" json:"price"`
}

func NewMsgUpdateStopLoss added in v0.33.0

func NewMsgUpdateStopLoss(creator string, position int32, price sdk.Dec) *MsgUpdateStopLoss

func (*MsgUpdateStopLoss) Descriptor added in v0.33.0

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

func (*MsgUpdateStopLoss) GetCreator added in v0.33.0

func (m *MsgUpdateStopLoss) GetCreator() string

func (*MsgUpdateStopLoss) GetPosition added in v0.33.0

func (m *MsgUpdateStopLoss) GetPosition() int32

func (*MsgUpdateStopLoss) GetSignBytes added in v0.33.0

func (msg *MsgUpdateStopLoss) GetSignBytes() []byte

func (*MsgUpdateStopLoss) GetSigners added in v0.33.0

func (msg *MsgUpdateStopLoss) GetSigners() []sdk.AccAddress

func (*MsgUpdateStopLoss) Marshal added in v0.33.0

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

func (*MsgUpdateStopLoss) MarshalTo added in v0.33.0

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

func (*MsgUpdateStopLoss) MarshalToSizedBuffer added in v0.33.0

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

func (*MsgUpdateStopLoss) ProtoMessage added in v0.33.0

func (*MsgUpdateStopLoss) ProtoMessage()

func (*MsgUpdateStopLoss) Reset added in v0.33.0

func (m *MsgUpdateStopLoss) Reset()

func (*MsgUpdateStopLoss) Route added in v0.33.0

func (msg *MsgUpdateStopLoss) Route() string

func (*MsgUpdateStopLoss) Size added in v0.33.0

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

func (*MsgUpdateStopLoss) String added in v0.33.0

func (m *MsgUpdateStopLoss) String() string

func (*MsgUpdateStopLoss) Type added in v0.33.0

func (msg *MsgUpdateStopLoss) Type() string

func (*MsgUpdateStopLoss) Unmarshal added in v0.33.0

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

func (*MsgUpdateStopLoss) ValidateBasic added in v0.33.0

func (msg *MsgUpdateStopLoss) ValidateBasic() error

func (*MsgUpdateStopLoss) XXX_DiscardUnknown added in v0.33.0

func (m *MsgUpdateStopLoss) XXX_DiscardUnknown()

func (*MsgUpdateStopLoss) XXX_Marshal added in v0.33.0

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

func (*MsgUpdateStopLoss) XXX_Merge added in v0.33.0

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

func (*MsgUpdateStopLoss) XXX_Size added in v0.33.0

func (m *MsgUpdateStopLoss) XXX_Size() int

func (*MsgUpdateStopLoss) XXX_Unmarshal added in v0.33.0

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

type MsgUpdateStopLossResponse added in v0.33.0

type MsgUpdateStopLossResponse struct {
}

func (*MsgUpdateStopLossResponse) Descriptor added in v0.33.0

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

func (*MsgUpdateStopLossResponse) Marshal added in v0.33.0

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

func (*MsgUpdateStopLossResponse) MarshalTo added in v0.33.0

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

func (*MsgUpdateStopLossResponse) MarshalToSizedBuffer added in v0.33.0

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

func (*MsgUpdateStopLossResponse) ProtoMessage added in v0.33.0

func (*MsgUpdateStopLossResponse) ProtoMessage()

func (*MsgUpdateStopLossResponse) Reset added in v0.33.0

func (m *MsgUpdateStopLossResponse) Reset()

func (*MsgUpdateStopLossResponse) Size added in v0.33.0

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

func (*MsgUpdateStopLossResponse) String added in v0.33.0

func (m *MsgUpdateStopLossResponse) String() string

func (*MsgUpdateStopLossResponse) Unmarshal added in v0.33.0

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

func (*MsgUpdateStopLossResponse) XXX_DiscardUnknown added in v0.33.0

func (m *MsgUpdateStopLossResponse) XXX_DiscardUnknown()

func (*MsgUpdateStopLossResponse) XXX_Marshal added in v0.33.0

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

func (*MsgUpdateStopLossResponse) XXX_Merge added in v0.33.0

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

func (*MsgUpdateStopLossResponse) XXX_Size added in v0.33.0

func (m *MsgUpdateStopLossResponse) XXX_Size() int

func (*MsgUpdateStopLossResponse) XXX_Unmarshal added in v0.33.0

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

type MsgWhitelist

type MsgWhitelist struct {
	Authority          string `protobuf:"bytes,1,opt,name=authority,proto3" json:"authority,omitempty"`
	WhitelistedAddress string `protobuf:"bytes,2,opt,name=whitelisted_address,json=whitelistedAddress,proto3" json:"whitelisted_address,omitempty"`
}

func NewMsgWhitelist

func NewMsgWhitelist(signer string, whitelistedAddress string) *MsgWhitelist

func (*MsgWhitelist) Descriptor

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

func (*MsgWhitelist) GetAuthority

func (m *MsgWhitelist) GetAuthority() string

func (*MsgWhitelist) GetSignBytes

func (msg *MsgWhitelist) GetSignBytes() []byte

func (*MsgWhitelist) GetSigners

func (msg *MsgWhitelist) GetSigners() []sdk.AccAddress

func (*MsgWhitelist) GetWhitelistedAddress

func (m *MsgWhitelist) GetWhitelistedAddress() string

func (*MsgWhitelist) Marshal

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

func (*MsgWhitelist) MarshalTo

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

func (*MsgWhitelist) MarshalToSizedBuffer

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

func (*MsgWhitelist) ProtoMessage

func (*MsgWhitelist) ProtoMessage()

func (*MsgWhitelist) Reset

func (m *MsgWhitelist) Reset()

func (*MsgWhitelist) Route

func (msg *MsgWhitelist) Route() string

func (*MsgWhitelist) Size

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

func (*MsgWhitelist) String

func (m *MsgWhitelist) String() string

func (*MsgWhitelist) Type

func (msg *MsgWhitelist) Type() string

func (*MsgWhitelist) Unmarshal

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

func (*MsgWhitelist) ValidateBasic

func (msg *MsgWhitelist) ValidateBasic() error

func (*MsgWhitelist) XXX_DiscardUnknown

func (m *MsgWhitelist) XXX_DiscardUnknown()

func (*MsgWhitelist) XXX_Marshal

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

func (*MsgWhitelist) XXX_Merge

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

func (*MsgWhitelist) XXX_Size

func (m *MsgWhitelist) XXX_Size() int

func (*MsgWhitelist) XXX_Unmarshal

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

type MsgWhitelistResponse

type MsgWhitelistResponse struct {
}

func (*MsgWhitelistResponse) Descriptor

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

func (*MsgWhitelistResponse) Marshal

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

func (*MsgWhitelistResponse) MarshalTo

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

func (*MsgWhitelistResponse) MarshalToSizedBuffer

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

func (*MsgWhitelistResponse) ProtoMessage

func (*MsgWhitelistResponse) ProtoMessage()

func (*MsgWhitelistResponse) Reset

func (m *MsgWhitelistResponse) Reset()

func (*MsgWhitelistResponse) Size

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

func (*MsgWhitelistResponse) String

func (m *MsgWhitelistResponse) String() string

func (*MsgWhitelistResponse) Unmarshal

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

func (*MsgWhitelistResponse) XXX_DiscardUnknown

func (m *MsgWhitelistResponse) XXX_DiscardUnknown()

func (*MsgWhitelistResponse) XXX_Marshal

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

func (*MsgWhitelistResponse) XXX_Merge

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

func (*MsgWhitelistResponse) XXX_Size

func (m *MsgWhitelistResponse) XXX_Size() int

func (*MsgWhitelistResponse) XXX_Unmarshal

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

type MultiLeveragelpHooks

type MultiLeveragelpHooks []LeveragelpHooks

combine multiple leveragelp hooks, all hook functions are run in array sequence.

func NewMultiLeveragelpHooks

func NewMultiLeveragelpHooks(hooks ...LeveragelpHooks) MultiLeveragelpHooks

Creates hooks for the Amm Module.

func (MultiLeveragelpHooks) AfterAmmExitPool

func (h MultiLeveragelpHooks) AfterAmmExitPool(ctx sdk.Context, ammPool ammtypes.Pool, leveragelpPool Pool)

func (MultiLeveragelpHooks) AfterAmmJoinPool

func (h MultiLeveragelpHooks) AfterAmmJoinPool(ctx sdk.Context, ammPool ammtypes.Pool, leveragelpPool Pool)

func (MultiLeveragelpHooks) AfterAmmPoolCreated

func (h MultiLeveragelpHooks) AfterAmmPoolCreated(ctx sdk.Context, ammPool ammtypes.Pool)

func (MultiLeveragelpHooks) AfterAmmSwap

func (h MultiLeveragelpHooks) AfterAmmSwap(ctx sdk.Context, ammPool ammtypes.Pool, leveragelpPool Pool)

func (MultiLeveragelpHooks) AfterLeveragelpPositionClosed

func (h MultiLeveragelpHooks) AfterLeveragelpPositionClosed(ctx sdk.Context, leveragelpPool Pool)

func (MultiLeveragelpHooks) AfterLeveragelpPositionModified

func (h MultiLeveragelpHooks) AfterLeveragelpPositionModified(ctx sdk.Context, ammPool ammtypes.Pool, leveragelpPool Pool)

func (MultiLeveragelpHooks) AfterLeveragelpPositionOpen

func (h MultiLeveragelpHooks) AfterLeveragelpPositionOpen(ctx sdk.Context, ammPool ammtypes.Pool, leveragelpPool Pool)

type Params

type Params struct {
	LeverageMax         github_com_cosmos_cosmos_sdk_types.Dec `` /* 134-byte string literal not displayed */
	MaxOpenPositions    int64                                  `protobuf:"varint,2,opt,name=max_open_positions,json=maxOpenPositions,proto3" json:"max_open_positions,omitempty"`
	PoolOpenThreshold   github_com_cosmos_cosmos_sdk_types.Dec `` /* 154-byte string literal not displayed */
	SafetyFactor        github_com_cosmos_cosmos_sdk_types.Dec `` /* 137-byte string literal not displayed */
	WhitelistingEnabled bool                                   `protobuf:"varint,5,opt,name=whitelisting_enabled,json=whitelistingEnabled,proto3" json:"whitelisting_enabled,omitempty"`
	EpochLength         int64                                  `protobuf:"varint,6,opt,name=epoch_length,json=epochLength,proto3" json:"epoch_length,omitempty"`
}

Params defines the parameters for the module.

func DefaultParams

func DefaultParams() Params

DefaultParams returns a default set of parameters

func NewParams

func NewParams() Params

NewParams creates a new Params instance

func (*Params) Descriptor

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

func (*Params) GetEpochLength

func (m *Params) GetEpochLength() int64

func (*Params) GetMaxOpenPositions

func (m *Params) GetMaxOpenPositions() int64

func (*Params) GetWhitelistingEnabled

func (m *Params) GetWhitelistingEnabled() bool

func (*Params) Marshal

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

func (*Params) MarshalTo

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

func (*Params) MarshalToSizedBuffer

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

func (*Params) ParamSetPairs

func (p *Params) ParamSetPairs() paramtypes.ParamSetPairs

ParamSetPairs get the params.ParamSet

func (*Params) ProtoMessage

func (*Params) ProtoMessage()

func (*Params) Reset

func (m *Params) Reset()

func (*Params) Size

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

func (Params) String

func (p Params) String() string

String implements the Stringer interface.

func (*Params) Unmarshal

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

func (Params) Validate

func (p Params) Validate() error

Validate validates the set of params

func (*Params) XXX_DiscardUnknown

func (m *Params) XXX_DiscardUnknown()

func (*Params) XXX_Marshal

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

func (*Params) XXX_Merge

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

func (*Params) XXX_Size

func (m *Params) XXX_Size() int

func (*Params) XXX_Unmarshal

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

type ParamsRequest

type ParamsRequest struct {
}

ParamsRequest is request type for the Query/Params RPC method.

func (*ParamsRequest) Descriptor

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

func (*ParamsRequest) Marshal

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

func (*ParamsRequest) MarshalTo

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

func (*ParamsRequest) MarshalToSizedBuffer

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

func (*ParamsRequest) ProtoMessage

func (*ParamsRequest) ProtoMessage()

func (*ParamsRequest) Reset

func (m *ParamsRequest) Reset()

func (*ParamsRequest) Size

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

func (*ParamsRequest) String

func (m *ParamsRequest) String() string

func (*ParamsRequest) Unmarshal

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

func (*ParamsRequest) XXX_DiscardUnknown

func (m *ParamsRequest) XXX_DiscardUnknown()

func (*ParamsRequest) XXX_Marshal

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

func (*ParamsRequest) XXX_Merge

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

func (*ParamsRequest) XXX_Size

func (m *ParamsRequest) XXX_Size() int

func (*ParamsRequest) XXX_Unmarshal

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

type ParamsResponse

type ParamsResponse struct {
	// params holds all the parameters of this module.
	Params Params `protobuf:"bytes,1,opt,name=params,proto3" json:"params"`
}

ParamsResponse is response type for the Query/Params RPC method.

func (*ParamsResponse) Descriptor

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

func (*ParamsResponse) GetParams

func (m *ParamsResponse) GetParams() Params

func (*ParamsResponse) Marshal

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

func (*ParamsResponse) MarshalTo

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

func (*ParamsResponse) MarshalToSizedBuffer

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

func (*ParamsResponse) ProtoMessage

func (*ParamsResponse) ProtoMessage()

func (*ParamsResponse) Reset

func (m *ParamsResponse) Reset()

func (*ParamsResponse) Size

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

func (*ParamsResponse) String

func (m *ParamsResponse) String() string

func (*ParamsResponse) Unmarshal

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

func (*ParamsResponse) XXX_DiscardUnknown

func (m *ParamsResponse) XXX_DiscardUnknown()

func (*ParamsResponse) XXX_Marshal

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

func (*ParamsResponse) XXX_Merge

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

func (*ParamsResponse) XXX_Size

func (m *ParamsResponse) XXX_Size() int

func (*ParamsResponse) XXX_Unmarshal

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

type Pool

type Pool struct {
	AmmPoolId         uint64                                 `protobuf:"varint,1,opt,name=amm_pool_id,json=ammPoolId,proto3" json:"amm_pool_id,omitempty"`
	Health            github_com_cosmos_cosmos_sdk_types.Dec `protobuf:"bytes,2,opt,name=health,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Dec" json:"health"`
	Enabled           bool                                   `protobuf:"varint,3,opt,name=enabled,proto3" json:"enabled,omitempty"`
	Closed            bool                                   `protobuf:"varint,4,opt,name=closed,proto3" json:"closed,omitempty"`
	LeveragedLpAmount github_com_cosmos_cosmos_sdk_types.Int `` /* 154-byte string literal not displayed */
	LeverageMax       github_com_cosmos_cosmos_sdk_types.Dec `` /* 134-byte string literal not displayed */
}

func NewPool

func NewPool(poolId uint64) Pool

func (*Pool) Descriptor

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

func (*Pool) GetAmmPoolId

func (m *Pool) GetAmmPoolId() uint64

func (*Pool) GetClosed

func (m *Pool) GetClosed() bool

func (*Pool) GetEnabled

func (m *Pool) GetEnabled() bool

func (*Pool) InitiatePool

func (p *Pool) InitiatePool(ctx sdk.Context, ammPool *ammtypes.Pool) error

Initialite pool asset according to its corresponding amm pool assets.

func (*Pool) Marshal

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

func (*Pool) MarshalTo

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

func (*Pool) MarshalToSizedBuffer

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

func (*Pool) ProtoMessage

func (*Pool) ProtoMessage()

func (*Pool) Reset

func (m *Pool) Reset()

func (*Pool) Size

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

func (*Pool) String

func (m *Pool) String() string

func (*Pool) Unmarshal

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

func (*Pool) XXX_DiscardUnknown

func (m *Pool) XXX_DiscardUnknown()

func (*Pool) XXX_Marshal

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

func (*Pool) XXX_Merge

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

func (*Pool) XXX_Size

func (m *Pool) XXX_Size() int

func (*Pool) XXX_Unmarshal

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

type Position

type Position struct {
	Address           string                                 `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	Collateral        types.Coin                             `protobuf:"bytes,2,opt,name=collateral,proto3" json:"collateral"`
	Liabilities       github_com_cosmos_cosmos_sdk_types.Int `protobuf:"bytes,3,opt,name=liabilities,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Int" json:"liabilities"`
	InterestPaid      github_com_cosmos_cosmos_sdk_types.Int `` /* 137-byte string literal not displayed */
	Leverage          github_com_cosmos_cosmos_sdk_types.Dec `protobuf:"bytes,5,opt,name=leverage,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Dec" json:"leverage"`
	LeveragedLpAmount github_com_cosmos_cosmos_sdk_types.Int `` /* 154-byte string literal not displayed */
	PositionHealth    github_com_cosmos_cosmos_sdk_types.Dec `` /* 143-byte string literal not displayed */
	Id                uint64                                 `protobuf:"varint,8,opt,name=id,proto3" json:"id,omitempty"`
	AmmPoolId         uint64                                 `protobuf:"varint,9,opt,name=amm_pool_id,json=ammPoolId,proto3" json:"amm_pool_id,omitempty"`
	StopLossPrice     github_com_cosmos_cosmos_sdk_types.Dec `` /* 143-byte string literal not displayed */
}

func NewPosition

func NewPosition(signer string, collateral sdk.Coin, leverage sdk.Dec, poolId uint64) *Position

func (*Position) Descriptor

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

func (*Position) GetAddress

func (m *Position) GetAddress() string

func (*Position) GetAmmPoolId

func (m *Position) GetAmmPoolId() uint64

func (*Position) GetCollateral

func (m *Position) GetCollateral() types.Coin

func (*Position) GetId

func (m *Position) GetId() uint64

func (*Position) GetPositionAddress

func (p *Position) GetPositionAddress() sdk.AccAddress

Get Position address

func (*Position) Marshal

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

func (*Position) MarshalTo

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

func (*Position) MarshalToSizedBuffer

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

func (*Position) ProtoMessage

func (*Position) ProtoMessage()

func (*Position) Reset

func (m *Position) Reset()

func (*Position) Size

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

func (*Position) String

func (m *Position) String() string

func (*Position) Unmarshal

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

func (Position) Validate

func (position Position) Validate() error

func (*Position) XXX_DiscardUnknown

func (m *Position) XXX_DiscardUnknown()

func (*Position) XXX_Marshal

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

func (*Position) XXX_Merge

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

func (*Position) XXX_Size

func (m *Position) XXX_Size() int

func (*Position) XXX_Unmarshal

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

type PositionRequest

type PositionRequest struct {
	Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	Id      uint64 `protobuf:"varint,2,opt,name=id,proto3" json:"id,omitempty"`
}

func (*PositionRequest) Descriptor

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

func (*PositionRequest) GetAddress

func (m *PositionRequest) GetAddress() string

func (*PositionRequest) GetId

func (m *PositionRequest) GetId() uint64

func (*PositionRequest) Marshal

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

func (*PositionRequest) MarshalTo

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

func (*PositionRequest) MarshalToSizedBuffer

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

func (*PositionRequest) ProtoMessage

func (*PositionRequest) ProtoMessage()

func (*PositionRequest) Reset

func (m *PositionRequest) Reset()

func (*PositionRequest) Size

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

func (*PositionRequest) String

func (m *PositionRequest) String() string

func (*PositionRequest) Unmarshal

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

func (*PositionRequest) XXX_DiscardUnknown

func (m *PositionRequest) XXX_DiscardUnknown()

func (*PositionRequest) XXX_Marshal

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

func (*PositionRequest) XXX_Merge

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

func (*PositionRequest) XXX_Size

func (m *PositionRequest) XXX_Size() int

func (*PositionRequest) XXX_Unmarshal

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

type PositionResponse

type PositionResponse struct {
	Position      *Position                              `protobuf:"bytes,1,opt,name=position,proto3" json:"position,omitempty"`
	LockedLpToken github_com_cosmos_cosmos_sdk_types.Int `` /* 142-byte string literal not displayed */
}

func (*PositionResponse) Descriptor

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

func (*PositionResponse) GetPosition

func (m *PositionResponse) GetPosition() *Position

func (*PositionResponse) Marshal

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

func (*PositionResponse) MarshalTo

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

func (*PositionResponse) MarshalToSizedBuffer

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

func (*PositionResponse) ProtoMessage

func (*PositionResponse) ProtoMessage()

func (*PositionResponse) Reset

func (m *PositionResponse) Reset()

func (*PositionResponse) Size

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

func (*PositionResponse) String

func (m *PositionResponse) String() string

func (*PositionResponse) Unmarshal

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

func (*PositionResponse) XXX_DiscardUnknown

func (m *PositionResponse) XXX_DiscardUnknown()

func (*PositionResponse) XXX_Marshal

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

func (*PositionResponse) XXX_Merge

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

func (*PositionResponse) XXX_Size

func (m *PositionResponse) XXX_Size() int

func (*PositionResponse) XXX_Unmarshal

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

type PositionsByPoolRequest

type PositionsByPoolRequest struct {
	AmmPoolId  uint64             `protobuf:"varint,1,opt,name=amm_pool_id,json=ammPoolId,proto3" json:"amm_pool_id,omitempty"`
	Pagination *query.PageRequest `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*PositionsByPoolRequest) Descriptor

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

func (*PositionsByPoolRequest) GetAmmPoolId

func (m *PositionsByPoolRequest) GetAmmPoolId() uint64

func (*PositionsByPoolRequest) GetPagination

func (m *PositionsByPoolRequest) GetPagination() *query.PageRequest

func (*PositionsByPoolRequest) Marshal

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

func (*PositionsByPoolRequest) MarshalTo

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

func (*PositionsByPoolRequest) MarshalToSizedBuffer

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

func (*PositionsByPoolRequest) ProtoMessage

func (*PositionsByPoolRequest) ProtoMessage()

func (*PositionsByPoolRequest) Reset

func (m *PositionsByPoolRequest) Reset()

func (*PositionsByPoolRequest) Size

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

func (*PositionsByPoolRequest) String

func (m *PositionsByPoolRequest) String() string

func (*PositionsByPoolRequest) Unmarshal

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

func (*PositionsByPoolRequest) XXX_DiscardUnknown

func (m *PositionsByPoolRequest) XXX_DiscardUnknown()

func (*PositionsByPoolRequest) XXX_Marshal

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

func (*PositionsByPoolRequest) XXX_Merge

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

func (*PositionsByPoolRequest) XXX_Size

func (m *PositionsByPoolRequest) XXX_Size() int

func (*PositionsByPoolRequest) XXX_Unmarshal

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

type PositionsByPoolResponse

type PositionsByPoolResponse struct {
	Positions  []*Position         `protobuf:"bytes,1,rep,name=positions,proto3" json:"positions,omitempty"`
	Pagination *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*PositionsByPoolResponse) Descriptor

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

func (*PositionsByPoolResponse) GetPagination

func (m *PositionsByPoolResponse) GetPagination() *query.PageResponse

func (*PositionsByPoolResponse) GetPositions

func (m *PositionsByPoolResponse) GetPositions() []*Position

func (*PositionsByPoolResponse) Marshal

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

func (*PositionsByPoolResponse) MarshalTo

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

func (*PositionsByPoolResponse) MarshalToSizedBuffer

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

func (*PositionsByPoolResponse) ProtoMessage

func (*PositionsByPoolResponse) ProtoMessage()

func (*PositionsByPoolResponse) Reset

func (m *PositionsByPoolResponse) Reset()

func (*PositionsByPoolResponse) Size

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

func (*PositionsByPoolResponse) String

func (m *PositionsByPoolResponse) String() string

func (*PositionsByPoolResponse) Unmarshal

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

func (*PositionsByPoolResponse) XXX_DiscardUnknown

func (m *PositionsByPoolResponse) XXX_DiscardUnknown()

func (*PositionsByPoolResponse) XXX_Marshal

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

func (*PositionsByPoolResponse) XXX_Merge

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

func (*PositionsByPoolResponse) XXX_Size

func (m *PositionsByPoolResponse) XXX_Size() int

func (*PositionsByPoolResponse) XXX_Unmarshal

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

type PositionsForAddressRequest

type PositionsForAddressRequest struct {
	Address    string             `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	Pagination *query.PageRequest `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*PositionsForAddressRequest) Descriptor

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

func (*PositionsForAddressRequest) GetAddress

func (m *PositionsForAddressRequest) GetAddress() string

func (*PositionsForAddressRequest) GetPagination

func (m *PositionsForAddressRequest) GetPagination() *query.PageRequest

func (*PositionsForAddressRequest) Marshal

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

func (*PositionsForAddressRequest) MarshalTo

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

func (*PositionsForAddressRequest) MarshalToSizedBuffer

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

func (*PositionsForAddressRequest) ProtoMessage

func (*PositionsForAddressRequest) ProtoMessage()

func (*PositionsForAddressRequest) Reset

func (m *PositionsForAddressRequest) Reset()

func (*PositionsForAddressRequest) Size

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

func (*PositionsForAddressRequest) String

func (m *PositionsForAddressRequest) String() string

func (*PositionsForAddressRequest) Unmarshal

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

func (*PositionsForAddressRequest) XXX_DiscardUnknown

func (m *PositionsForAddressRequest) XXX_DiscardUnknown()

func (*PositionsForAddressRequest) XXX_Marshal

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

func (*PositionsForAddressRequest) XXX_Merge

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

func (*PositionsForAddressRequest) XXX_Size

func (m *PositionsForAddressRequest) XXX_Size() int

func (*PositionsForAddressRequest) XXX_Unmarshal

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

type PositionsForAddressResponse

type PositionsForAddressResponse struct {
	Positions  []*Position         `protobuf:"bytes,1,rep,name=positions,proto3" json:"positions,omitempty"`
	Pagination *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*PositionsForAddressResponse) Descriptor

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

func (*PositionsForAddressResponse) GetPagination

func (m *PositionsForAddressResponse) GetPagination() *query.PageResponse

func (*PositionsForAddressResponse) GetPositions

func (m *PositionsForAddressResponse) GetPositions() []*Position

func (*PositionsForAddressResponse) Marshal

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

func (*PositionsForAddressResponse) MarshalTo

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

func (*PositionsForAddressResponse) MarshalToSizedBuffer

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

func (*PositionsForAddressResponse) ProtoMessage

func (*PositionsForAddressResponse) ProtoMessage()

func (*PositionsForAddressResponse) Reset

func (m *PositionsForAddressResponse) Reset()

func (*PositionsForAddressResponse) Size

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

func (*PositionsForAddressResponse) String

func (m *PositionsForAddressResponse) String() string

func (*PositionsForAddressResponse) Unmarshal

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

func (*PositionsForAddressResponse) XXX_DiscardUnknown

func (m *PositionsForAddressResponse) XXX_DiscardUnknown()

func (*PositionsForAddressResponse) XXX_Marshal

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

func (*PositionsForAddressResponse) XXX_Merge

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

func (*PositionsForAddressResponse) XXX_Size

func (m *PositionsForAddressResponse) XXX_Size() int

func (*PositionsForAddressResponse) XXX_Unmarshal

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

type PositionsRequest

type PositionsRequest struct {
	Pagination *query.PageRequest `protobuf:"bytes,1,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*PositionsRequest) Descriptor

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

func (*PositionsRequest) GetPagination

func (m *PositionsRequest) GetPagination() *query.PageRequest

func (*PositionsRequest) Marshal

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

func (*PositionsRequest) MarshalTo

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

func (*PositionsRequest) MarshalToSizedBuffer

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

func (*PositionsRequest) ProtoMessage

func (*PositionsRequest) ProtoMessage()

func (*PositionsRequest) Reset

func (m *PositionsRequest) Reset()

func (*PositionsRequest) Size

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

func (*PositionsRequest) String

func (m *PositionsRequest) String() string

func (*PositionsRequest) Unmarshal

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

func (*PositionsRequest) XXX_DiscardUnknown

func (m *PositionsRequest) XXX_DiscardUnknown()

func (*PositionsRequest) XXX_Marshal

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

func (*PositionsRequest) XXX_Merge

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

func (*PositionsRequest) XXX_Size

func (m *PositionsRequest) XXX_Size() int

func (*PositionsRequest) XXX_Unmarshal

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

type PositionsResponse

type PositionsResponse struct {
	Positions  []*Position         `protobuf:"bytes,1,rep,name=positions,proto3" json:"positions,omitempty"`
	Pagination *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*PositionsResponse) Descriptor

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

func (*PositionsResponse) GetPagination

func (m *PositionsResponse) GetPagination() *query.PageResponse

func (*PositionsResponse) GetPositions

func (m *PositionsResponse) GetPositions() []*Position

func (*PositionsResponse) Marshal

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

func (*PositionsResponse) MarshalTo

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

func (*PositionsResponse) MarshalToSizedBuffer

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

func (*PositionsResponse) ProtoMessage

func (*PositionsResponse) ProtoMessage()

func (*PositionsResponse) Reset

func (m *PositionsResponse) Reset()

func (*PositionsResponse) Size

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

func (*PositionsResponse) String

func (m *PositionsResponse) String() string

func (*PositionsResponse) Unmarshal

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

func (*PositionsResponse) XXX_DiscardUnknown

func (m *PositionsResponse) XXX_DiscardUnknown()

func (*PositionsResponse) XXX_Marshal

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

func (*PositionsResponse) XXX_Merge

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

func (*PositionsResponse) XXX_Size

func (m *PositionsResponse) XXX_Size() int

func (*PositionsResponse) XXX_Unmarshal

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

type QueryAllPoolRequest

type QueryAllPoolRequest struct {
	Pagination *query.PageRequest `protobuf:"bytes,1,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryAllPoolRequest) Descriptor

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

func (*QueryAllPoolRequest) GetPagination

func (m *QueryAllPoolRequest) GetPagination() *query.PageRequest

func (*QueryAllPoolRequest) Marshal

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

func (*QueryAllPoolRequest) MarshalTo

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

func (*QueryAllPoolRequest) MarshalToSizedBuffer

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

func (*QueryAllPoolRequest) ProtoMessage

func (*QueryAllPoolRequest) ProtoMessage()

func (*QueryAllPoolRequest) Reset

func (m *QueryAllPoolRequest) Reset()

func (*QueryAllPoolRequest) Size

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

func (*QueryAllPoolRequest) String

func (m *QueryAllPoolRequest) String() string

func (*QueryAllPoolRequest) Unmarshal

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

func (*QueryAllPoolRequest) XXX_DiscardUnknown

func (m *QueryAllPoolRequest) XXX_DiscardUnknown()

func (*QueryAllPoolRequest) XXX_Marshal

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

func (*QueryAllPoolRequest) XXX_Merge

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

func (*QueryAllPoolRequest) XXX_Size

func (m *QueryAllPoolRequest) XXX_Size() int

func (*QueryAllPoolRequest) XXX_Unmarshal

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

type QueryAllPoolResponse

type QueryAllPoolResponse struct {
	Pool       []Pool              `protobuf:"bytes,1,rep,name=pool,proto3" json:"pool"`
	Pagination *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryAllPoolResponse) Descriptor

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

func (*QueryAllPoolResponse) GetPagination

func (m *QueryAllPoolResponse) GetPagination() *query.PageResponse

func (*QueryAllPoolResponse) GetPool

func (m *QueryAllPoolResponse) GetPool() []Pool

func (*QueryAllPoolResponse) Marshal

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

func (*QueryAllPoolResponse) MarshalTo

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

func (*QueryAllPoolResponse) MarshalToSizedBuffer

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

func (*QueryAllPoolResponse) ProtoMessage

func (*QueryAllPoolResponse) ProtoMessage()

func (*QueryAllPoolResponse) Reset

func (m *QueryAllPoolResponse) Reset()

func (*QueryAllPoolResponse) Size

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

func (*QueryAllPoolResponse) String

func (m *QueryAllPoolResponse) String() string

func (*QueryAllPoolResponse) Unmarshal

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

func (*QueryAllPoolResponse) XXX_DiscardUnknown

func (m *QueryAllPoolResponse) XXX_DiscardUnknown()

func (*QueryAllPoolResponse) XXX_Marshal

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

func (*QueryAllPoolResponse) XXX_Merge

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

func (*QueryAllPoolResponse) XXX_Size

func (m *QueryAllPoolResponse) XXX_Size() int

func (*QueryAllPoolResponse) XXX_Unmarshal

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

type QueryClient

type QueryClient interface {
	// Parameters queries the parameters of the module.
	Params(ctx context.Context, in *ParamsRequest, opts ...grpc.CallOption) (*ParamsResponse, error)
	// Queries a list of GetPositions items.
	QueryPositions(ctx context.Context, in *PositionsRequest, opts ...grpc.CallOption) (*PositionsResponse, error)
	// Queries a list of GetPositionsByPool items.
	QueryPositionsByPool(ctx context.Context, in *PositionsByPoolRequest, opts ...grpc.CallOption) (*PositionsByPoolResponse, error)
	// Queries a list of GetStatus items.
	GetStatus(ctx context.Context, in *StatusRequest, opts ...grpc.CallOption) (*StatusResponse, error)
	// Queries a list of GetPositionsForAddress items.
	QueryPositionsForAddress(ctx context.Context, in *PositionsForAddressRequest, opts ...grpc.CallOption) (*PositionsForAddressResponse, error)
	// Queries a list of GetWhitelist items.
	GetWhitelist(ctx context.Context, in *WhitelistRequest, opts ...grpc.CallOption) (*WhitelistResponse, error)
	// Queries a list of IsWhitelisted items.
	IsWhitelisted(ctx context.Context, in *IsWhitelistedRequest, opts ...grpc.CallOption) (*IsWhitelistedResponse, error)
	// Queries a list of Pool items.
	Pool(ctx context.Context, in *QueryGetPoolRequest, opts ...grpc.CallOption) (*QueryGetPoolResponse, error)
	Pools(ctx context.Context, in *QueryAllPoolRequest, opts ...grpc.CallOption) (*QueryAllPoolResponse, error)
	// Queries a list of Position items.
	Position(ctx context.Context, in *PositionRequest, opts ...grpc.CallOption) (*PositionResponse, error)
	// Query a liquidation price for a position
	LiquidationPrice(ctx context.Context, in *QueryLiquidationPriceRequest, opts ...grpc.CallOption) (*QueryLiquidationPriceResponse, error)
	// Get estimated amount of return value opening a position
	OpenEst(ctx context.Context, in *QueryOpenEstRequest, opts ...grpc.CallOption) (*QueryOpenEstResponse, error)
	// Get estimated amount of return value closing a position
	CloseEst(ctx context.Context, in *QueryCloseEstRequest, opts ...grpc.CallOption) (*QueryCloseEstResponse, error)
	// Queries rewards on leveragelp
	Rewards(ctx context.Context, in *QueryRewardsRequest, opts ...grpc.CallOption) (*QueryRewardsResponse, error)
}

QueryClient is the client API for Query service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewQueryClient

func NewQueryClient(cc grpc1.ClientConn) QueryClient

type QueryCloseEstRequest added in v0.33.0

type QueryCloseEstRequest struct {
	Owner    string                                 `protobuf:"bytes,1,opt,name=owner,proto3" json:"owner,omitempty"`
	Id       uint64                                 `protobuf:"varint,2,opt,name=id,proto3" json:"id,omitempty"`
	LpAmount github_com_cosmos_cosmos_sdk_types.Int `protobuf:"bytes,3,opt,name=lp_amount,json=lpAmount,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Int" json:"lp_amount"`
}

func (*QueryCloseEstRequest) Descriptor added in v0.33.0

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

func (*QueryCloseEstRequest) GetId added in v0.33.0

func (m *QueryCloseEstRequest) GetId() uint64

func (*QueryCloseEstRequest) GetOwner added in v0.33.0

func (m *QueryCloseEstRequest) GetOwner() string

func (*QueryCloseEstRequest) Marshal added in v0.33.0

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

func (*QueryCloseEstRequest) MarshalTo added in v0.33.0

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

func (*QueryCloseEstRequest) MarshalToSizedBuffer added in v0.33.0

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

func (*QueryCloseEstRequest) ProtoMessage added in v0.33.0

func (*QueryCloseEstRequest) ProtoMessage()

func (*QueryCloseEstRequest) Reset added in v0.33.0

func (m *QueryCloseEstRequest) Reset()

func (*QueryCloseEstRequest) Size added in v0.33.0

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

func (*QueryCloseEstRequest) String added in v0.33.0

func (m *QueryCloseEstRequest) String() string

func (*QueryCloseEstRequest) Unmarshal added in v0.33.0

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

func (*QueryCloseEstRequest) XXX_DiscardUnknown added in v0.33.0

func (m *QueryCloseEstRequest) XXX_DiscardUnknown()

func (*QueryCloseEstRequest) XXX_Marshal added in v0.33.0

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

func (*QueryCloseEstRequest) XXX_Merge added in v0.33.0

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

func (*QueryCloseEstRequest) XXX_Size added in v0.33.0

func (m *QueryCloseEstRequest) XXX_Size() int

func (*QueryCloseEstRequest) XXX_Unmarshal added in v0.33.0

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

type QueryCloseEstResponse added in v0.33.0

type QueryCloseEstResponse struct {
	Liability          github_com_cosmos_cosmos_sdk_types.Int `protobuf:"bytes,1,opt,name=liability,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Int" json:"liability"`
	WeightBalanceRatio github_com_cosmos_cosmos_sdk_types.Dec `` /* 157-byte string literal not displayed */
	AmountReturned     github_com_cosmos_cosmos_sdk_types.Int `` /* 143-byte string literal not displayed */
}

func (*QueryCloseEstResponse) Descriptor added in v0.33.0

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

func (*QueryCloseEstResponse) Marshal added in v0.33.0

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

func (*QueryCloseEstResponse) MarshalTo added in v0.33.0

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

func (*QueryCloseEstResponse) MarshalToSizedBuffer added in v0.33.0

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

func (*QueryCloseEstResponse) ProtoMessage added in v0.33.0

func (*QueryCloseEstResponse) ProtoMessage()

func (*QueryCloseEstResponse) Reset added in v0.33.0

func (m *QueryCloseEstResponse) Reset()

func (*QueryCloseEstResponse) Size added in v0.33.0

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

func (*QueryCloseEstResponse) String added in v0.33.0

func (m *QueryCloseEstResponse) String() string

func (*QueryCloseEstResponse) Unmarshal added in v0.33.0

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

func (*QueryCloseEstResponse) XXX_DiscardUnknown added in v0.33.0

func (m *QueryCloseEstResponse) XXX_DiscardUnknown()

func (*QueryCloseEstResponse) XXX_Marshal added in v0.33.0

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

func (*QueryCloseEstResponse) XXX_Merge added in v0.33.0

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

func (*QueryCloseEstResponse) XXX_Size added in v0.33.0

func (m *QueryCloseEstResponse) XXX_Size() int

func (*QueryCloseEstResponse) XXX_Unmarshal added in v0.33.0

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

type QueryGetPoolRequest

type QueryGetPoolRequest struct {
	Index uint64 `protobuf:"varint,1,opt,name=index,proto3" json:"index,omitempty"`
}

func (*QueryGetPoolRequest) Descriptor

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

func (*QueryGetPoolRequest) GetIndex

func (m *QueryGetPoolRequest) GetIndex() uint64

func (*QueryGetPoolRequest) Marshal

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

func (*QueryGetPoolRequest) MarshalTo

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

func (*QueryGetPoolRequest) MarshalToSizedBuffer

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

func (*QueryGetPoolRequest) ProtoMessage

func (*QueryGetPoolRequest) ProtoMessage()

func (*QueryGetPoolRequest) Reset

func (m *QueryGetPoolRequest) Reset()

func (*QueryGetPoolRequest) Size

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

func (*QueryGetPoolRequest) String

func (m *QueryGetPoolRequest) String() string

func (*QueryGetPoolRequest) Unmarshal

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

func (*QueryGetPoolRequest) XXX_DiscardUnknown

func (m *QueryGetPoolRequest) XXX_DiscardUnknown()

func (*QueryGetPoolRequest) XXX_Marshal

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

func (*QueryGetPoolRequest) XXX_Merge

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

func (*QueryGetPoolRequest) XXX_Size

func (m *QueryGetPoolRequest) XXX_Size() int

func (*QueryGetPoolRequest) XXX_Unmarshal

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

type QueryGetPoolResponse

type QueryGetPoolResponse struct {
	Pool Pool `protobuf:"bytes,1,opt,name=pool,proto3" json:"pool"`
}

func (*QueryGetPoolResponse) Descriptor

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

func (*QueryGetPoolResponse) GetPool

func (m *QueryGetPoolResponse) GetPool() Pool

func (*QueryGetPoolResponse) Marshal

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

func (*QueryGetPoolResponse) MarshalTo

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

func (*QueryGetPoolResponse) MarshalToSizedBuffer

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

func (*QueryGetPoolResponse) ProtoMessage

func (*QueryGetPoolResponse) ProtoMessage()

func (*QueryGetPoolResponse) Reset

func (m *QueryGetPoolResponse) Reset()

func (*QueryGetPoolResponse) Size

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

func (*QueryGetPoolResponse) String

func (m *QueryGetPoolResponse) String() string

func (*QueryGetPoolResponse) Unmarshal

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

func (*QueryGetPoolResponse) XXX_DiscardUnknown

func (m *QueryGetPoolResponse) XXX_DiscardUnknown()

func (*QueryGetPoolResponse) XXX_Marshal

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

func (*QueryGetPoolResponse) XXX_Merge

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

func (*QueryGetPoolResponse) XXX_Size

func (m *QueryGetPoolResponse) XXX_Size() int

func (*QueryGetPoolResponse) XXX_Unmarshal

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

type QueryLiquidationPriceRequest added in v0.35.0

type QueryLiquidationPriceRequest struct {
	Address    string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	PositionId uint64 `protobuf:"varint,2,opt,name=position_id,json=positionId,proto3" json:"position_id,omitempty"`
}

func (*QueryLiquidationPriceRequest) Descriptor added in v0.35.0

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

func (*QueryLiquidationPriceRequest) GetAddress added in v0.35.0

func (m *QueryLiquidationPriceRequest) GetAddress() string

func (*QueryLiquidationPriceRequest) GetPositionId added in v0.35.0

func (m *QueryLiquidationPriceRequest) GetPositionId() uint64

func (*QueryLiquidationPriceRequest) Marshal added in v0.35.0

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

func (*QueryLiquidationPriceRequest) MarshalTo added in v0.35.0

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

func (*QueryLiquidationPriceRequest) MarshalToSizedBuffer added in v0.35.0

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

func (*QueryLiquidationPriceRequest) ProtoMessage added in v0.35.0

func (*QueryLiquidationPriceRequest) ProtoMessage()

func (*QueryLiquidationPriceRequest) Reset added in v0.35.0

func (m *QueryLiquidationPriceRequest) Reset()

func (*QueryLiquidationPriceRequest) Size added in v0.35.0

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

func (*QueryLiquidationPriceRequest) String added in v0.35.0

func (*QueryLiquidationPriceRequest) Unmarshal added in v0.35.0

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

func (*QueryLiquidationPriceRequest) XXX_DiscardUnknown added in v0.35.0

func (m *QueryLiquidationPriceRequest) XXX_DiscardUnknown()

func (*QueryLiquidationPriceRequest) XXX_Marshal added in v0.35.0

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

func (*QueryLiquidationPriceRequest) XXX_Merge added in v0.35.0

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

func (*QueryLiquidationPriceRequest) XXX_Size added in v0.35.0

func (m *QueryLiquidationPriceRequest) XXX_Size() int

func (*QueryLiquidationPriceRequest) XXX_Unmarshal added in v0.35.0

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

type QueryLiquidationPriceResponse added in v0.35.0

type QueryLiquidationPriceResponse struct {
	Price github_com_cosmos_cosmos_sdk_types.Dec `protobuf:"bytes,1,opt,name=price,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Dec" json:"price"`
}

func (*QueryLiquidationPriceResponse) Descriptor added in v0.35.0

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

func (*QueryLiquidationPriceResponse) Marshal added in v0.35.0

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

func (*QueryLiquidationPriceResponse) MarshalTo added in v0.35.0

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

func (*QueryLiquidationPriceResponse) MarshalToSizedBuffer added in v0.35.0

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

func (*QueryLiquidationPriceResponse) ProtoMessage added in v0.35.0

func (*QueryLiquidationPriceResponse) ProtoMessage()

func (*QueryLiquidationPriceResponse) Reset added in v0.35.0

func (m *QueryLiquidationPriceResponse) Reset()

func (*QueryLiquidationPriceResponse) Size added in v0.35.0

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

func (*QueryLiquidationPriceResponse) String added in v0.35.0

func (*QueryLiquidationPriceResponse) Unmarshal added in v0.35.0

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

func (*QueryLiquidationPriceResponse) XXX_DiscardUnknown added in v0.35.0

func (m *QueryLiquidationPriceResponse) XXX_DiscardUnknown()

func (*QueryLiquidationPriceResponse) XXX_Marshal added in v0.35.0

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

func (*QueryLiquidationPriceResponse) XXX_Merge added in v0.35.0

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

func (*QueryLiquidationPriceResponse) XXX_Size added in v0.35.0

func (m *QueryLiquidationPriceResponse) XXX_Size() int

func (*QueryLiquidationPriceResponse) XXX_Unmarshal added in v0.35.0

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

type QueryOpenEstRequest added in v0.33.0

type QueryOpenEstRequest struct {
	CollateralAsset  string                                 `protobuf:"bytes,1,opt,name=collateral_asset,json=collateralAsset,proto3" json:"collateral_asset,omitempty"`
	CollateralAmount github_com_cosmos_cosmos_sdk_types.Int `` /* 149-byte string literal not displayed */
	AmmPoolId        uint64                                 `protobuf:"varint,3,opt,name=amm_pool_id,json=ammPoolId,proto3" json:"amm_pool_id,omitempty"`
	Leverage         github_com_cosmos_cosmos_sdk_types.Dec `protobuf:"bytes,4,opt,name=leverage,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Dec" json:"leverage"`
}

func (*QueryOpenEstRequest) Descriptor added in v0.33.0

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

func (*QueryOpenEstRequest) GetAmmPoolId added in v0.33.0

func (m *QueryOpenEstRequest) GetAmmPoolId() uint64

func (*QueryOpenEstRequest) GetCollateralAsset added in v0.33.0

func (m *QueryOpenEstRequest) GetCollateralAsset() string

func (*QueryOpenEstRequest) Marshal added in v0.33.0

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

func (*QueryOpenEstRequest) MarshalTo added in v0.33.0

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

func (*QueryOpenEstRequest) MarshalToSizedBuffer added in v0.33.0

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

func (*QueryOpenEstRequest) ProtoMessage added in v0.33.0

func (*QueryOpenEstRequest) ProtoMessage()

func (*QueryOpenEstRequest) Reset added in v0.33.0

func (m *QueryOpenEstRequest) Reset()

func (*QueryOpenEstRequest) Size added in v0.33.0

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

func (*QueryOpenEstRequest) String added in v0.33.0

func (m *QueryOpenEstRequest) String() string

func (*QueryOpenEstRequest) Unmarshal added in v0.33.0

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

func (*QueryOpenEstRequest) XXX_DiscardUnknown added in v0.33.0

func (m *QueryOpenEstRequest) XXX_DiscardUnknown()

func (*QueryOpenEstRequest) XXX_Marshal added in v0.33.0

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

func (*QueryOpenEstRequest) XXX_Merge added in v0.33.0

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

func (*QueryOpenEstRequest) XXX_Size added in v0.33.0

func (m *QueryOpenEstRequest) XXX_Size() int

func (*QueryOpenEstRequest) XXX_Unmarshal added in v0.33.0

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

type QueryOpenEstResponse added in v0.33.0

type QueryOpenEstResponse struct {
	PositionSize       github_com_cosmos_cosmos_sdk_types.Int `` /* 137-byte string literal not displayed */
	WeightBalanceRatio github_com_cosmos_cosmos_sdk_types.Dec `` /* 157-byte string literal not displayed */
	BorrowFee          github_com_cosmos_cosmos_sdk_types.Dec `` /* 128-byte string literal not displayed */
}

func (*QueryOpenEstResponse) Descriptor added in v0.33.0

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

func (*QueryOpenEstResponse) Marshal added in v0.33.0

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

func (*QueryOpenEstResponse) MarshalTo added in v0.33.0

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

func (*QueryOpenEstResponse) MarshalToSizedBuffer added in v0.33.0

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

func (*QueryOpenEstResponse) ProtoMessage added in v0.33.0

func (*QueryOpenEstResponse) ProtoMessage()

func (*QueryOpenEstResponse) Reset added in v0.33.0

func (m *QueryOpenEstResponse) Reset()

func (*QueryOpenEstResponse) Size added in v0.33.0

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

func (*QueryOpenEstResponse) String added in v0.33.0

func (m *QueryOpenEstResponse) String() string

func (*QueryOpenEstResponse) Unmarshal added in v0.33.0

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

func (*QueryOpenEstResponse) XXX_DiscardUnknown added in v0.33.0

func (m *QueryOpenEstResponse) XXX_DiscardUnknown()

func (*QueryOpenEstResponse) XXX_Marshal added in v0.33.0

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

func (*QueryOpenEstResponse) XXX_Merge added in v0.33.0

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

func (*QueryOpenEstResponse) XXX_Size added in v0.33.0

func (m *QueryOpenEstResponse) XXX_Size() int

func (*QueryOpenEstResponse) XXX_Unmarshal added in v0.33.0

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

type QueryRewardsRequest added in v0.33.0

type QueryRewardsRequest struct {
	Address string   `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	Ids     []uint64 `protobuf:"varint,2,rep,packed,name=ids,proto3" json:"ids,omitempty"`
}

func (*QueryRewardsRequest) Descriptor added in v0.33.0

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

func (*QueryRewardsRequest) GetAddress added in v0.33.0

func (m *QueryRewardsRequest) GetAddress() string

func (*QueryRewardsRequest) GetIds added in v0.33.0

func (m *QueryRewardsRequest) GetIds() []uint64

func (*QueryRewardsRequest) Marshal added in v0.33.0

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

func (*QueryRewardsRequest) MarshalTo added in v0.33.0

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

func (*QueryRewardsRequest) MarshalToSizedBuffer added in v0.33.0

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

func (*QueryRewardsRequest) ProtoMessage added in v0.33.0

func (*QueryRewardsRequest) ProtoMessage()

func (*QueryRewardsRequest) Reset added in v0.33.0

func (m *QueryRewardsRequest) Reset()

func (*QueryRewardsRequest) Size added in v0.33.0

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

func (*QueryRewardsRequest) String added in v0.33.0

func (m *QueryRewardsRequest) String() string

func (*QueryRewardsRequest) Unmarshal added in v0.33.0

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

func (*QueryRewardsRequest) XXX_DiscardUnknown added in v0.33.0

func (m *QueryRewardsRequest) XXX_DiscardUnknown()

func (*QueryRewardsRequest) XXX_Marshal added in v0.33.0

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

func (*QueryRewardsRequest) XXX_Merge added in v0.33.0

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

func (*QueryRewardsRequest) XXX_Size added in v0.33.0

func (m *QueryRewardsRequest) XXX_Size() int

func (*QueryRewardsRequest) XXX_Unmarshal added in v0.33.0

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

type QueryRewardsResponse added in v0.33.0

type QueryRewardsResponse struct {
	Rewards      []*RewardInfo                            `protobuf:"bytes,1,rep,name=rewards,proto3" json:"rewards,omitempty"`
	TotalRewards github_com_cosmos_cosmos_sdk_types.Coins `` /* 141-byte string literal not displayed */
}

func (*QueryRewardsResponse) Descriptor added in v0.33.0

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

func (*QueryRewardsResponse) GetRewards added in v0.33.0

func (m *QueryRewardsResponse) GetRewards() []*RewardInfo

func (*QueryRewardsResponse) GetTotalRewards added in v0.33.0

func (*QueryRewardsResponse) Marshal added in v0.33.0

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

func (*QueryRewardsResponse) MarshalTo added in v0.33.0

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

func (*QueryRewardsResponse) MarshalToSizedBuffer added in v0.33.0

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

func (*QueryRewardsResponse) ProtoMessage added in v0.33.0

func (*QueryRewardsResponse) ProtoMessage()

func (*QueryRewardsResponse) Reset added in v0.33.0

func (m *QueryRewardsResponse) Reset()

func (*QueryRewardsResponse) Size added in v0.33.0

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

func (*QueryRewardsResponse) String added in v0.33.0

func (m *QueryRewardsResponse) String() string

func (*QueryRewardsResponse) Unmarshal added in v0.33.0

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

func (*QueryRewardsResponse) XXX_DiscardUnknown added in v0.33.0

func (m *QueryRewardsResponse) XXX_DiscardUnknown()

func (*QueryRewardsResponse) XXX_Marshal added in v0.33.0

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

func (*QueryRewardsResponse) XXX_Merge added in v0.33.0

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

func (*QueryRewardsResponse) XXX_Size added in v0.33.0

func (m *QueryRewardsResponse) XXX_Size() int

func (*QueryRewardsResponse) XXX_Unmarshal added in v0.33.0

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

type QueryServer

type QueryServer interface {
	// Parameters queries the parameters of the module.
	Params(context.Context, *ParamsRequest) (*ParamsResponse, error)
	// Queries a list of GetPositions items.
	QueryPositions(context.Context, *PositionsRequest) (*PositionsResponse, error)
	// Queries a list of GetPositionsByPool items.
	QueryPositionsByPool(context.Context, *PositionsByPoolRequest) (*PositionsByPoolResponse, error)
	// Queries a list of GetStatus items.
	GetStatus(context.Context, *StatusRequest) (*StatusResponse, error)
	// Queries a list of GetPositionsForAddress items.
	QueryPositionsForAddress(context.Context, *PositionsForAddressRequest) (*PositionsForAddressResponse, error)
	// Queries a list of GetWhitelist items.
	GetWhitelist(context.Context, *WhitelistRequest) (*WhitelistResponse, error)
	// Queries a list of IsWhitelisted items.
	IsWhitelisted(context.Context, *IsWhitelistedRequest) (*IsWhitelistedResponse, error)
	// Queries a list of Pool items.
	Pool(context.Context, *QueryGetPoolRequest) (*QueryGetPoolResponse, error)
	Pools(context.Context, *QueryAllPoolRequest) (*QueryAllPoolResponse, error)
	// Queries a list of Position items.
	Position(context.Context, *PositionRequest) (*PositionResponse, error)
	// Query a liquidation price for a position
	LiquidationPrice(context.Context, *QueryLiquidationPriceRequest) (*QueryLiquidationPriceResponse, error)
	// Get estimated amount of return value opening a position
	OpenEst(context.Context, *QueryOpenEstRequest) (*QueryOpenEstResponse, error)
	// Get estimated amount of return value closing a position
	CloseEst(context.Context, *QueryCloseEstRequest) (*QueryCloseEstResponse, error)
	// Queries rewards on leveragelp
	Rewards(context.Context, *QueryRewardsRequest) (*QueryRewardsResponse, error)
}

QueryServer is the server API for Query service.

type RewardInfo added in v0.33.0

type RewardInfo struct {
	PositionId uint64                                   `protobuf:"varint,1,opt,name=position_id,json=positionId,proto3" json:"position_id,omitempty"`
	Reward     github_com_cosmos_cosmos_sdk_types.Coins `protobuf:"bytes,2,rep,name=reward,proto3,castrepeated=github.com/cosmos/cosmos-sdk/types.Coins" json:"reward"`
}

func (*RewardInfo) Descriptor added in v0.33.0

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

func (*RewardInfo) GetPositionId added in v0.33.0

func (m *RewardInfo) GetPositionId() uint64

func (*RewardInfo) GetReward added in v0.33.0

func (*RewardInfo) Marshal added in v0.33.0

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

func (*RewardInfo) MarshalTo added in v0.33.0

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

func (*RewardInfo) MarshalToSizedBuffer added in v0.33.0

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

func (*RewardInfo) ProtoMessage added in v0.33.0

func (*RewardInfo) ProtoMessage()

func (*RewardInfo) Reset added in v0.33.0

func (m *RewardInfo) Reset()

func (*RewardInfo) Size added in v0.33.0

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

func (*RewardInfo) String added in v0.33.0

func (m *RewardInfo) String() string

func (*RewardInfo) Unmarshal added in v0.33.0

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

func (*RewardInfo) XXX_DiscardUnknown added in v0.33.0

func (m *RewardInfo) XXX_DiscardUnknown()

func (*RewardInfo) XXX_Marshal added in v0.33.0

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

func (*RewardInfo) XXX_Merge added in v0.33.0

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

func (*RewardInfo) XXX_Size added in v0.33.0

func (m *RewardInfo) XXX_Size() int

func (*RewardInfo) XXX_Unmarshal added in v0.33.0

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

type StableStakeKeeper

type StableStakeKeeper interface {
	GetParams(ctx sdk.Context) stablestaketypes.Params
	GetDepositDenom(ctx sdk.Context) string
	GetDebt(ctx sdk.Context, addr sdk.AccAddress) stablestaketypes.Debt
	UpdateInterestStackedByAddress(ctx sdk.Context, addr sdk.AccAddress) stablestaketypes.Debt
	Borrow(ctx sdk.Context, addr sdk.AccAddress, amount sdk.Coin) error
	Repay(ctx sdk.Context, addr sdk.AccAddress, amount sdk.Coin) error
	TVL(ctx sdk.Context, oracleKeeper stablestaketypes.OracleKeeper, baseCurrency string) math.LegacyDec
}

StableStakeKeeper defines the expected interface needed on stablestake

type StatusRequest

type StatusRequest struct {
}

func (*StatusRequest) Descriptor

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

func (*StatusRequest) Marshal

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

func (*StatusRequest) MarshalTo

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

func (*StatusRequest) MarshalToSizedBuffer

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

func (*StatusRequest) ProtoMessage

func (*StatusRequest) ProtoMessage()

func (*StatusRequest) Reset

func (m *StatusRequest) Reset()

func (*StatusRequest) Size

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

func (*StatusRequest) String

func (m *StatusRequest) String() string

func (*StatusRequest) Unmarshal

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

func (*StatusRequest) XXX_DiscardUnknown

func (m *StatusRequest) XXX_DiscardUnknown()

func (*StatusRequest) XXX_Marshal

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

func (*StatusRequest) XXX_Merge

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

func (*StatusRequest) XXX_Size

func (m *StatusRequest) XXX_Size() int

func (*StatusRequest) XXX_Unmarshal

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

type StatusResponse

type StatusResponse struct {
	OpenPositionCount     uint64 `protobuf:"varint,1,opt,name=open_position_count,json=openPositionCount,proto3" json:"open_position_count,omitempty"`
	LifetimePositionCount uint64 `` /* 127-byte string literal not displayed */
}

func (*StatusResponse) Descriptor

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

func (*StatusResponse) GetLifetimePositionCount

func (m *StatusResponse) GetLifetimePositionCount() uint64

func (*StatusResponse) GetOpenPositionCount

func (m *StatusResponse) GetOpenPositionCount() uint64

func (*StatusResponse) Marshal

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

func (*StatusResponse) MarshalTo

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

func (*StatusResponse) MarshalToSizedBuffer

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

func (*StatusResponse) ProtoMessage

func (*StatusResponse) ProtoMessage()

func (*StatusResponse) Reset

func (m *StatusResponse) Reset()

func (*StatusResponse) Size

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

func (*StatusResponse) String

func (m *StatusResponse) String() string

func (*StatusResponse) Unmarshal

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

func (*StatusResponse) XXX_DiscardUnknown

func (m *StatusResponse) XXX_DiscardUnknown()

func (*StatusResponse) XXX_Marshal

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

func (*StatusResponse) XXX_Merge

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

func (*StatusResponse) XXX_Size

func (m *StatusResponse) XXX_Size() int

func (*StatusResponse) XXX_Unmarshal

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

type UnimplementedMsgServer

type UnimplementedMsgServer struct {
}

UnimplementedMsgServer can be embedded to have forward compatible implementations.

func (*UnimplementedMsgServer) AddCollateral added in v0.37.0

func (*UnimplementedMsgServer) ClaimRewards added in v0.33.0

func (*UnimplementedMsgServer) Close

func (*UnimplementedMsgServer) Dewhitelist

func (*UnimplementedMsgServer) Open

func (*UnimplementedMsgServer) UpdateParams

func (*UnimplementedMsgServer) UpdatePools

func (*UnimplementedMsgServer) UpdateStopLoss added in v0.33.0

func (*UnimplementedMsgServer) Whitelist

type UnimplementedQueryServer

type UnimplementedQueryServer struct {
}

UnimplementedQueryServer can be embedded to have forward compatible implementations.

func (*UnimplementedQueryServer) CloseEst added in v0.33.0

func (*UnimplementedQueryServer) GetStatus

func (*UnimplementedQueryServer) GetWhitelist

func (*UnimplementedQueryServer) IsWhitelisted

func (*UnimplementedQueryServer) LiquidationPrice added in v0.35.0

func (*UnimplementedQueryServer) OpenEst added in v0.33.0

func (*UnimplementedQueryServer) Params

func (*UnimplementedQueryServer) Pool

func (*UnimplementedQueryServer) Pools

func (*UnimplementedQueryServer) Position

func (*UnimplementedQueryServer) QueryPositions

func (*UnimplementedQueryServer) QueryPositionsByPool

func (*UnimplementedQueryServer) QueryPositionsForAddress

func (*UnimplementedQueryServer) Rewards added in v0.33.0

type WhitelistRequest

type WhitelistRequest struct {
	Pagination *query.PageRequest `protobuf:"bytes,1,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*WhitelistRequest) Descriptor

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

func (*WhitelistRequest) GetPagination

func (m *WhitelistRequest) GetPagination() *query.PageRequest

func (*WhitelistRequest) Marshal

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

func (*WhitelistRequest) MarshalTo

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

func (*WhitelistRequest) MarshalToSizedBuffer

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

func (*WhitelistRequest) ProtoMessage

func (*WhitelistRequest) ProtoMessage()

func (*WhitelistRequest) Reset

func (m *WhitelistRequest) Reset()

func (*WhitelistRequest) Size

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

func (*WhitelistRequest) String

func (m *WhitelistRequest) String() string

func (*WhitelistRequest) Unmarshal

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

func (*WhitelistRequest) XXX_DiscardUnknown

func (m *WhitelistRequest) XXX_DiscardUnknown()

func (*WhitelistRequest) XXX_Marshal

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

func (*WhitelistRequest) XXX_Merge

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

func (*WhitelistRequest) XXX_Size

func (m *WhitelistRequest) XXX_Size() int

func (*WhitelistRequest) XXX_Unmarshal

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

type WhitelistResponse

type WhitelistResponse struct {
	Whitelist  []string            `protobuf:"bytes,1,rep,name=whitelist,proto3" json:"whitelist,omitempty"`
	Pagination *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*WhitelistResponse) Descriptor

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

func (*WhitelistResponse) GetPagination

func (m *WhitelistResponse) GetPagination() *query.PageResponse

func (*WhitelistResponse) GetWhitelist

func (m *WhitelistResponse) GetWhitelist() []string

func (*WhitelistResponse) Marshal

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

func (*WhitelistResponse) MarshalTo

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

func (*WhitelistResponse) MarshalToSizedBuffer

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

func (*WhitelistResponse) ProtoMessage

func (*WhitelistResponse) ProtoMessage()

func (*WhitelistResponse) Reset

func (m *WhitelistResponse) Reset()

func (*WhitelistResponse) Size

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

func (*WhitelistResponse) String

func (m *WhitelistResponse) String() string

func (*WhitelistResponse) Unmarshal

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

func (*WhitelistResponse) XXX_DiscardUnknown

func (m *WhitelistResponse) XXX_DiscardUnknown()

func (*WhitelistResponse) XXX_Marshal

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

func (*WhitelistResponse) XXX_Merge

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

func (*WhitelistResponse) XXX_Size

func (m *WhitelistResponse) XXX_Size() int

func (*WhitelistResponse) XXX_Unmarshal

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

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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