Represents information about what strategy was used to create an account

interface Strategy {
    getRegistrationDetails(connection, keyStore): Promise<RegistrationDetails>;
}

Methods

  • Fetches the details with which a certain account was registered

    Parameters

    • connection: Connection

      connection to the blockchain on which the account is registered

    • keyStore: KeyStore

      keystore which holds the main key of the account

    Returns Promise<RegistrationDetails>