|
1 | 1 | [package]
|
2 |
| -name = "dynamic-fee-adjustment" |
| 2 | +name = "pallet-sugondat-length-fee-adjustment" |
3 | 3 | version = "0.1.0"
|
4 | 4 | authors = ["Anonymous"]
|
5 |
| -description = "Fee Adjustment based on block length and weight" |
| 5 | +description = "Pallet for fee Adjustment based on block length and weight" |
6 | 6 | license = "MIT OR Apache-2.0"
|
7 | 7 | repository = "https://github.com/thrumdev/blobs"
|
8 | 8 | edition = "2021"
|
9 | 9 |
|
| 10 | +[package.metadata.docs.rs] |
| 11 | +targets = ["x86_64-unknown-linux-gnu"] |
10 | 12 |
|
11 | 13 | [dependencies]
|
| 14 | +codec = { package = "parity-scale-codec", version = "3.0.0", features = ["derive"], default-features = false } |
| 15 | +scale-info = { version = "2.2.0", default-features = false, features = ["derive"] } |
12 | 16 | frame-support = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, branch = "release-polkadot-v1.4.0" }
|
13 | 17 | frame-system = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, branch = "release-polkadot-v1.4.0" }
|
14 | 18 | pallet-transaction-payment = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, branch = "release-polkadot-v1.4.0" }
|
| 19 | +pallet-balances = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, branch = "release-polkadot-v1.4.0" } |
15 | 20 | sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, branch = "release-polkadot-v1.4.0" }
|
16 | 21 | sp-weights = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, branch = "release-polkadot-v1.4.0"}
|
17 | 22 | sp-arithmetic = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, branch = "release-polkadot-v1.4.0"}
|
18 | 23 |
|
| 24 | +[dev-dependencies] |
| 25 | +sp-io = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, branch = "release-polkadot-v1.4.0"} |
| 26 | +sp-core = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, branch = "release-polkadot-v1.4.0" } |
| 27 | + |
19 | 28 | [features]
|
20 | 29 | default = [ "std" ]
|
21 | 30 | std = [
|
| 31 | + "codec/std", |
22 | 32 | "frame-support/std",
|
23 | 33 | "frame-system/std",
|
24 | 34 | "sp-runtime/std",
|
25 | 35 | "sp-weights/std",
|
| 36 | + "scale-info/std", |
26 | 37 | "sp-arithmetic/std",
|
27 | 38 | "pallet-transaction-payment/std",
|
| 39 | + "pallet-balances/std", |
28 | 40 | ]
|
29 |
| - |
30 |
| -#runtime-benchmarks = ["sp-runtime/runtime-benchmarks",] |
31 |
| -# |
32 |
| -#try-runtime = [ |
33 |
| -# "pallet-transaction-payment/try-runtime", |
34 |
| -# "sp-runtime/try-runtime" |
35 |
| -#] |
|
0 commit comments