From 13e36f6b7db78c55b2301a608bca57c285e1817f Mon Sep 17 00:00:00 2001 From: pranavjadhav007 Date: Mon, 30 Jun 2025 09:17:02 +0530 Subject: [PATCH] Fix the window function parameters --- src/global.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/global.d.ts b/src/global.d.ts index aa6c82e..e3611ef 100644 --- a/src/global.d.ts +++ b/src/global.d.ts @@ -38,7 +38,7 @@ declare global { receiveTransferRequestFromAndroid?: (to: string, amount: string, namespace: String, chainId: string, memo: string) => void; // Handles account creation requests from Android - receiveGetOrCreateAccountFromAndroid?: (namespace: string, chainId: string) => void; + receiveGetOrCreateAccountFromAndroid?: (chainId: string) => void; } }