GasInfo defines tx execution gas context.

interface GasInfoAmino {
    gas_used?: string;
    gas_wanted?: string;
}

Properties

gas_used?: string

GasUsed is the amount of gas actually consumed.

gas_wanted?: string

GasWanted is the maximum units of work we allow this tx to perform.