Skip to content

Commit

Permalink
fix(deploy): use v2 multiSig contracts for bsc
Browse files Browse the repository at this point in the history
Ticket: COIN-1296

We already have V4 multisig contracts deployed on bsc
so planning to use multig as well for v2
  • Loading branch information
mullapudipruthvik committed Aug 1, 2024
1 parent 9f5939e commit e4f0fd4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit e4f0fd4

Please sign in to comment.