type SignInWithSiweOptions = {
address: EvmAddress;
chainId: number;
domain: string;
uri: string;
statement?: string;
resources?: string[];
idempotencyKey?: string;
};
Properties
| Property | Type | Description |
|---|---|---|
address | EvmAddress | The ERC-55 checksummed Ethereum address of the end user. |
chainId | number | The EIP-155 chain ID of the network the user is authenticating on. |
domain | string | The RFC 3986 authority of the application requesting the signature (e.g., the hostname). |
uri | string | The RFC 3986 URI of the resource that is the subject of the signing. |
statement? | string | An optional human-readable ASCII assertion that the user will see when signing. |
resources? | string[] | An optional list of URIs for information or references the user wishes to have resolved as part of authentication. |
idempotencyKey? | string | Optional idempotency key for safe retries. |