XYO Platform SDK - v3.10.6
    Preparing search index...

    Interface AccountStatic<T, C>

    interface AccountStatic<
        T extends AccountInstance = AccountInstance,
        C extends AccountConfig = AccountConfig,
    > {
        previousHashStore?: PreviousHashStore;
        create(options?: C): Promise<T>;
        fromPrivateKey(
            key: string | bigint | ArrayBufferLike,
        ): Promise<AccountInstance>;
        random(): Promise<AccountInstance>;
    }

    Type Parameters

    Index

    Properties

    previousHashStore?: PreviousHashStore

    Methods

    • Parameters

      • Optionaloptions: C

      Returns Promise<T>