-
Notifications
You must be signed in to change notification settings - Fork 56
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
feat: Added inspect
and download-abi
commands for contracts!
#293
Merged
Conversation
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
frol
reviewed
Feb 11, 2024
frol
requested changes
Feb 15, 2024
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.
Bugs:
- Inspecting a contract account without ABI returns nothing
frol
changed the title
feat: Show contract method names
feat: Added Feb 19, 2024
inspect
and download-abi
commands for contracts!
frol
previously approved these changes
Feb 19, 2024
frol
force-pushed
the
inspect-contract
branch
from
February 19, 2024 11:54
6e8c567
to
50202ef
Compare
frol
approved these changes
Feb 19, 2024
Merged
frol
added a commit
that referenced
this pull request
Feb 19, 2024
## 🤖 New release * `near-cli-rs`: 0.7.8 -> 0.8.0 (⚠️ API breaking changes) ###⚠️ `near-cli-rs` breaking changes ``` --- failure enum_variant_added: enum variant added on exhaustive enum --- Description: A publicly-visible enum without #[non_exhaustive] has a new variant. ref: https://doc.rust-lang.org/cargo/reference/semver.html#enum-variant-new impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.28.0/src/lints/enum_variant_added.ron Failed in: variant ContractActionsDiscriminants:Inspect in /tmp/.tmpCcWnr1/near-cli-rs/src/commands/contract/mod.rs:35 variant ContractActionsDiscriminants:DownloadAbi in /tmp/.tmpCcWnr1/near-cli-rs/src/commands/contract/mod.rs:38 variant ContractActionsDiscriminants:Inspect in /tmp/.tmpCcWnr1/near-cli-rs/src/commands/contract/mod.rs:35 variant ContractActionsDiscriminants:DownloadAbi in /tmp/.tmpCcWnr1/near-cli-rs/src/commands/contract/mod.rs:38 variant CliContractActions:Inspect in /tmp/.tmpCcWnr1/near-cli-rs/src/commands/contract/mod.rs:17 variant CliContractActions:DownloadAbi in /tmp/.tmpCcWnr1/near-cli-rs/src/commands/contract/mod.rs:17 ``` <details><summary><i><b>Changelog</b></i></summary><p> <blockquote> ## [0.8.0](v0.7.8...v0.8.0) - 2024-02-19 ### Added - Added `inspect` and `download-abi` commands for contracts! ([#293](#293)) ### Fixed - Fixed incorrect serialization in staking delegation commands that required to input amounts ([#300](#300)) - Fixed a syntax error in CI (publish-to-npm.yml) </blockquote> </p></details> --- This PR was generated with [release-plz](https://github.com/MarcoIeni/release-plz/). Signed-off-by: Vlad <[email protected]> Co-authored-by: Vlad <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Resolves #70