From c5df0315af8d8e8b386c20154fc1502b8d80e650 Mon Sep 17 00:00:00 2001 From: danielailie Date: Wed, 23 Oct 2024 10:34:56 +0300 Subject: [PATCH] Clean up relay v3 --- src/controllers/relayedController.ts | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/src/controllers/relayedController.ts b/src/controllers/relayedController.ts index 97330cd7..93d2847a 100644 --- a/src/controllers/relayedController.ts +++ b/src/controllers/relayedController.ts @@ -50,20 +50,4 @@ export class RelayedController { return transaction; } - - async createRelayedV3Transaction( - sender: IAccount, - nonce: bigint, - innerTransactions: ITransaction[], - ): Promise { - const transaction = this.factory.createRelayedV3Transaction({ - relayerAddress: sender.address, - innerTransactions, - }); - - transaction.nonce = nonce; - transaction.signature = await sender.sign(this.txComputer.computeBytesForSigning(transaction)); - - return transaction; - } }