Documentation
¶
Index ¶
- func ExecuteMsgWithAmount(t *testing.T, ctx context.Context, chain *cosmos.CosmosChain, user ibc.Wallet, ...)
- func ExecuteMsgWithFee(t *testing.T, ctx context.Context, chain *cosmos.CosmosChain, user ibc.Wallet, ...)
- func ExecuteMsgWithFeeReturn(t *testing.T, ctx context.Context, chain *cosmos.CosmosChain, user ibc.Wallet, ...) (*sdk.TxResponse, error)
- func MigrateContract(t *testing.T, ctx context.Context, chain *cosmos.CosmosChain, keyname string, ...) (codeId, contract string)
- func SetupContract(t *testing.T, ctx context.Context, chain *cosmos.CosmosChain, keyname string, ...) (codeId, contract string)
- func SmartQueryString(t *testing.T, ctx context.Context, chain *cosmos.CosmosChain, ...) error
- func StoreContract(t *testing.T, ctx context.Context, chain *cosmos.CosmosChain, keyname string, ...) (codeId string)
- type CW721TokensResp
- type ClockContractObj
- type ClockContractResponse
- type GetAllBalancesQuery
- type GetAllBalancesResponse
- type GetBalanceQuery
- type GetBalanceResponse
- type GetCountObj
- type GetCountQuery
- type GetCountResponse
- type GetCwHooksDelegationResponse
- type GetDelegationObj
- type GetTotalFundsObj
- type GetTotalFundsQuery
- type GetTotalFundsResponse
- type QueryMsg
- type WasmCoin
- type WithdrawalTimestampObj
- type WithdrawalTimestampResponse
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ExecuteMsgWithAmount ¶
func ExecuteMsgWithFee ¶
func ExecuteMsgWithFeeReturn ¶
func MigrateContract ¶
func SetupContract ¶
func SmartQueryString ¶
Types ¶
type CW721TokensResp ¶
type CW721TokensResp struct { Data struct { Tokens []string `json:"tokens"` } `json:"data"` }
type ClockContractObj ¶
type ClockContractObj struct {
Val uint32 `json:"val"`
}
type ClockContractResponse ¶
type ClockContractResponse struct {
Data *ClockContractObj `json:"data"`
}
type GetAllBalancesQuery ¶
type GetAllBalancesQuery struct {
Address string `json:"address"`
}
type GetAllBalancesResponse ¶
type GetBalanceQuery ¶
type GetBalanceResponse ¶
type GetCountObj ¶
type GetCountObj struct {
Count int64 `json:"count"`
}
type GetCountQuery ¶
type GetCountQuery struct { // {"get_total_funds":{"addr":"juno1..."}} Addr string `json:"addr"` }
type GetCountResponse ¶
type GetCountResponse struct { // {"data":{"count":0}} Data *GetCountObj `json:"data"` }
type GetCwHooksDelegationResponse ¶
type GetCwHooksDelegationResponse struct { // {"data":{"validator_address":"%s","delegator_address":"%s","shares":"%s"}} Data *GetDelegationObj `json:"data"` }
type GetDelegationObj ¶
type GetTotalFundsObj ¶
type GetTotalFundsObj struct {
TotalFunds []WasmCoin `json:"total_funds"`
}
type GetTotalFundsQuery ¶
type GetTotalFundsQuery struct { // {"get_total_funds":{"addr":"juno1..."}} Addr string `json:"addr"` }
type GetTotalFundsResponse ¶
type GetTotalFundsResponse struct { // {"data":{"total_funds":[{"denom":"ibc/04F5F501207C3626A2C14BFEF654D51C2E0B8F7CA578AB8ED272A66FE4E48097","amount":"1"}]}} Data *GetTotalFundsObj `json:"data"` }
type QueryMsg ¶
type QueryMsg struct { // Tokenfactory Core GetConfig *struct{} `json:"get_config,omitempty"` GetBalance *GetBalanceQuery `json:"get_balance,omitempty"` GetAllBalances *GetAllBalancesQuery `json:"get_all_balances,omitempty"` // Unity Contract GetWithdrawalReadyTime *struct{} `json:"get_withdrawal_ready_time,omitempty"` // IBCHooks GetCount *GetCountQuery `json:"get_count,omitempty"` GetTotalFunds *GetTotalFundsQuery `json:"get_total_funds,omitempty"` }
EntryPoint
type WithdrawalTimestampObj ¶
type WithdrawalTimestampObj struct {
WithdrawalReadyTimestamp string `json:"withdrawal_ready_timestamp"`
}
type WithdrawalTimestampResponse ¶
type WithdrawalTimestampResponse struct { // {"data":{"withdrawal_ready_timestamp":"1686146048614053435"}} Data *WithdrawalTimestampObj `json:"data"` }
Click to show internal directories.
Click to hide internal directories.