Skip to content

Commit b9a174c

Browse files
committed
Latest changes for L1 mainnet deploy
1 parent a69de26 commit b9a174c

File tree

12 files changed

+46
-11
lines changed

12 files changed

+46
-11
lines changed

scripts/contract.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ export async function deployContract(
6262
constructorArgs: Array<string | undefined>): Promise<Contract> {
6363
const contractFactory: ContractFactory = await newContractFactory(walletsOptions.getWallet(), contractName);
6464
const contract: Contract = await contractFactory.connect(walletsOptions.getWallet()).deploy(...constructorArgs, {
65-
gasLimit: 30000000,
66-
maxFeePerGas: 10000000000,
67-
maxPriorityFeePerGas: 10000000000,
65+
gasLimit: 100000,
66+
maxFeePerGas: 30000000000,
67+
maxPriorityFeePerGas: 1000000000,
6868
});
6969
console.log(`[${env.network}] Deployed ${contractName} to ${contract.address}`);
7070
return contract;
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"multiCallAdminPubKey": "0x0E2D55943f4EF07c336C12A85d083c20FF189182",
3+
"multiCallDeploy": "0x9129211efEcAf4A1cD76104f5A4082220a783078",
4+
"submitterAddress": "0xa45a81EA5AE3ad978C176A6E54e41Df1cff4DF3a"
5+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"factoryAdminPubKey": "0x0E2D55943f4EF07c336C12A85d083c20FF189182",
3+
"multiCallDeploy": "0x9129211efEcAf4A1cD76104f5A4082220a783078",
4+
"factory": "0x8Fa5088dF65855E0DaF87FA6591659893b24871d"
5+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"walletImplLocatorAdmin": "0x0E2D55943f4EF07c336C12A85d083c20FF189182",
3+
"walletImplChangerAdmin": "0x0E2D55943f4EF07c336C12A85d083c20FF189182",
4+
"latestWalletImplLocator": "0xDB4b8F9D2C0C731A345a405b6335b3750d197b6C"
5+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"walletImplLocatorAddress": "0xDB4b8F9D2C0C731A345a405b6335b3750d197b6C",
3+
"startupWalletImpl": "0x8FD900677aabcbB368e0a27566cCd0C7435F1926"
4+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"factoryAddress": "0x8Fa5088dF65855E0DaF87FA6591659893b24871d",
3+
"startupWalletImplAddress": "0x8FD900677aabcbB368e0a27566cCd0C7435F1926",
4+
"mainModuleDynamicAuth": "0xC2d54E4D795469f8616612CC343af078A892F36F"
5+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"signerRootAdminPubKey": "0x0E2D55943f4EF07c336C12A85d083c20FF189182",
3+
"signerAdminPubKey": "0x3aF5DE2846aB3195BCD7b8880483E63D21261c49",
4+
"signerAddress": "0x71639470D21D69456D6e98e7Cc877ABA671ab7fA",
5+
"immutableSigner": "0xcff469E561D9dCe5B1185CD2AC1Fa961F8fbDe61"
6+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"mainModuleDynamicAuth": "0xC2d54E4D795469f8616612CC343af078A892F36F",
3+
"walletImplLocatorContractAddress": "0xDB4b8F9D2C0C731A345a405b6335b3750d197b6C",
4+
"signerAddress": "0x71639470D21D69456D6e98e7Cc877ABA671ab7fA"
5+
}

scripts/step1.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ async function step1(): Promise<EnvironmentInfo> {
1717
const env = loadEnvironmentInfo(hre.network.name);
1818
const { network } = env;
1919
const factoryAdminPubKey = process.env.FACTORY_ADMIN_PUB_KEY;
20-
const multiCallDeployAddress = 'CHANGE_ME';
20+
const multiCallDeployAddress = '0x9129211efEcAf4A1cD76104f5A4082220a783078';
2121

2222
console.log(`[${network}] Starting deployment...`);
2323
console.log(`[${network}] factoryAdminPubKey ${factoryAdminPubKey}`);

scripts/step3.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import { waitForInput } from './helper-functions';
1111
async function step3(): Promise<EnvironmentInfo> {
1212
const env = loadEnvironmentInfo(hre.network.name);
1313
const { network } = env;
14-
const walletImplLocatorAddress = '0x889b5e1B25351AB543bf6D81bFD0777EA02EC879';
14+
const walletImplLocatorAddress = '0xDB4b8F9D2C0C731A345a405b6335b3750d197b6C';
1515

1616
console.log(`[${network}] Starting deployment...`);
1717
console.log(`[${network}] WalletImplLocator address ${walletImplLocatorAddress}`);

0 commit comments

Comments
 (0)