We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e40182 commit e223861Copy full SHA for e223861
examples/hello/tasks/callFromEVM.ts
@@ -49,7 +49,7 @@ const main = async (args: any, hre: HardhatRuntimeEnvironment) => {
49
);
50
51
const factory = (await hre.ethers.getContractFactory(args.name)) as any;
52
- const contract = factory.attach(args.contract);
+ const contract = factory.attach(args.contract).connect(signer);
53
54
const tx = await contract.gatewayCall(
55
args.receiver,
0 commit comments