mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-22 06:47:57 +00:00
16 lines
460 B
TypeScript
16 lines
460 B
TypeScript
/**
|
|
* @name addressEq
|
|
* @summary Compares two addresses, either in ss58, Uint8Array or hex format.
|
|
* @description
|
|
* For the input values, return true is the underlying public keys do match.
|
|
* @example
|
|
* <BR>
|
|
*
|
|
* ```javascript
|
|
* import { u8aEq } from '@pezkuwi/util';
|
|
*
|
|
* u8aEq(new Uint8Array([0x68, 0x65]), new Uint8Array([0x68, 0x65])); // true
|
|
* ```
|
|
*/
|
|
export declare function addressEq(a: string | Uint8Array, b: string | Uint8Array): boolean;
|