Skip to content

Commit

Permalink
initial commit (#78)
Browse files Browse the repository at this point in the history
  • Loading branch information
wesfloyd authored Oct 3, 2024
1 parent 367d8c4 commit 87298cc
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 22 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ For help and support deploying and modifying this repo for your AVS, please:
1. Open a ticket via the intercom link at [support.eigenlayer.xyz](https://support.eigenlayer.xyz).
2. Include the necessary troubleshooting information for your environment:
* Local anvil testing:
* Recompile the contracts with the `--revert-strings debug` flag. Deploy the contracts again and retest.
* Redeploy your local test using `--revert-strings debug` flag via the following commands and retest: `npm run deploy:core-debug && npm run deploy:hello-world-debug`
* Include the full stacktrace from your error as a .txt file attachment.
* Create a minimal repo that demonstrates the behavior (fork or otherwise)
* Steps require to reproduce issue (compile and cause the error)
Expand Down
39 changes: 19 additions & 20 deletions abis/HelloWorldServiceManager.json
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,25 @@
"internalType": "string"
}
],
"outputs": [],
"outputs": [
{
"name": "",
"type": "tuple",
"internalType": "struct IHelloWorldServiceManager.Task",
"components": [
{
"name": "name",
"type": "string",
"internalType": "string"
},
{
"name": "taskCreatedBlock",
"type": "uint32",
"internalType": "uint32"
}
]
}
],
"stateMutability": "nonpayable"
},
{
Expand Down Expand Up @@ -199,25 +217,6 @@
],
"stateMutability": "view"
},
{
"type": "function",
"name": "operatorHasMinimumWeight",
"inputs": [
{
"name": "operator",
"type": "address",
"internalType": "address"
}
],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "view"
},
{
"type": "function",
"name": "owner",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"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",
"build": "cd contracts && forge build",
"extract:abis": "npm run build && node utils/abis.js"
"extract:abis": "node utils/abis.js"
},
"dependencies": {
"dotenv": "^10.0.0",
Expand Down

0 comments on commit 87298cc

Please sign in to comment.