interface InstantiateResult {
    contractAddress: string;
    events: readonly Event[];
    gasUsed: number;
    gasWanted: number;
    height: number;
    logs: readonly Log[];
    transactionHash: string;
}

Properties

contractAddress: string

The address of the newly instantiated contract

events: readonly Event[]
gasUsed: number
gasWanted: number
height: number

Block height in which the transaction is included

logs: readonly Log[]
transactionHash: string

Transaction hash (might be used as transaction ID). Guaranteed to be non-empty upper-case hex

Generated using TypeDoc