ContractInfo stores a WASM contract instance

interface ContractInfoAmino {
    admin?: string;
    code_id?: string;
    created?: AbsoluteTxPositionAmino;
    creator?: string;
    extension?: AnyAmino;
    ibc_port_id?: string;
    label?: string;
}

Properties

admin?: string

Admin is an optional address that can execute migrations

code_id?: string

CodeID is the reference to the stored Wasm code

Created Tx position when the contract was instantiated.

creator?: string

Creator address who initially instantiated the contract

extension?: AnyAmino

Extension is an extension point to store custom metadata within the persistence model.

ibc_port_id?: string
label?: string

Label is optional metadata to be stored with a contract instance.