mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 05:11:02 +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>
73 lines
2.2 KiB
TOML
73 lines
2.2 KiB
TOML
[package]
|
|
name = "ethereum-poa-relay"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
ansi_term = "0.12"
|
|
async-std = "=1.5.0"
|
|
async-stream = "0.2.0"
|
|
async-trait = "0.1.31"
|
|
clap = { version = "2.33.1", features = ["yaml"] }
|
|
codec = { package = "parity-scale-codec", version = "1.0.0" }
|
|
env_logger = "0.7.0"
|
|
ethabi = "12.0"
|
|
ethabi-contract = "11.0"
|
|
ethabi-derive = "12.0"
|
|
ethereum-tx-sign = "3.0"
|
|
futures = "0.3.5"
|
|
hex = "0.4"
|
|
jsonrpsee = { git = "https://github.com/paritytech/jsonrpsee.git", default-features = false, features = ["http"] }
|
|
linked-hash-map = "0.5.3"
|
|
log = "0.4.8"
|
|
num-traits = "0.2"
|
|
parity-crypto = { version = "0.6", features = ["publickey"] }
|
|
parking_lot = "0.10.2"
|
|
rustc-hex = "2.0.1"
|
|
serde = { version = "1.0.111", features = ["derive"] }
|
|
serde_json = "1.0.53"
|
|
sp-bridge-eth-poa = { path = "../../primitives/ethereum-poa" }
|
|
time = "0.2"
|
|
web3 = { git = "https://github.com/tomusdrw/rust-web3" }
|
|
|
|
# Substrate Based Dependencies
|
|
[dependencies.frame-system]
|
|
version = "2.0.0-rc1"
|
|
rev = "599ba75bc2b5acd238c21c5c7efe8e2ad8d401ee"
|
|
git = "https://github.com/paritytech/substrate/"
|
|
|
|
[dependencies.pallet-transaction-payment]
|
|
version = "2.0.0-rc1"
|
|
rev = "599ba75bc2b5acd238c21c5c7efe8e2ad8d401ee"
|
|
git = "https://github.com/paritytech/substrate.git"
|
|
|
|
# I think this is used for sr-io and stuff
|
|
[dependencies.node-primitives]
|
|
version = "2.0.0-rc1"
|
|
rev = "599ba75bc2b5acd238c21c5c7efe8e2ad8d401ee"
|
|
git = "https://github.com/paritytech/substrate.git"
|
|
|
|
# Branch used for keccack256 hasher code
|
|
# Could probably move the keccack hasher stuff to our own primitives
|
|
[dependencies.sp-core]
|
|
version = "2.0.0-rc1"
|
|
rev = "599ba75bc2b5acd238c21c5c7efe8e2ad8d401ee"
|
|
git = "https://github.com/paritytech/substrate.git"
|
|
|
|
[dependencies.sp-keyring]
|
|
version = "2.0.0-rc1"
|
|
rev = "599ba75bc2b5acd238c21c5c7efe8e2ad8d401ee"
|
|
git = "https://github.com/paritytech/substrate.git"
|
|
|
|
[dependencies.sp-runtime]
|
|
version = "2.0.0-rc1"
|
|
rev = "599ba75bc2b5acd238c21c5c7efe8e2ad8d401ee"
|
|
git = "https://github.com/paritytech/substrate.git"
|
|
|
|
# This should get moved to our `bin` folder
|
|
[dependencies.bridge-node-runtime]
|
|
version = "0.1.0"
|
|
path = "../../bin/node/runtime"
|
|
# node-runtime = { git = "https://github.com/svyatonik/substrate.git", branch = "bridge_runtime" }
|