interface GasEstimateParams {
    maxFee?: string;
    msg: {
        from: string;
        gasFeeCap?: string;
        gasLimit?: number;
        gasPremium?: string;
        method?: number;
        nonce?: number;
        params?: string;
        to: string;
        value: string;
        version?: 0;
    };
}

Properties

Properties

maxFee?: string

Max fee to pay for gas (attoFIL/gas units)

'0'
msg: {
    from: string;
    gasFeeCap?: string;
    gasLimit?: number;
    gasPremium?: string;
    method?: number;
    nonce?: number;
    params?: string;
    to: string;
    value: string;
    version?: 0;
}

Message to estimate gas for