UNPKG

@stellar/stellar-sdk

Version:

A library for working with the Stellar network, including communication with the Horizon and Soroban RPC servers.

8 lines (7 loc) 285 B
/** * Returns true if the two byte arrays are equal (used for CRC16 checksum verification). * * @param expected - the expected checksum bytes * @param actual - the actual checksum bytes */ export declare function verifyChecksum(expected: Uint8Array, actual: Uint8Array): boolean;