You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
315 B
16 lines
315 B
import { uid } from '../../utils/uid.js'
|
|
|
|
/**
|
|
* @description Generates random EIP-4361 nonce.
|
|
*
|
|
* @example
|
|
* const nonce = generateNonce()
|
|
*
|
|
* @see https://eips.ethereum.org/EIPS/eip-4361
|
|
*
|
|
* @returns A randomly generated EIP-4361 nonce.
|
|
*/
|
|
export function generateSiweNonce(): string {
|
|
return uid(96)
|
|
}
|