From 8e21caa80421069194688b43c5aa294538803485 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20Van=C4=9Bk?= Date: Wed, 27 May 2026 07:30:03 +0200 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=A4=96=20Merge=20PR=20#75050=20[invit?= =?UTF-8?q?y-api]=20bitcoin=20swap=20config=20data=20by=20@FreeWall?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- types/invity-api/index.d.ts | 8 ++++++++ types/invity-api/invity-api-tests.ts | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/types/invity-api/index.d.ts b/types/invity-api/index.d.ts index aa9b5890311170..3473831d805f30 100644 --- a/types/invity-api/index.d.ts +++ b/types/invity-api/index.d.ts @@ -522,6 +522,14 @@ export interface Platforms { export interface InfoResponse { platforms: Platforms; coins: Coins; + config: { + btcSwapDummyData?: { + opreturn: { + dataHex: string; + }; + feePercentage: number; + }; + }; } // sell/voucher types diff --git a/types/invity-api/invity-api-tests.ts b/types/invity-api/invity-api-tests.ts index bafd986e51c0cb..374d6e020e48b8 100644 --- a/types/invity-api/invity-api-tests.ts +++ b/types/invity-api/invity-api-tests.ts @@ -98,6 +98,14 @@ const infoResponse: InfoResponse = { }, }, }, + config: { + btcSwapDummyData: { + opreturn: { + dataHex: 'abcd1234' + }, + feePercentage: 2 + } + } }; const exchangeProviderInfo: ExchangeProviderInfo = { From a6808a2f359d30122036546f7289e4b9bc841edd Mon Sep 17 00:00:00 2001 From: TypeScript Bot Date: Wed, 27 May 2026 05:31:23 +0000 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=A4=96=20dprint=20fmt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- types/invity-api/invity-api-tests.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/types/invity-api/invity-api-tests.ts b/types/invity-api/invity-api-tests.ts index 374d6e020e48b8..068d4817c52349 100644 --- a/types/invity-api/invity-api-tests.ts +++ b/types/invity-api/invity-api-tests.ts @@ -101,11 +101,11 @@ const infoResponse: InfoResponse = { config: { btcSwapDummyData: { opreturn: { - dataHex: 'abcd1234' + dataHex: "abcd1234", }, - feePercentage: 2 - } - } + feePercentage: 2, + }, + }, }; const exchangeProviderInfo: ExchangeProviderInfo = {