mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 10:27:59 +00:00
45938d8033
* Expose information about the extrinsic in the metadata This pr exposes some information about the extrinsic used in the runtime via metadata. The following information are exposed: - Version of the extrinsic - List of all signed extensions used by the extrinsic. * Increment `spec_version`
22 lines
614 B
TOML
22 lines
614 B
TOML
[package]
|
|
name = "frame-metadata"
|
|
version = "11.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
license = "GPL-3.0"
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
|
|
serde = { version = "1.0.101", optional = true, features = ["derive"] }
|
|
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" }
|
|
sp-core = { version = "2.0.0", default-features = false, path = "../../primitives/core" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"codec/std",
|
|
"sp-std/std",
|
|
"sp-core/std",
|
|
"serde",
|
|
]
|