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 10 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
2 changes: 0 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ jobs:
- name: Checkout sources
uses: actions/checkout@v3
with:
token: ${{ secrets.GH_TOKEN }}
submodules: recursive

- name: Install toolchain
Expand Down Expand Up @@ -56,7 +55,6 @@ jobs:
- name: Checkout sources
uses: actions/checkout@v3
with:
token: ${{ secrets.GH_TOKEN }}
submodules: recursive

- name: Install toolchain
Expand Down
106 changes: 98 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
39 changes: 39 additions & 0 deletions transaction-payment/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
[package]
name = "ismp-transaction-payment"
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 }
pallet-ismp = { git = "https://github.com/polytope-labs/substrate-ismp", branch = "main", 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",
] }
log = { version = "0.4.17", 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",
"log/std",
]
Loading
Loading