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

tx fees diff support #1083

Merged
merged 33 commits into from
Jul 19, 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
79d306a
tx fees diff support
Dengjianping Apr 21, 2023
d921f68
Support all extrinsics in calamari, and update readme, tx fees sheet
Dengjianping Apr 24, 2023
9f99f6f
Skip reading readme
Dengjianping Apr 24, 2023
cd83c6c
[no ci]Add one more items to release doc
Dengjianping Apr 25, 2023
8f433c0
[no ci]Update readme
Dengjianping Apr 25, 2023
8e62c0d
Merge branch 'manta' into diff-gas-fees
Dengjianping Apr 25, 2023
3938de2
Fix some comments
Dengjianping Apr 26, 2023
c9d2d0f
[no ci]Merge manta branch
Dengjianping May 12, 2023
bf4d289
[no ci] merge manta branch
Dengjianping May 22, 2023
0c9439c
Update extrinsics for tx fee estimation
Dengjianping May 23, 2023
27a8332
Merge branch 'manta' into diff-gas-fees
Dengjianping May 30, 2023
e21d57f
Calculate tx fees by different multiplier
Dengjianping May 30, 2023
957ef17
Fix clippy
Dengjianping May 30, 2023
06de74a
[no ci] Update realse.md
Dengjianping Jun 1, 2023
1c9257f
Merge branch 'manta' into diff-gas-fees
ghzlatarev Jun 1, 2023
46c6488
Merge branch 'manta' into diff-gas-fees
Dengjianping Jun 5, 2023
07c1d2a
Merge branch 'manta' into diff-gas-fees
Dengjianping Jun 8, 2023
99166de
Merge branch 'manta' into diff-gas-fees
Dengjianping Jun 9, 2023
942d93b
Update extrinsics and tx fee data
Dengjianping Jun 9, 2023
3f4d4df
Merge branch 'manta' into diff-gas-fees
Dengjianping Jun 15, 2023
82bcb2a
Support manta runtime
Dengjianping Jun 15, 2023
01c61b9
Add missing file
Dengjianping Jun 15, 2023
78654c0
Add tx fee data
Dengjianping Jun 16, 2023
efb644d
Merge branch 'manta' into diff-gas-fees
Dengjianping Jun 16, 2023
94a9baa
Merge branch 'manta' into diff-gas-fees
ghzlatarev Jun 24, 2023
3b49726
Merge branch 'manta' into diff-gas-fees
ghzlatarev Jun 27, 2023
e6d11cf
Merge branch 'manta' into diff-gas-fees
Dengjianping Jul 9, 2023
38ae7ee
[no ci]Add more pallets and update exsiting pallets
Dengjianping Jul 9, 2023
3c1c2e4
Add more pallets and extrinsics
Dengjianping Jul 17, 2023
01f2f1d
Merge branch 'manta' into diff-gas-fees
Dengjianping Jul 17, 2023
8843228
Fix clippy and regenerate tx fees
Dengjianping Jul 17, 2023
eecccf6
Merge branch 'manta' into diff-gas-fees
Dengjianping Jul 18, 2023
33e6c89
Merge branch 'manta' into diff-gas-fees
Dengjianping Jul 19, 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 .github/ISSUE_TEMPLATE/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ These checks should be performed on the codebase prior to freezing our release c
- [ ] Check that a draft release has been created on the [release page](https://github.com/Manta-Network/Manta/releases) and add relevant [release notes](#release-notes)
- [ ] Check that build artifacts have been added to the draft-release
- [ ] Promote the draft to a Pre-Release on github
- [ ] If there's any new extrinsic or pallet introduced, please add it to [runtime/calamari/src/diff_tx_fees.rs](../../runtime/calamari/src/diff_tx_fees.rs), then follow [tx-fees-data/README](../../runtime/calamari/tx-fees-data/README.md) to generate a new tx fees sheet.

# Deploy to internal testnets ( fast runtime )

Expand Down
31 changes: 31 additions & 0 deletions Cargo.lock

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

2 changes: 2 additions & 0 deletions runtime/calamari/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,11 @@ substrate-wasm-builder = { git = 'https://github.com/paritytech/substrate.git',

[dev-dependencies]
# Generic 3rd-party dependencies
csv = "1.2.1"
lazy_static = "1.4.0"
reqwest = { version = "0.11.6", features = ["blocking"] }
serde_json = "1.0"
version-compare = "0.1.1"

# Substrate 3rd-party dependencies
cumulus-primitives-parachain-inherent = { git = "https://github.com/paritytech/cumulus.git", branch = "polkadot-v0.9.37" }
Expand Down
Loading
Loading