From 5df584b75024ae95dbd8406cb0761890e14ce97b Mon Sep 17 00:00:00 2001 From: IshaVenikar Date: Thu, 15 Feb 2024 13:49:43 +0530 Subject: [PATCH] Create addAccount function --- utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils.ts b/utils.ts index e8563a6..82ef69a 100644 --- a/utils.ts +++ b/utils.ts @@ -122,7 +122,7 @@ const addAccount = async (network: string): Promise => { indices, ); - return { pubKey, address, id }; + return { id, pubKey, address }; } catch (error) { console.error('Error creating account:', error); }