-
Notifications
You must be signed in to change notification settings - Fork 5
docs: fix typo and other observations #135
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
base: main
Are you sure you want to change the base?
Conversation
| -d '{"jsonrpc":"2.0","method":"eth_getBalance","params":["0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266","latest"],"id":1}' | ||
| ``` | ||
|
|
||
| **Send a transaction:** |
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.
Doesn't work in the testnet setup, as it requires the sender's private keys to be available in the EVM client.
| </details> | ||
|
|
||
| Running this command should results in the following output: | ||
| Running this command should result in the following output: |
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.
At least I was consistent :)
| **Verify installations:** | ||
| ```bash | ||
| rustc --version # Should show rustc 1.85+ | ||
| rustc --version # Should show rustc 1.88+ |
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.
Which crates requires 1.88+?
I am able to verify MSRV 1.85 for:
- app
- cli
- engine
- utils
- types
We should also update https://github.com/informalsystems/emerald/blob/main/Cargo.toml#L18 accordingly
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.
Oh and I see we are missing rust-version = { workspace = true } here https://github.com/informalsystems/emerald/blob/main/cli/Cargo.toml#L8
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.
This PR fixes some typos and addresses other observations found while reviewing the docs and running a local testnet.