Skip to content

Commit

Permalink
fix: deploy
Browse files Browse the repository at this point in the history
Signed-off-by: GopherJ <[email protected]>
  • Loading branch information
GopherJ committed Aug 31, 2023
1 parent 4c4210c commit fdf7a54
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 4 additions & 4 deletions helpers/contracts-deployments.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1601,14 +1601,14 @@ export const deployWETHGateway = async (

export const deployWETHGatewayProxy = async (
admin: string,
wethGateway: string,
impl: string,
initData: string,
verify?: boolean
) =>
withSaveAndVerify(
await getContractFactory("InitializableImmutableAdminUpgradeabilityProxy"),
eContractid.WETHGatewayProxy,
[admin, wethGateway, initData],
[admin, impl, initData],
verify,
true
) as Promise<InitializableImmutableAdminUpgradeabilityProxy>;
Expand Down Expand Up @@ -3161,14 +3161,14 @@ export const deployAccountRegistry = async (

export const deployAccountRegistryProxy = async (
admin: string,
accountRegistry: string,
impl: string,
initData: string,
verify?: boolean
) =>
withSaveAndVerify(
await getContractFactory("InitializableImmutableAdminUpgradeabilityProxy"),
eContractid.AccountRegistryProxy,
[admin, accountRegistry, impl],
[admin, impl, initData],
verify,
true
) as Promise<InitializableImmutableAdminUpgradeabilityProxy>;
Expand Down
1 change: 1 addition & 0 deletions scripts/deployments/steps/24_accountAbstraction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ export const step_24 = async (verify = false) => {
paraSpaceConfig.ParaSpaceAdmin ||
(await (await getFirstSigner()).getAddress()),
accountRegistry.address,
"0x",
verify
);

Expand Down

0 comments on commit fdf7a54

Please sign in to comment.