@orangecheck/pledge-core / VerifyBip322
Type Alias: VerifyBip322
type VerifyBip322 = (msg: string, signatureB64: string, address: string) => Promise<boolean>;
Defined in: pledge-core/src/types.ts:270
Caller-supplied BIP-322 verifier. Returns true iff the signature verifies
under the named address over the UTF-8 bytes of msg.
Parameters
| Parameter | Type |
|---|---|
msg | string |
signatureB64 | string |
address | string |
Returns
Promise<boolean>