Skip to content

Commit

Permalink
any
Browse files Browse the repository at this point in the history
  • Loading branch information
fadeev committed Dec 6, 2024
1 parent 354868e commit 33f7eda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/swap/tasks/deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const main = async (args: any, hre: HardhatRuntimeEnvironment) => {
const factory = await hre.ethers.getContractFactory(args.name);

const contract = await hre.upgrades.deployProxy(
factory,
factory as any,
[args.gateway, args.uniswapRouter, args.gasLimit, signer.address],
{ kind: "uups" }
);
Expand Down

0 comments on commit 33f7eda

Please sign in to comment.