mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 15:47:58 +00:00
fddfbb5b1c
* submit Eth exchange transactions * submit ethereum in docker-compose * submit Eth exchange transactions * fix duplicate message * fix relay script * lost file * cargo fmt --all * cargo +nightly clippy * Show sccache * remove test-helpers remains * what's going on with jsonrpsee + Cargo.lock? * relay-eth-submit-exchange-tx -> poa-exchange-tx-generator * Update relays/ethereum/src/main.rs Co-authored-by: Tomasz Drwięga <tomusdrw@users.noreply.github.com> * configuring exchange-gen loop using env variables * fixed signer account from dev chain to Arthur * improve debug prints * parse nonce from relay output * --eth-nonce= * fix compilation * cargo fmt --all * fix typo * duplicate relay output to tty * allow using from bash scripts tests * fix: U256::parse() expects hex string :/ * cargo fmt --all * BRIDGE_HASH: ${BRIDGE_HASH:-master} * script comment * generate exchange PoA transactions by Bertha * Bertha address Co-authored-by: Denis S. Soldatov aka General-Beck <general.beck@gmail.com> Co-authored-by: Tomasz Drwięga <tomusdrw@users.noreply.github.com>
269 lines
6.3 KiB
TOML
269 lines
6.3 KiB
TOML
[package]
|
|
name = "bridge-node-runtime"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
homepage = "https://substrate.dev"
|
|
repository = "https://github.com/paritytech/parity-bridges-common/"
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
|
|
[dependencies]
|
|
hex-literal = "0.3"
|
|
|
|
[dependencies.codec]
|
|
package = "parity-scale-codec"
|
|
version = "1.3.1"
|
|
default-features = false
|
|
features = ["derive"]
|
|
|
|
[dependencies.libsecp256k1]
|
|
optional = true
|
|
version = "0.3.4"
|
|
default-features = false
|
|
features = ["hmac"]
|
|
|
|
[dependencies.serde]
|
|
version = "1.0.114"
|
|
optional = true
|
|
features = ["derive"]
|
|
|
|
# Substrate Dependencies
|
|
[dependencies.pallet-aura]
|
|
version = "2.0.0-rc4"
|
|
tag = 'v2.0.0-rc4'
|
|
default-features = false
|
|
git = "https://github.com/paritytech/substrate/"
|
|
|
|
[dependencies.pallet-balances]
|
|
version = "2.0.0-rc4"
|
|
tag = 'v2.0.0-rc4'
|
|
default-features = false
|
|
git = "https://github.com/paritytech/substrate/"
|
|
|
|
[dependencies.pallet-bridge-eth-poa]
|
|
version = "0.1.0"
|
|
default-features = false
|
|
path = "../../../modules/ethereum"
|
|
|
|
[dependencies.pallet-bridge-currency-exchange]
|
|
version = "0.1.0"
|
|
default-features = false
|
|
path = "../../../modules/currency-exchange"
|
|
|
|
[dependencies.frame-support]
|
|
version = "2.0.0-rc4"
|
|
tag = 'v2.0.0-rc4'
|
|
default-features = false
|
|
git = "https://github.com/paritytech/substrate/"
|
|
|
|
[dependencies.pallet-grandpa]
|
|
version = "2.0.0-rc4"
|
|
tag = 'v2.0.0-rc4'
|
|
default-features = false
|
|
git = "https://github.com/paritytech/substrate/"
|
|
|
|
[dependencies.pallet-randomness-collective-flip]
|
|
version = "2.0.0-rc4"
|
|
tag = 'v2.0.0-rc4'
|
|
default-features = false
|
|
git = "https://github.com/paritytech/substrate/"
|
|
|
|
[dependencies.pallet-sudo]
|
|
version = "2.0.0-rc4"
|
|
tag = 'v2.0.0-rc4'
|
|
default-features = false
|
|
git = "https://github.com/paritytech/substrate/"
|
|
|
|
[dependencies.pallet-session]
|
|
version = "2.0.0-rc4"
|
|
tag = 'v2.0.0-rc4'
|
|
default-features = false
|
|
git = "https://github.com/paritytech/substrate/"
|
|
|
|
[dependencies.frame-system]
|
|
version = "2.0.0-rc4"
|
|
tag = 'v2.0.0-rc4'
|
|
default-features = false
|
|
git = "https://github.com/paritytech/substrate/"
|
|
|
|
[dependencies.frame-system-rpc-runtime-api]
|
|
version = "2.0.0-rc4"
|
|
tag = 'v2.0.0-rc4'
|
|
default-features = false
|
|
git = "https://github.com/paritytech/substrate/"
|
|
|
|
[dependencies.pallet-timestamp]
|
|
version = "2.0.0-rc4"
|
|
tag = 'v2.0.0-rc4'
|
|
default-features = false
|
|
git = "https://github.com/paritytech/substrate/"
|
|
|
|
[dependencies.pallet-transaction-payment]
|
|
version = "2.0.0-rc4"
|
|
tag = 'v2.0.0-rc4'
|
|
default-features = false
|
|
git = "https://github.com/paritytech/substrate/"
|
|
|
|
[dependencies.frame-executive]
|
|
version = "2.0.0-rc4"
|
|
tag = 'v2.0.0-rc4'
|
|
default-features = false
|
|
git = "https://github.com/paritytech/substrate/"
|
|
|
|
# Substrate Primitives
|
|
[dependencies.sp-api]
|
|
version = "2.0.0-rc4"
|
|
tag = 'v2.0.0-rc4'
|
|
default-features = false
|
|
git = "https://github.com/paritytech/substrate/"
|
|
|
|
[dependencies.sp-block-builder]
|
|
version = "2.0.0-rc4"
|
|
tag = 'v2.0.0-rc4'
|
|
default-features = false
|
|
git = "https://github.com/paritytech/substrate/"
|
|
|
|
[dependencies.sp-bridge-eth-poa]
|
|
version = "0.1.0"
|
|
default-features = false
|
|
path = "../../../primitives/ethereum-poa"
|
|
|
|
[dependencies.sp-currency-exchange]
|
|
version = "0.1.0"
|
|
default-features = false
|
|
path = "../../../primitives/currency-exchange"
|
|
|
|
[dependencies.sp-consensus-aura]
|
|
version = "0.8.0-rc4"
|
|
tag = 'v2.0.0-rc4'
|
|
default-features = false
|
|
git = "https://github.com/paritytech/substrate/"
|
|
|
|
[dependencies.sp-core]
|
|
version = "2.0.0-rc4"
|
|
tag = 'v2.0.0-rc4'
|
|
default-features = false
|
|
git = "https://github.com/paritytech/substrate/"
|
|
|
|
[dependencies.sp-inherents]
|
|
version = "2.0.0-rc4"
|
|
tag = 'v2.0.0-rc4'
|
|
default-features = false
|
|
git = "https://github.com/paritytech/substrate/"
|
|
|
|
[dependencies.sp-io]
|
|
version = "2.0.0-rc4"
|
|
tag = 'v2.0.0-rc4'
|
|
default-features = false
|
|
git = "https://github.com/paritytech/substrate/"
|
|
|
|
[dependencies.sp-offchain]
|
|
version = "2.0.0-rc4"
|
|
tag = 'v2.0.0-rc4'
|
|
default-features = false
|
|
git = "https://github.com/paritytech/substrate/"
|
|
|
|
[dependencies.sp-runtime]
|
|
version = "2.0.0-rc4"
|
|
tag = 'v2.0.0-rc4'
|
|
default-features = false
|
|
git = "https://github.com/paritytech/substrate/"
|
|
|
|
[dependencies.sp-session]
|
|
version = "2.0.0-rc4"
|
|
tag = 'v2.0.0-rc4'
|
|
default-features = false
|
|
git = "https://github.com/paritytech/substrate/"
|
|
|
|
[dependencies.sp-staking]
|
|
version = "2.0.0-rc4"
|
|
tag = 'v2.0.0-rc4'
|
|
default-features = false
|
|
git = "https://github.com/paritytech/substrate/"
|
|
|
|
[dependencies.sp-std]
|
|
version = "2.0.0-rc4"
|
|
tag = 'v2.0.0-rc4'
|
|
default-features = false
|
|
git = "https://github.com/paritytech/substrate/"
|
|
|
|
[dependencies.sp-transaction-pool]
|
|
version = "2.0.0-rc4"
|
|
tag = 'v2.0.0-rc4'
|
|
default-features = false
|
|
git = "https://github.com/paritytech/substrate/"
|
|
|
|
[dependencies.sp-version]
|
|
version = "2.0.0-rc4"
|
|
tag = 'v2.0.0-rc4'
|
|
default-features = false
|
|
git = "https://github.com/paritytech/substrate/"
|
|
|
|
[dependencies.frame-benchmarking]
|
|
optional = true
|
|
version = "2.0.0-rc4"
|
|
tag = 'v2.0.0-rc4'
|
|
default-features = false
|
|
git = "https://github.com/paritytech/substrate/"
|
|
|
|
[dev-dependencies.libsecp256k1]
|
|
version = "0.3.4"
|
|
default-features = false
|
|
features = ["hmac"]
|
|
|
|
[dev-dependencies.sp-bridge-eth-poa]
|
|
version = "0.1.0"
|
|
default-features = false
|
|
features = ["std"]
|
|
path = "../../../primitives/ethereum-poa"
|
|
|
|
[build-dependencies.wasm-builder-runner]
|
|
version = "1.0.5"
|
|
tag = 'v2.0.0-rc4'
|
|
package = "substrate-wasm-builder-runner"
|
|
git = "https://github.com/paritytech/substrate/"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"pallet-aura/std",
|
|
"pallet-balances/std",
|
|
"pallet-bridge-eth-poa/std",
|
|
"pallet-bridge-currency-exchange/std",
|
|
"codec/std",
|
|
"frame-benchmarking/std",
|
|
"frame-executive/std",
|
|
"frame-support/std",
|
|
"frame-system/std",
|
|
"frame-system-rpc-runtime-api/std",
|
|
"pallet-grandpa/std",
|
|
"pallet-randomness-collective-flip/std",
|
|
"serde",
|
|
"sp-api/std",
|
|
"sp-block-builder/std",
|
|
"sp-bridge-eth-poa/std",
|
|
"sp-currency-exchange/std",
|
|
"sp-consensus-aura/std",
|
|
"sp-core/std",
|
|
"sp-inherents/std",
|
|
"sp-io/std",
|
|
"sp-offchain/std",
|
|
"sp-runtime/std",
|
|
"sp-session/std",
|
|
"sp-std/std",
|
|
"sp-transaction-pool/std",
|
|
"sp-version/std",
|
|
"pallet-sudo/std",
|
|
"pallet-timestamp/std",
|
|
"pallet-transaction-payment/std",
|
|
]
|
|
runtime-benchmarks = [
|
|
"frame-benchmarking",
|
|
"frame-support/runtime-benchmarks",
|
|
"frame-system/runtime-benchmarks",
|
|
"libsecp256k1",
|
|
"pallet-bridge-currency-exchange/runtime-benchmarks",
|
|
"pallet-bridge-eth-poa/runtime-benchmarks",
|
|
"sp-runtime/runtime-benchmarks",
|
|
]
|