-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Use Command objects as keys instead of ints * Add test for commands not in the planner, and refactor plan method * Refactor to permit recursion more easily * Lint changes * Implement subplanners * Format * === instead of == * Add docs on subplans * Support read-only subcommands * Support read-only subcommands * Read-only subplans don't update the state * Read-only subplans don't update the state * Update README * Lockfile Co-authored-by: Jeff Reiner <[email protected]>
- Loading branch information
Showing
7 changed files
with
13,319 additions
and
1,116 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -69,7 +69,6 @@ | |
"typescript": "^4.3.3" | ||
}, | ||
"dependencies": { | ||
"ethers": "^5.3.1", | ||
"heap-js": "^2.1.5" | ||
"ethers": "^5.3.1" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,5 @@ export { | |
ContractFunction, | ||
FunctionCall, | ||
Value, | ||
LiteralValue, | ||
ReturnValue, | ||
Planner, | ||
} from './planner'; |
Oops, something went wrong.