Interface SendTransactionParams

Interface representing the parameters for Checkout.sendTransaction.

interface SendTransactionParams {
    provider: WrappedBrowserProvider | Eip1193Provider;
    transaction: TransactionRequest;
}

Properties

provider: WrappedBrowserProvider | Eip1193Provider

The provider to connect to the network.

transaction: TransactionRequest

The transaction to send.

""