lightningdevkit
Version:
Lightning Development Kit
28 lines (27 loc) • 803 B
text/typescript
import { CommonBase } from './CommonBase.mjs';
/**
* Payee public key
*/
export declare class PayeePubKey extends CommonBase {
get_a(): Uint8Array;
set_a(val: Uint8Array): void;
/**
* Constructs a new PayeePubKey given each field
*/
static constructor_new(a_arg: Uint8Array): PayeePubKey;
clone_ptr(): bigint;
/**
* Creates a copy of the PayeePubKey
*/
clone(): PayeePubKey;
/**
* Generates a non-cryptographic 64-bit hash of the PayeePubKey.
*/
hash(): bigint;
/**
* Checks if two PayeePubKeys contain equal inner contents.
* This ignores pointers and is_owned flags and looks at the values in fields.
* Two objects with NULL inner values will be considered "equal" here.
*/
eq(b: PayeePubKey): boolean;
}