ChainSig.js Documentation - v1.1.6
    Preparing search index...

    Interface EVMTransactionRequest

    interface EVMTransactionRequest {
        blobs?: undefined;
        blobVersionedHashes?: undefined;
        kzg?: undefined;
        sidecars?: undefined;
        authorizationList?: undefined;
        from: `0x${string}`;
        gasPrice?: undefined;
        maxFeePerBlobGas?: undefined;
        maxFeePerGas?: bigint;
        maxPriorityFeePerGas?: bigint;
        data?: `0x${string}`;
        gas?: bigint;
        nonce?: number;
        to?: null | `0x${string}`;
        value?: bigint;
        accessList?: AccessList;
    }

    Hierarchy

    Index

    Properties

    blobs?: undefined
    blobVersionedHashes?: undefined
    kzg?: undefined
    sidecars?: undefined
    authorizationList?: undefined
    from: `0x${string}`

    Transaction sender

    gasPrice?: undefined
    maxFeePerBlobGas?: undefined
    maxFeePerGas?: bigint

    Total fee per gas in wei (gasPrice/baseFeePerGas + maxPriorityFeePerGas).

    maxPriorityFeePerGas?: bigint

    Max priority fee per gas (in wei).

    data?: `0x${string}`

    Contract code or a hashed method call with encoded args

    gas?: bigint

    Gas provided for transaction execution

    nonce?: number

    Unique number identifying this transaction

    to?: null | `0x${string}`

    Transaction recipient

    value?: bigint

    Value in wei sent with this transaction

    accessList?: AccessList