Skip to content

Commit

Permalink
Add schema generation and verification (#1404)
Browse files Browse the repository at this point in the history
* add schema generation and verification

* add changelog entry

* apply review suggestions
  • Loading branch information
German committed Nov 17, 2023
1 parent 15f77e6 commit e1f7ae2
Show file tree
Hide file tree
Showing 6 changed files with 429 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]

### Added
- Add schema generation and verification - [#1404](https://github.com/paritytech/cargo-contract/pull/1404)
- Compare `Environment` types against the node - [#1377](https://github.com/paritytech/cargo-contract/pull/1377)
- Adds workflow for publishing docker images for the verifiable builds - [#1267](https://github.com/paritytech/cargo-contract/pull/1267)
- Detect `INK_STATIC_BUFFER_SIZE` env var - [#1310](https://github.com/paritytech/cargo-contract/pull/1310)
Expand Down
225 changes: 225 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion crates/cargo-contract/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ serde_json = "1.0.108"
serde = { version = "1.0.192", default-features = false, features = ["derive"] }
url = { version = "2.4.1", features = ["serde"] }
semver = "1.0"

jsonschema = "0.17"
schemars = "0.8"
ink_metadata = "5.0.0-alpha"


# dependencies for extrinsics (deploying and calling a contract)
Expand Down

0 comments on commit e1f7ae2

Please sign in to comment.