Skip to content

Commit

Permalink
Merge branch 'nikola-bozin-txfusion-upgradable-interface-update' into…
Browse files Browse the repository at this point in the history
… beta
  • Loading branch information
kiriyaga committed Aug 28, 2024
2 parents 2b11e24 + 438e834 commit 592d6c7
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions packages/hardhat-zksync-upgradable/src/utils/options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ import {
withValidationDefaults,
} from '@openzeppelin/upgrades-core';

import { DeploymentType } from 'zksync-ethers/build/types';
import { BytesLike } from 'ethers';
import { DeploymentType, PaymasterParams } from 'zksync-ethers/build/types';
import { LOCAL_SETUP_ZKSYNC_NETWORK } from '../constants';

export type StandaloneOptions<TRequiredSeperateForProxy extends boolean | undefined = true | undefined> =
Expand All @@ -28,14 +27,14 @@ export type CustomDataOptions<TRequiredSeperateForProxy extends boolean | undefi
deploymentTypeProxy?: DeploymentType;
saltImpl?: string;
saltProxy?: string;
paymasterImplParams?: BytesLike;
paymasterProxyParams?: BytesLike;
paymasterImplParams?: PaymasterParams;
paymasterProxyParams?: PaymasterParams;
}
: {
otherCustomData?: any;
deploymentType?: DeploymentType;
salt?: string;
paymasterParams?: BytesLike;
paymasterParams?: PaymasterParams;
};

export type UpgradeOptions<TRequiredSeperateForProxy extends boolean | undefined = true | undefined> =
Expand Down

0 comments on commit 592d6c7

Please sign in to comment.