CDP Frontend SDK
    Preparing search index...

    Type Alias SendTransactionRequestParams

    SendTransactionRequestParams: [
        {
            chainId?: `0x${string}`;
            data?: Hex;
            from: EvmAddress;
            to: EvmAddress;
            value: Hex;
            nonce?: Hex;
            gas?: Hex;
            maxFeePerGas?: Hex;
            maxPriorityFeePerGas?: Hex;
            type?: "eip1559";
        },
    ]

    Transaction parameters for the eth_sendTransaction method.