Skip to content

Commit

Permalink
chore: update generate abi script
Browse files Browse the repository at this point in the history
  • Loading branch information
Atlasoin committed Oct 28, 2024
1 parent cb65e8a commit 5edac83
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@webisopen/ovm-contracts",
"license": "MIT",
"version": "1.0.0",
"version": "1.1.0",
"devDependencies": {
"husky": "^8.0.3",
"solhint": "^5.0.3"
Expand Down
2 changes: 1 addition & 1 deletion src/libraries/DataTypes.sol
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ struct Specification {
// to call, e.g. " [{"request":"calculate(uint256)","getResponse":"getResponse(uint256)"}]"
Arch arch; // architecture of the computing task, e.g. x86_64, arm64
ExecMode execMode; // how the computing task should be executed in the worker node, JIT or
// PERSISTENT
// PERSISTENT
}

struct Commitment {
Expand Down
2 changes: 1 addition & 1 deletion tools/generateABI.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ABI_DIR=./deployments/abi/

forge build --silent

for contract in OVMClient OVMTasks PI
for contract in OVMClient OVMTasks
do
# extract abi and bin files
forge inspect ${contract} abi > ${ABI_DIR}/${contract}.abi
Expand Down

0 comments on commit 5edac83

Please sign in to comment.