*\r
* @param {string} address - Address of the account\r
* @param {number} [index] - Account number used when deriving the address\r
- * @returns {Promise<Account>} The instantiated Account object\r
+ * @returns {Account} The instantiated Account object\r
*/\r
static fromAddress (address: string, index?: number): Account {\r
Account.#isInternal = true\r
*\r
* @param {string} publicKey - Public key of the account\r
* @param {number} [index] - Account number used when deriving the key\r
- * @returns {Promise<Account>} The instantiated Account object\r
+ * @returns {Account} The instantiated Account object\r
*/\r
static fromPublicKey (publicKey: string, index?: number): Account {\r
Account.#isInternal = true\r
*\r
* @param {string} privateKey - Private key of the account\r
* @param {number} [index] - Account number used when deriving the key\r
- * @returns {Promise<Account>} A new Account object\r
+ * @returns {Account} A new Account object\r
*/\r
static fromPrivateKey (privateKey: string, index?: number): Account {\r
Account.#isInternal = true\r
* @param {string} publicKey - Public key of the account\r
* @param {string} privateKey - Private key of the account\r
* @param {number} [index] - Account number used when deriving the key\r
- * @returns {Promise<Account>} The instantiated Account object\r
+ * @returns {Account} The instantiated Account object\r
*/\r
static fromKeypair (publicKey: string, privateKey: string, index?: number): Account {\r
Account.#isInternal = true\r