Properties
| Property | Type | Description |
|---|---|---|
solanaAccount | SolanaAddress | The Solana account to sign the transaction with. |
transaction | string | The base64 encoded transaction to sign. |
idempotencyKey? | string | Optional idempotency key for safe retries. |
type SignSolanaTransactionOptions = {
solanaAccount: SolanaAddress;
transaction: string;
idempotencyKey?: string;
};
| Property | Type | Description |
|---|---|---|
solanaAccount | SolanaAddress | The Solana account to sign the transaction with. |
transaction | string | The base64 encoded transaction to sign. |
idempotencyKey? | string | Optional idempotency key for safe retries. |
Was this page helpful?