apostille-library
Version:
A novel & holistic blockchain notarization and timestamping with transferable, updatable, branded, and conjointly owned notarizations.
11 lines (10 loc) • 540 B
TypeScript
import { Account, PublicAccount } from 'nem2-sdk';
import { IReadyTransaction } from '../../infrastructure/ApostilleHttp';
import { ApostillePublicAccount } from './ApostillePublicAccount';
export declare class Apostille extends ApostillePublicAccount {
readonly HDAccount: Account;
static initFromSeed(seed: string, generatorAccount: Account): Apostille;
constructor(HDAccount: Account);
associate(owners: PublicAccount[], quorumDelta: number, minRemovalDelta: number): IReadyTransaction;
private readonly initiator;
}