-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Complete Aurora CLI Engine methods #2
Merged
Merged
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
44700e5
add comments on missing engine methods with read/write way
hskang9 845d05f
add getter method to aurora-engine
hskang9 141bed3
update .gitignore
hskang9 c093345
remove .DS_Store
hskang9 73321c1
add rjson type serialization
hskang9 38f08f2
add setter functions
hskang9 a9be537
remove deposit as bridge only should be allowed to use it
hskang9 e0f9301
update README
hskang9 05c1c12
update get_account_counter
hskang9 d486eb5
update get_account_counter
hskang9 54d129f
update get_engine_bridge_prover
hskang9 8656f75
Complete engine methods
hskang9 2455bc4
Merge remote-tracking branch 'origin/main' into main
hskang9 b7579dc
remove unused engine methods
hskang9 0b658bc
remove unused methods and types
hskang9 46f61fd
add block number input in get_block_hash
hskang9 26a6499
hex encode result from get_storage_at
hskang9 ca5b645
add aurora cli logo imgs
hskang9 246a9e0
update README
hskang9 29cf7f4
update README
hskang9 95ba1b7
update codes for review
hskang9 605efac
update README
hskang9 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
/target | ||
.DS_Store |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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 |
---|---|---|
@@ -1,5 +1,36 @@ | ||
# `aurora-cli-rs` | ||
<p> </p> | ||
<p align="center"> | ||
<img src="https://raw.githubusercontent.com/hskang9/aurora-cli-rs/main/img/aurora-cli-logo.png" width=500> | ||
</p> | ||
|
||
A command-line interface for interacting with [Aurora](https://aurora.dev/). | ||
<p align="center"> | ||
<strong>An instant, zero-config Aurora engine operator</strong> | ||
</p> | ||
|
||
See also prior art [aurora-cli](https://github.com/aurora-is-near/aurora-cli). | ||
<br/> | ||
|
||
## What is Engine? | ||
|
||
[Aurora](https://doc.aurora.dev/getting-started/aurora-engine/) is an Ethereum Virtual Machine (EVM) project built on the NEAR Protocol, that provides a solution for developers to deploy their apps on an Ethereum-compatible, high-throughput, scalable and future-safe platform, with low transaction costs for their users. Engine is the Aurora's implementation for it. | ||
|
||
## What is Aurora CLI? | ||
Aurora CLI is a command line interface to bootstrap Aurora engine with rapid speed built with rust. | ||
|
||
Aurora CLI comes preconfiguration with opinionated, sensible defaults for standard testing environments. If other projects mention testing on Aurora, they are referring to the settings defined in this repo. | ||
|
||
**Aurora CLI has the following advantages over api:** | ||
|
||
- :pencil: **Easily modifiable EVM states through terminal** | ||
- :handshake: **Quick to interact for rapid iterations** | ||
|
||
See also prior version [aurora-cli](https://github.com/aurora-is-near/aurora-cli). | ||
|
||
## Prerequisites | ||
- :crab: Rust | ||
|
||
## Quickstart | ||
|
||
- 📦 Install `aurora-cli-rs` and start interacting with it: | ||
*`cargo install --git https://github.com/aurora-is-near/aurora-cli-rs.git`* | ||
- 🔍 Check out what each command is for in the official Aurora [docs](https://doc.aurora.dev/tools/aurora-cli) | ||
- ✋ Have questions? Ask them at the official Aurora [forum](https://forum.aurora.dev/) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
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
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
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Noting dependency on aurora-is-near/doc.aurora.dev#78
These PRs should be merged together so that the link here is not broken.