@avalanche-sdk/client
Version:
A TypeScript SDK for interacting with the Avalanche network through JSON-RPC APIs. This SDK provides a comprehensive set of tools to interact with all Avalanche chains (P-Chain, X-Chain, C-Chain) and various APIs, including wallet functionality for transa
10 lines • 404 B
TypeScript
/**
* Verifies a signature.
*
* @param signature - The signature to verify.
* @param message - The message that was signed.
* @param publicKey - The public key to verify with.
* @returns A boolean indicating whether the signature is valid.
*/
export declare function xpVerifySignature(signature: string, message: string, publicKey: string): boolean;
//# sourceMappingURL=xpVerifySignature.d.ts.map