From 8516afe2102dd6e98b60ff4cfa8e3172a4a21312 Mon Sep 17 00:00:00 2001 From: sadiabbasi Date: Fri, 19 Dec 2025 11:54:51 +0300 Subject: [PATCH] fix: :zap: fixed communication service --- src/communication/communication.service.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/communication/communication.service.ts b/src/communication/communication.service.ts index afe938e..ab05cf6 100644 --- a/src/communication/communication.service.ts +++ b/src/communication/communication.service.ts @@ -21,6 +21,7 @@ import { waitForTonomyTrxFinalization, sendSafeWalletTransfer, createAntelopeDid, + getSigner, } from '@tonomy/tonomy-id-sdk'; import { tonomySigner } from '../signer'; import { ethers } from 'ethers'; @@ -207,7 +208,8 @@ export class CommunicationService { `[Swap T->B: ${loggerId}]: Safe wallet transfer to Base address ${baseAddress} submitted with transaction hash ${trxHash}`, ); } else { - const mintTrx = await getBaseTokenContract().transfer( + const signer = getSigner(); + const mintTrx = await getBaseTokenContract(signer).transfer( baseAddress, ethAmount, );