From b73d125b9be55ec0771e70caf7928c888fe1515d Mon Sep 17 00:00:00 2001 From: jxom <7336481+jxom@users.noreply.github.com> Date: Tue, 7 Jan 2025 12:45:11 +1100 Subject: [PATCH] up --- ERCS/erc-7846.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ERCS/erc-7846.md b/ERCS/erc-7846.md index 7bb67556a6..bcbe752f23 100644 --- a/ERCS/erc-7846.md +++ b/ERCS/erc-7846.md @@ -28,10 +28,10 @@ This is especially evident in the case of attempting to batch connection with au Requests to connect account(s) with optional capabilities. -##### Parameters +##### Request ```ts -type Parameters = { +type Request = { method: 'wallet_connect', params: [{ // JSON-RPC method version. @@ -95,10 +95,10 @@ Disconnects connected account(s). - The wallet SHOULD revoke any capabilities associated with the account(s) that were granted upon connection via `wallet_connect`. -##### Parameters +##### Request ```ts -type Parameters = { +type Request = { method: 'wallet_disconnect' } ```