isErc6492Signature

Example

import { isErc6492Signature } from "thirdweb/auth";
const isErc6492 = isErc6492Signature(
"0x1234567890123456789012345678901234567890",
);
function isErc6492Signature(signature: `0x${string}`): boolean;

Parameters

The signature to check for ERC6492 compatibility

Type

let signature: `0x${string}`;

Returns

let returnType: boolean;

True if the signature is compatible with ERC6492, false otherwise