CDP SDK TypeScript - v1.31.0
    Preparing search index...

    Interface SignTransactionOptions

    Options for signing an EVM transaction.

    interface SignTransactionOptions {
        address: `0x${string}`;
        transaction: `0x${string}`;
        idempotencyKey?: string;
    }
    Index

    Properties

    address: `0x${string}`

    The address of the account.

    transaction: `0x${string}`

    The RLP-encoded transaction to sign, as a 0x-prefixed hex string.

    idempotencyKey?: string

    The idempotency key.