Versions in this module Expand all Collapse all v21 v21.0.0 Mar 9, 2024 Changes in this version + var ErrContractAlreadyRegistered = errorsmod.Register(codespace, 2, "contract already registered") + var ErrContractExecutionPanic = errorsmod.Register(codespace, 7, "contract execution panicked") + var ErrContractNotAdmin = errorsmod.Register(codespace, 3, "sender is not the contract admin") + var ErrContractNotCreator = errorsmod.Register(codespace, 4, "sender is not the contract creator") + var ErrContractNotRegistered = errorsmod.Register(codespace, 1, "contract not registered") + var ErrInvalidAddress = sdkerrors.ErrInvalidAddress + var ErrInvalidCWContract = errorsmod.Register(codespace, 5, "invalid CosmWasm contract") + var ErrOutOfGas = errorsmod.Register(codespace, 6, "contract execution ran out of gas") + func ExecuteContract(k wasmtypes.ContractOpsKeeper, childCtx sdk.Context, ...) + func IsOutOfGasError(err any) (bool, string) + type PV struct + PrivKey cryptotypes.PrivKey + func NewPV() PV + func (pv PV) GetPubKey() (crypto.PubKey, error) + func (pv PV) SignProposal(chainID string, proposal *tmproto.Proposal) error + func (pv PV) SignVote(chainID string, vote *tmproto.Vote) error Other modules containing this package github.com/CosmosContracts/juno/v12 github.com/CosmosContracts/juno/v13 github.com/CosmosContracts/juno/v14 github.com/CosmosContracts/juno/v15 github.com/CosmosContracts/juno/v16 github.com/CosmosContracts/juno/v17 github.com/CosmosContracts/juno/v18 github.com/CosmosContracts/juno/v19 github.com/CosmosContracts/juno/v22 github.com/CosmosContracts/juno/v23 github.com/CosmosContracts/juno/v24 github.com/CosmosContracts/juno/v25