Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CosmosQuery ¶
type CosmosQuery struct { TaxRate *struct{} `json:"tax_rate,omitempty"` TaxCap *types.QueryTaxCapParams `json:"tax_cap,omitempty"` }
CosmosQuery contains various treasury queries
type TaxCapQueryResponse ¶
type TaxCapQueryResponse struct { // uint64 string, eg "1000000" Cap string `json:"cap"` }
TaxCapQueryResponse - tax cap query response for wasm module
type TaxRateQueryResponse ¶
type TaxRateQueryResponse struct { // decimal string, eg "0.02" Rate string `json:"rate"` }
TaxRateQueryResponse - tax rate query response for wasm module
type WasmQuerier ¶
type WasmQuerier struct {
// contains filtered or unexported fields
}
WasmQuerier - staking query interface for wasm contract
func NewWasmQuerier ¶
func NewWasmQuerier(keeper keeper.Keeper) WasmQuerier
NewWasmQuerier return bank wasm query interface
func (WasmQuerier) Query ¶
func (WasmQuerier) Query(_ sdk.Context, _ wasmTypes.QueryRequest) ([]byte, error)
Query - implement query function
func (WasmQuerier) QueryCustom ¶
func (querier WasmQuerier) QueryCustom(ctx sdk.Context, data json.RawMessage) ([]byte, error)
QueryCustom implements custom query interface
Click to show internal directories.
Click to hide internal directories.