Options for signing a Solana transaction.

interface SignTransactionOptions {
    address: string;
    idempotencyKey?: string;
    transaction: string;
}

Properties

address: string

The address of the account.

idempotencyKey?: string

The idempotency key.

transaction: string

The base64 encoded transaction to sign.