salt-sdk
    Preparing search index...

    Interface Account

    Represents an account creation process.

    interface Account {
        getAccountId(): string;
        getSignersStatuses(): Record<string, SignerStatus>;
        init(): Promise<void>;
        signalCompletion(): boolean;
        waitForCompletion(): Promise<void>;
    }
    Index

    Methods

    • signal work on this account is complete, can be called to terminate process prematurely

      Returns boolean

    • Wait for the account setup to complete

      Returns Promise<void>