From 694b977baa5679e53507a327b884217bfd524790 Mon Sep 17 00:00:00 2001 From: steven Date: Fri, 22 Nov 2024 09:12:29 -0500 Subject: [PATCH] chore: update readme for hw upgrade example --- package.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package.json b/package.json index 3870830a..cf4cd6b1 100644 --- a/package.json +++ b/package.json @@ -10,6 +10,8 @@ "deploy:hello-world": "cd contracts && forge script script/HelloWorldDeployer.s.sol --rpc-url http://localhost:8545 --broadcast", "deploy:core-debug": "cd contracts && forge script script/DeployEigenLayerCore.s.sol --rpc-url http://localhost:8545 --broadcast --revert-strings debug", "deploy:hello-world-debug": "cd contracts && forge script script/HelloWorldDeployer.s.sol --rpc-url http://localhost:8545 --broadcast --revert-strings debug", + "upgrade:hello-world": "cd contracts && forge script script/ExampleUpgrade.s.sol --rpc-url http://localhost:8545 --broadcast", + "upgrade:hello-world-debug": "cd contracts && forge script script/HelloWorldDeployer.s.sol --rpc-url http://localhost:8545 --broadcast --revert-strings debug", "build": "cd contracts && forge build", "extract:abis": "node utils/abis.js", "test": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" npx jest"