From 01cede1f4227b3c00c0591e22882511440161c52 Mon Sep 17 00:00:00 2001 From: Iulian Pascalau Date: Fri, 6 Feb 2026 11:48:12 +0200 Subject: [PATCH] - integrated crypto-payment v1.0.9 with credits contract v1.0.1 --- go.mod | 2 +- go.sum | 4 ++-- integrationTests/e2e_test.go | 2 +- integrationTests/framework/chainSimulatorWrapper.go | 2 +- integrationTests/framework/common.go | 2 +- integrationTests/framework/interface.go | 4 ++-- integrationTests/manual_flows_test.go | 2 +- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/go.mod b/go.mod index 8703ab7..0597c93 100644 --- a/go.mod +++ b/go.mod @@ -7,7 +7,7 @@ toolchain go1.24.11 require ( github.com/dchest/captcha v1.1.0 github.com/golang-jwt/jwt/v5 v5.3.0 - github.com/iulianpascalau/mx-crypto-payments v1.0.5 + github.com/iulianpascalau/mx-crypto-payments-go v1.0.9 github.com/joho/godotenv v1.5.1 github.com/mattn/go-sqlite3 v1.14.33 github.com/multiversx/mx-chain-core-go v1.4.1 diff --git a/go.sum b/go.sum index e98a03b..2ad3921 100644 --- a/go.sum +++ b/go.sum @@ -268,8 +268,8 @@ github.com/ipfs/go-test v0.0.4 h1:DKT66T6GBB6PsDFLoO56QZPrOmzJkqU1FZH5C9ySkew= github.com/ipfs/go-test v0.0.4/go.mod h1:qhIM1EluEfElKKM6fnWxGn822/z9knUGM1+I/OAQNKI= github.com/ipld/go-ipld-prime v0.21.0 h1:n4JmcpOlPDIxBcY037SVfpd1G+Sj1nKZah0m6QH9C2E= github.com/ipld/go-ipld-prime v0.21.0/go.mod h1:3RLqy//ERg/y5oShXXdx5YIp50cFGOanyMctpPjsvxQ= -github.com/iulianpascalau/mx-crypto-payments v1.0.5 h1:VuIssbSGLPvz9LDdtWVyF8qUMtl4ea7kgByra0epZAg= -github.com/iulianpascalau/mx-crypto-payments v1.0.5/go.mod h1:4/NVijzrXB9NswwfiG8QSV4KkolilWOCjcxIhpVFSUw= +github.com/iulianpascalau/mx-crypto-payments-go v1.0.9 h1:w5KmBFzrx4XxeJ2t56crTGcDthH9veMKtYt7ltN3WHY= +github.com/iulianpascalau/mx-crypto-payments-go v1.0.9/go.mod h1:W7bSzZiEQaG3iAAMMBP/5y5PWpIlXeY7d724Xa5SvGs= github.com/jackpal/go-nat-pmp v1.0.2 h1:KzKSgb7qkJvOUTqYl9/Hg/me3pWgBmERKrTGD7BdWus= github.com/jackpal/go-nat-pmp v1.0.2/go.mod h1:QPH045xvCAeXUZOxsnwmrtiCoxIr9eob+4orBN1SBKc= github.com/jbenet/go-cienv v0.1.0/go.mod h1:TqNnHUmJgXau0nCzC7kXWeotg3J9W34CUv5Djy1+FlA= diff --git a/integrationTests/e2e_test.go b/integrationTests/e2e_test.go index 9f3687a..5bdf629 100644 --- a/integrationTests/e2e_test.go +++ b/integrationTests/e2e_test.go @@ -8,7 +8,7 @@ import ( "testing" "time" - cryptoPaymentsFramework "github.com/iulianpascalau/mx-crypto-payments/integrationTests/framework" + cryptoPaymentsFramework "github.com/iulianpascalau/mx-crypto-payments-go/integrationTests/framework" "github.com/iulianpascalau/mx-epoch-proxy-go/integrationTests/framework" "github.com/multiversx/mx-chain-core-go/data/transaction" logger "github.com/multiversx/mx-chain-logger-go" diff --git a/integrationTests/framework/chainSimulatorWrapper.go b/integrationTests/framework/chainSimulatorWrapper.go index c3b356d..ab9eb3a 100644 --- a/integrationTests/framework/chainSimulatorWrapper.go +++ b/integrationTests/framework/chainSimulatorWrapper.go @@ -10,7 +10,7 @@ import ( "testing" "time" - cryptoPaymentsFramework "github.com/iulianpascalau/mx-crypto-payments/integrationTests/framework" + cryptoPaymentsFramework "github.com/iulianpascalau/mx-crypto-payments-go/integrationTests/framework" "github.com/multiversx/mx-chain-core-go/core" "github.com/multiversx/mx-chain-core-go/core/pubkeyConverter" apiCore "github.com/multiversx/mx-chain-core-go/data/api" diff --git a/integrationTests/framework/common.go b/integrationTests/framework/common.go index 9971b1a..5f9fa6a 100644 --- a/integrationTests/framework/common.go +++ b/integrationTests/framework/common.go @@ -5,7 +5,7 @@ import ( "runtime" "testing" - cryptoPaymentsFramework "github.com/iulianpascalau/mx-crypto-payments/integrationTests/framework" + cryptoPaymentsFramework "github.com/iulianpascalau/mx-crypto-payments-go/integrationTests/framework" "github.com/stretchr/testify/require" ) diff --git a/integrationTests/framework/interface.go b/integrationTests/framework/interface.go index 31be288..6faa830 100644 --- a/integrationTests/framework/interface.go +++ b/integrationTests/framework/interface.go @@ -3,8 +3,8 @@ package framework import ( "context" - "github.com/iulianpascalau/mx-crypto-payments/factory" - "github.com/iulianpascalau/mx-crypto-payments/process" + "github.com/iulianpascalau/mx-crypto-payments-go/factory" + "github.com/iulianpascalau/mx-crypto-payments-go/process" proxyApi "github.com/iulianpascalau/mx-epoch-proxy-go/services/proxy/api" proxyFactory "github.com/iulianpascalau/mx-epoch-proxy-go/services/proxy/factory" "github.com/multiversx/mx-chain-core-go/data/api" diff --git a/integrationTests/manual_flows_test.go b/integrationTests/manual_flows_test.go index 070f858..c83ff1a 100644 --- a/integrationTests/manual_flows_test.go +++ b/integrationTests/manual_flows_test.go @@ -7,7 +7,7 @@ import ( "testing" "time" - cryptoPaymentsFramework "github.com/iulianpascalau/mx-crypto-payments/integrationTests/framework" + cryptoPaymentsFramework "github.com/iulianpascalau/mx-crypto-payments-go/integrationTests/framework" "github.com/iulianpascalau/mx-epoch-proxy-go/integrationTests/framework" logger "github.com/multiversx/mx-chain-logger-go" "github.com/stretchr/testify/assert"