Properties
| Property | Type | Description |
|---|---|---|
evmAccount | EvmAddress | The EVM account to sign the message with. |
message | string | The message to sign. |
idempotencyKey? | string | Optional idempotency key for safe retries. |
type SignEvmMessageOptions = {
evmAccount: EvmAddress;
message: string;
idempotencyKey?: string;
};
| Property | Type | Description |
|---|---|---|
evmAccount | EvmAddress | The EVM account to sign the message with. |
message | string | The message to sign. |
idempotencyKey? | string | Optional idempotency key for safe retries. |
Was this page helpful?