Skip to content

Commit

Permalink
Update naming
Browse files Browse the repository at this point in the history
  • Loading branch information
asgeir-s committed Nov 10, 2022
1 parent d2d24a7 commit b3ae579
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/factory/module_deployer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ type TxAndExpectedAddress = {
* Get the transaction for deploying a module proxy through the module factory.
* This will also initialize the module proxy by calling the setup function.
*
* @param contractName Name of the module to deploy (must be present in `KnownContracts`)
* @param moduleName Name of the module to deploy (must be present in `KnownContracts`)
* @param setupArgs The arguments for the setup function of the module
* @param provider
* @param chainId
* @param saltNonce
* @returns the transaction and the expected address of the module proxy
*/
export const deployAndSetUpModule = (
contractName: KnownContracts,
moduleName: KnownContracts,
setupArgs: {
types: Array<string>;
values: Array<any>;
Expand All @@ -39,7 +39,7 @@ export const deployAndSetUpModule = (
saltNonce: string
): TxAndExpectedAddress => {
const { moduleFactory, moduleMastercopy } = getModuleFactoryAndMasterCopy(
contractName,
moduleName,
provider,
chainId
);
Expand Down

0 comments on commit b3ae579

Please sign in to comment.