File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -161,7 +161,7 @@ const config: HardhatUserConfig = {
161161 opBNB : {
162162 url : `https://opbnb-mainnet-rpc.bnbchain.org` ,
163163 accounts : [
164- `${ MAINNET_PRIVATE_KEY_FOR_CONTRACT_DEPLOYMENT } ` ,
164+ `${ PRIVATE_KEY_FOR_V4_CONTRACT_DEPLOYMENT } ` ,
165165 `${ PLACEHOLDER_KEY } ` ,
166166 `${ PRIVATE_KEY_FOR_BATCHER_CONTRACT_DEPLOYMENT } `
167167 ]
@@ -789,7 +789,7 @@ const config: HardhatUserConfig = {
789789 ftm : {
790790 url : `https://rpcapi.fantom.network` ,
791791 accounts : [
792- `${ PRIVATE_KEY_FOR_V4_CONTRACT_DEPLOYMENT } ` ,
792+ `${ MAINNET_PRIVATE_KEY_FOR_CONTRACT_DEPLOYMENT } ` ,
793793 `${ PLACEHOLDER_KEY } ` ,
794794 `${ PRIVATE_KEY_FOR_BATCHER_CONTRACT_DEPLOYMENT } `
795795 ]
Original file line number Diff line number Diff line change @@ -72,13 +72,13 @@ export async function getChainConfig(chainId: number): Promise<ChainConfig> {
7272 break ;
7373 case CHAIN_IDS . opBNB_TESTNET :
7474 case CHAIN_IDS . opBNB :
75- forwarderContractName = 'Forwarder ' ;
76- forwarderFactoryContractName = 'ForwarderFactory ' ;
75+ forwarderContractName = 'ForwarderV4 ' ;
76+ forwarderFactoryContractName = 'ForwarderFactoryV4 ' ;
7777 contractPath = `contracts/${ walletImplementationContractName } .sol:${ walletImplementationContractName } ` ;
7878 break ;
7979 case CHAIN_IDS . ftm :
80- forwarderContractName = 'ForwarderV4 ' ;
81- forwarderFactoryContractName = 'ForwarderFactoryV4 ' ;
80+ forwarderContractName = 'Forwarder ' ;
81+ forwarderFactoryContractName = 'ForwarderFactory ' ;
8282 contractPath = `contracts/${ walletImplementationContractName } .sol:${ walletImplementationContractName } ` ;
8383 break ;
8484
You can’t perform that action at this time.
0 commit comments