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 9733011 commit 5757758Copy full SHA for 5757758
contracts/deployment-config/ECDSAConsumer.json
contracts/script/ECDSAConsumer.s.sol
@@ -39,13 +39,7 @@ contract ECDSAConsumerScript is Script {
39
}
40
41
42
- function run() external broadcast {
43
- string memory config = vm.readFile(configPath);
44
-
45
- IKeystoreValidator validator = IKeystoreValidator(config.readAddress(".keystoreValidator"));
46
- validator.deployAndRegisterKeyDataConsumer(type(ECDSAConsumer).creationCode);
47
48
- console.log("Consumer creation codehash");
49
- console2.logBytes32(keccak256(type(ECDSAConsumer).creationCode));
+ function run() external broadcast returns (ECDSAConsumer consumer) {
+ consumer = new ECDSAConsumer();
50
51
0 commit comments