Skip to content
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

Add verify command #1306

Merged
merged 33 commits into from
Sep 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
51117cc
Add skeleton of `Verify` command
HCastano Aug 10, 2022
13d29dc
Read `BuildInfo` from contract metadata
HCastano Aug 10, 2022
85ccd7d
Manually build contract using `BuildInfo`
HCastano Aug 10, 2022
7de595c
Check built Wasm file against that in the reference metadata
HCastano Aug 11, 2022
e67d108
Comopare `SourceWasm`'s instead of byte strings
HCastano Aug 11, 2022
b90f126
Check that current `nightly` matches that from contract
HCastano Aug 15, 2022
a350f4c
Switch from `env_logger` to `tracing`
HCastano Aug 18, 2022
e87c51a
Use helper function to get current Rust toolchain
HCastano Aug 18, 2022
4317f55
Clean up docs a little
HCastano Aug 18, 2022
fed9c3f
Bail out if `wasm-opt` versions don't match
HCastano Aug 19, 2022
b743987
Use stable `rustc` toolchain
HCastano Aug 29, 2022
f6770de
Use `keep_debug_symbols` from metadata
HCastano Sep 29, 2022
2f3ca03
Make output more colourful
HCastano Sep 29, 2022
e2c5675
Add missing doc comment
HCastano Sep 29, 2022
963387c
Do a better job of error handling
HCastano Sep 29, 2022
e7b9577
Add more error handling improvements
HCastano Sep 29, 2022
a64b631
Add `CHANGELOG` entry
HCastano Sep 29, 2022
d6db73f
Appease Clippy
HCastano Sep 29, 2022
80233c4
Use updated Rust toolchain build info
HCastano Oct 20, 2022
98cc7fb
Apply fixes for `clap` `v4.0`
HCastano Oct 20, 2022
b2d10c2
Compare `cargo-contract` versions instead of `wasm-opt` versions
HCastano Oct 20, 2022
1a71959
Merge branch 'master' into gn/verify-command
Aug 29, 2023
2fd80f1
update code
Aug 29, 2023
02a9e65
add docker support
Aug 29, 2023
5759843
remove docker flag
Aug 29, 2023
3889a62
fix error message
Aug 29, 2023
83373d8
display paths of the contracts
Aug 29, 2023
2154bf3
fix changelog
Aug 29, 2023
c81857f
fix file header
Aug 29, 2023
33dd9eb
Merge branch 'master' into gn/verify-command
Aug 30, 2023
56b27de
apply review suggestions
Aug 30, 2023
6e4fee5
prettify code hash output
Aug 30, 2023
dee765c
add integration tests
Aug 30, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added
- Adds workflow for publishing docker images for the verifiable builds - [#1267](https://github.com/paritytech/cargo-contract/pull/1267)
- Add `verify` command - [#1306](https://github.com/paritytech/cargo-contract/pull/1306)

## [4.0.0-alpha]

Expand Down
Loading
Loading