From e4f0fd4d536e6c7775b6b88b99e22e5b0f474664 Mon Sep 17 00:00:00 2001 From: Mullapudi Pruthvik Date: Thu, 1 Aug 2024 15:49:12 +0530 Subject: [PATCH] fix(deploy): use v2 multiSig contracts for bsc Ticket: COIN-1296 We already have V4 multisig contracts deployed on bsc so planning to use multig as well for v2 --- scripts/deploy.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/deploy.ts b/scripts/deploy.ts index c488c9a..d38bda3 100644 --- a/scripts/deploy.ts +++ b/scripts/deploy.ts @@ -48,11 +48,11 @@ async function main() { case 56: // tbsc case 97: - walletImplementationContractName = 'RecoveryWalletSimple'; - walletFactoryContractName = 'RecoveryWalletFactory'; + walletImplementationContractName = 'WalletSimple'; + walletFactoryContractName = 'WalletFactory'; forwarderContractName = 'Forwarder'; forwarderFactoryContractName = 'ForwarderFactory'; - contractPath = `contracts/recoveryContracts/${walletImplementationContractName}.sol:${walletImplementationContractName}`; + contractPath = `contracts/${walletImplementationContractName}.sol:${walletImplementationContractName}`; break; // arbeth case 42161: