-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #22 from Alzymologist/release-v0-1-0
chore: release v0.1.0
- Loading branch information
Showing
2 changed files
with
21 additions
and
0 deletions.
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,7 +1,15 @@ | ||
[package] | ||
description = "Extrinsic constructor for Substrate based chains" | ||
license = "GPL-3.0-or-later" | ||
name = "substrate-constructor" | ||
version = "0.1.0" | ||
authors = ["Alexander Slesarev <[email protected]>", "Vera Abramova <[email protected]>"] | ||
edition = "2021" | ||
repository = "https://github.com/Alzymologist/substrate-constructor" | ||
homepage = "https://github.com/Alzymologist/substrate-constructor" | ||
documentation = "https://docs.rs/substrate_constructor/" | ||
keywords = ["parser", "substrate"] | ||
exclude = ["/for_tests", "/.github"] | ||
|
||
[dependencies] | ||
bitvec = {version = "1.0.1", default-features = false, features = ["alloc"]} | ||
|
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# substrate-constructor | ||
|
||
This is a counterpart for [substrate-parser](https://github.com/Alzymologist/substrate-parser) that allows construction of extrinsics based on metadata supplied. See an example of its use in [Lempi project](https://github.com/Alzymologist/Lempi) | ||
|
||
## Why not `subxt`? | ||
|
||
`substrate-parser` + `substrate-constructor` system is | ||
|
||
- much leaner (does not pull all multitude of sp-* crates, only minimal ones) - thus is more portable, | ||
- is more modular, | ||
- designed for clients and visualization, | ||
- has more ideomatic extrinsic construction flow. | ||
|