mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-11 08:07:21 +00:00
7294ea44e1
* ethereum exchange module * continue * continue * added tests for exchange module * moved * remove println * move again * fixes * removed redundant deps * cargo fmt * fund_locks_transaction_decode_works * cargo fmt --all * fix error processing * added some tracing to bridge modules * more tests * more tests * cargo fmt --all * kovan.rs -> exchange.rs * Update bin/node/runtime/src/exchange.rs Co-authored-by: Tomasz Drwięga <tomusdrw@users.noreply.github.com> * added assumption doc * Airdrop -> DepositInto * AsIs -> Identity * OnTransactionSubmitted * Transfers::Key = Id * typo * Update bin/node/runtime/src/exchange.rs Co-authored-by: Tomasz Drwięga <tomusdrw@users.noreply.github.com> * block+tx+proof -> proof { block, tx, proof } * cargo fmt --all * docs * check <-> verify * parse hex * extracted exchange primitives to separate crate * added docs to runtime::exchange module * Update bin/node/runtime/src/exchange.rs Co-authored-by: Hernando Castano <HCastano@users.noreply.github.com> * typo * Update modules/currency-exchange/Cargo.toml Co-authored-by: Hernando Castano <HCastano@users.noreply.github.com> * add docs to currency-exchange module * change tests names * cargo fmt --all * Update bin/node/runtime/src/exchange.rs Co-authored-by: Hernando Castano <HCastano@users.noreply.github.com> * Update bin/node/runtime/src/exchange.rs Co-authored-by: Hernando Castano <HCastano@users.noreply.github.com> * Update bin/node/runtime/src/exchange.rs Co-authored-by: Hernando Castano <HCastano@users.noreply.github.com> * Update bin/node/runtime/src/exchange.rs Co-authored-by: Hernando Castano <HCastano@users.noreply.github.com> * Update bin/node/runtime/src/exchange.rs Co-authored-by: Hernando Castano <HCastano@users.noreply.github.com> * fixed verify_transaction_finalized for siblings of finalized blocks * cargo fmt --all * added double spend note * cargo fmt --all Co-authored-by: Tomasz Drwięga <tomusdrw@users.noreply.github.com> Co-authored-by: Hernando Castano <HCastano@users.noreply.github.com>
59 lines
1.7 KiB
TOML
59 lines
1.7 KiB
TOML
[package]
|
|
name = "pallet-bridge-currency-exchange"
|
|
description = "A Substrate Runtime module that accepts 'lock funds' transactions from a peer chain and grants an equivalent amount to a the appropriate Substrate account."
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0", optional = true }
|
|
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false }
|
|
sp-currency-exchange = { path = "../../primitives/currency-exchange", default-features = false }
|
|
|
|
# Substrate Based Dependencies
|
|
[dependencies.frame-support]
|
|
version = "2.0.0-rc1"
|
|
default-features = false
|
|
rev = "599ba75bc2b5acd238c21c5c7efe8e2ad8d401ee"
|
|
git = "https://github.com/paritytech/substrate/"
|
|
|
|
[dependencies.frame-system]
|
|
version = "2.0.0-rc1"
|
|
default-features = false
|
|
rev = "599ba75bc2b5acd238c21c5c7efe8e2ad8d401ee"
|
|
git = "https://github.com/paritytech/substrate/"
|
|
|
|
[dependencies.sp-std]
|
|
version = "2.0.0-rc1"
|
|
default-features = false
|
|
rev = "599ba75bc2b5acd238c21c5c7efe8e2ad8d401ee"
|
|
git = "https://github.com/paritytech/substrate/"
|
|
|
|
[dependencies.sp-runtime]
|
|
version = "2.0.0-rc1"
|
|
default-features = false
|
|
rev = "599ba75bc2b5acd238c21c5c7efe8e2ad8d401ee"
|
|
git = "https://github.com/paritytech/substrate/"
|
|
|
|
[dev-dependencies.sp-core]
|
|
version = "2.0.0-rc1"
|
|
rev = "599ba75bc2b5acd238c21c5c7efe8e2ad8d401ee"
|
|
git = "https://github.com/paritytech/substrate/"
|
|
|
|
[dev-dependencies.sp-io]
|
|
version = "2.0.0-rc1"
|
|
rev = "599ba75bc2b5acd238c21c5c7efe8e2ad8d401ee"
|
|
git = "https://github.com/paritytech/substrate/"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"serde",
|
|
"codec/std",
|
|
"sp-std/std",
|
|
"frame-support/std",
|
|
"frame-system/std",
|
|
"sp-runtime/std",
|
|
"sp-currency-exchange/std",
|
|
]
|