From 04a4d3ad93da83c1839e747b8010a8f757bf6b2c Mon Sep 17 00:00:00 2001 From: Daniela Chybisova Date: Fri, 7 Jun 2024 14:20:08 +0200 Subject: [PATCH] chore: add optional allowDestinationCall param to connections request (#248) --- src/api.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/api.ts b/src/api.ts index 01f238d8..ac5cf3d1 100644 --- a/src/api.ts +++ b/src/api.ts @@ -271,6 +271,7 @@ export interface ConnectionsRequest extends ToolConfiguration { toChain?: number | string toToken?: string allowSwitchChain?: boolean // (default: true) the connections that require chain switch (muiltiple signatures) are included by default + allowDestinationCall?: boolean // (default: true) the connections that includes destination calls are included by default chainTypes?: ChainType[] }