From 44018c51d4f9ba03483909416dfd8b32e5ffd0ca Mon Sep 17 00:00:00 2001 From: Jiahui Hu Date: Wed, 20 Nov 2024 12:32:31 -0500 Subject: [PATCH] add funding_methid to post request (#174) --- @stellar/anchor-tests/package.json | 2 +- @stellar/anchor-tests/src/tests/sep31And38/transactions.ts | 1 + server/package.json | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/@stellar/anchor-tests/package.json b/@stellar/anchor-tests/package.json index 92cf86e..38b8a5e 100644 --- a/@stellar/anchor-tests/package.json +++ b/@stellar/anchor-tests/package.json @@ -1,6 +1,6 @@ { "name": "@stellar/anchor-tests", - "version": "0.6.17", + "version": "0.6.18", "description": "stellar-anchor-tests is a library and command line interface for testing Stellar anchors.", "main": "./lib/index.js", "types": "./lib/index.d.ts", diff --git a/@stellar/anchor-tests/src/tests/sep31And38/transactions.ts b/@stellar/anchor-tests/src/tests/sep31And38/transactions.ts index 45756ee..83516a7 100644 --- a/@stellar/anchor-tests/src/tests/sep31And38/transactions.ts +++ b/@stellar/anchor-tests/src/tests/sep31And38/transactions.ts @@ -103,6 +103,7 @@ const canCreateTransaction: Test = { amount: 100, asset_code: splitAsset[1], quote_id: this.context.expects.sep38QuoteResponseObj.id, + funding_method: "SEPA", fields: { transaction: { ...config.sepConfig["31"].transactionFields, diff --git a/server/package.json b/server/package.json index 2d7b2a3..a532ecb 100644 --- a/server/package.json +++ b/server/package.json @@ -30,6 +30,6 @@ "winston": "^3.3.3" }, "peerDependencies": { - "@stellar/anchor-tests": "0.6.17" + "@stellar/anchor-tests": "0.6.18" } }