interface Contract {
    address: string;
    admin: undefined | string;
    codeId: number;
    creator: string;
    ibcPortId: undefined | string;
    label: string;
}

Properties

address: string
admin: undefined | string

Bech32-encoded admin address

codeId: number
creator: string

Bech32 account address

ibcPortId: undefined | string

The IBC port ID assigned to this contract by wasmd.

This is set for all IBC contracts (https://github.com/CosmWasm/wasmd/blob/v0.16.0/x/wasm/keeper/keeper.go#L299-L306).

label: string

Generated using TypeDoc