UNPKG

viem

Version:

TypeScript Interface for Ethereum

30 lines 1.5 kB
import type { Address } from 'abitype'; import type { ByteArray, Hash, Hex, Signature } from '../../types/misc.js'; import { type GetAddressErrorType } from '../address/getAddress.js'; import { type IsAddressEqualErrorType } from '../address/isAddressEqual.js'; import type { ErrorType } from '../../errors/utils.js'; import { type RecoverAddressErrorType } from './recoverAddress.js'; export type VerifyHashParameters = { /** The address that signed the original message. */ address: Address; /** The hash to be verified. */ hash: Hash; /** The signature that was generated by signing the message with the address's private key. */ signature: Hex | ByteArray | Signature; }; export type VerifyHashReturnType = boolean; export type VerifyHashErrorType = IsAddressEqualErrorType | GetAddressErrorType | RecoverAddressErrorType | ErrorType; /** * Verify that a message was signed by the provided address. * * Note: Only supports Externally Owned Accounts. Does not support Contract Accounts. * It is highly recommended to use `publicClient.verifyHash` instead to ensure * wallet interoperability. * * - Docs {@link https://viem.sh/docs/utilities/verifyHash} * * @param parameters - {@link VerifyHashParameters} * @returns Whether or not the signature is valid. {@link VerifyHashReturnType} */ export declare function verifyHash({ address, hash, signature, }: VerifyHashParameters): Promise<VerifyHashReturnType>; //# sourceMappingURL=verifyHash.d.ts.map