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