UNPKG

@btc-vision/transaction

Version:

OPNet transaction library allows you to create and sign transactions for the OPNet network.

16 lines 516 B
import { Address } from '../keypair/Address.js'; export declare class AddressSet implements Disposable { private items; private keys; constructor(keys?: Address[]); get size(): number; add(address: Address): void; has(address: Address): boolean; remove(address: Address): void; clone(): AddressSet; clear(): void; [Symbol.dispose](): void; combine(set: AddressSet): AddressSet; [Symbol.iterator](): IterableIterator<Address>; } //# sourceMappingURL=AddressSet.d.ts.map