T402 API Reference - v2.8.0
    Preparing search index...

    Interface GasEstimate

    Gas estimation result from bundler

    interface GasEstimate {
        verificationGasLimit: bigint;
        callGasLimit: bigint;
        preVerificationGas: bigint;
        paymasterVerificationGasLimit?: bigint;
        paymasterPostOpGasLimit?: bigint;
    }
    Index

    Properties

    verificationGasLimit: bigint

    Gas for account validation

    callGasLimit: bigint

    Gas for call execution

    preVerificationGas: bigint

    Gas for bundler overhead

    paymasterVerificationGasLimit?: bigint

    Gas for paymaster validation (if applicable)

    paymasterPostOpGasLimit?: bigint

    Gas for paymaster post-op (if applicable)