Skip to content
This repository has been archived by the owner on Nov 10, 2023. It is now read-only.

OnChargeTx implementation #67

Closed
wants to merge 16 commits into from
Closed
Show file tree
Hide file tree
Changes from 3 commits
Commits
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
105 changes: 97 additions & 8 deletions Cargo.lock

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

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ members = [
"parachain/inherent",
"parachain/runtime-api",
"parachain",
"ismp-demo"
"ismp-demo",
"transaction-payment"
]

[workspace.dependencies]
Expand Down
36 changes: 36 additions & 0 deletions transaction-payment/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
[package]
name = "transaction-payment"
iTranscend marked this conversation as resolved.
Show resolved Hide resolved
version = "0.1.0"
edition = "2021"
authors = ["Polytope Labs <[email protected]>"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42", default-features = false }
frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42", default-features = false }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42", default-features = false }
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42", default-features = false }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42", default-features = false }
pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42", default-features = false }
pallet-asset-tx-payment = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42", default-features = false }
scale-info = { version = "2.1.1", default-features = false, features = ["derive"] }
scale-codec = { package = "parity-scale-codec", version = "3.1.3", default-features = false, features = [
"derive",
] }
pallet-ismp = { git = "https://github.com/polytope-labs/substrate-ismp", branch = "main", default-features = false }

[features]
default = ["std"]
std = [
"scale-codec/std",
"frame-support/std",
"frame-system/std",
"scale-info/std",
"sp-runtime/std",
"sp-std/std",
"sp-core/std",
"pallet-ismp/std",
"pallet-transaction-payment/std",
"pallet-asset-tx-payment/std",
]
Loading