Skip to content

Commit

Permalink
update substrate version (#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
pranavcpawar committed Jul 5, 2023
1 parent 1a26710 commit 1f5000e
Show file tree
Hide file tree
Showing 21 changed files with 478 additions and 478 deletions.
346 changes: 173 additions & 173 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion client/evm-tracing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ edgeware-rpc-primitives-debug = { path = "../../primitives/rpc/debug" }

# Substrate
codec = { package = "parity-scale-codec", version = "3.1.2", default-features = false }
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.19" }
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-0.9.43" }
2 changes: 1 addition & 1 deletion client/rpc-core/debug/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ edgeware-rpc-core-types = { path = "../types" }
serde = { version = "1.0", features = [ "derive" ] }
serde_json = "1.0"

sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.19" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-0.9.43" }
2 changes: 1 addition & 1 deletion client/rpc-core/txpool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ jsonrpc-derive = "18.0.0"
serde = { version = "1.0", features = [ "derive" ] }
serde_json = "1.0"
evm = { git = "https://github.com/rust-blockchain/evm", branch = "master", default-features = false, features = [ "with-codec" ] } #
fc-rpc-core = { git = "https://github.com/paritytech/frontier", branch = "polkadot-v0.9.19" }
fc-rpc-core = { git = "https://github.com/paritytech/frontier", branch = "polkadot-0.9.43" }
24 changes: 12 additions & 12 deletions client/rpc/debug/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,20 +20,20 @@ edgeware-rpc-core-types = { path = "../../rpc-core/types" }
edgeware-rpc-primitives-debug = { path = "../../../primitives/rpc/debug" }

# Substrate
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.19" }
sc-utils = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.19" }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.19" }
sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.19" }
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.19" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.19" }
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.19" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.19" }
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-0.9.43" }
sc-utils = { git = "https://github.com/paritytech/substrate", branch = "polkadot-0.9.43" }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-0.9.43" }
sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-0.9.43" }
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-0.9.43" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-0.9.43" }
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-0.9.43" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-0.9.43" }

# Frontier
ethereum = { version = "0.12.0", default-features = false, features = [ "with-codec" ] }
ethereum-types = "0.13.1"
evm = { git = "https://github.com/rust-blockchain/evm", branch = "master", default-features = false, features = [ "with-codec" ] } #
fc-consensus = { git = "https://github.com/paritytech/frontier", branch = "polkadot-v0.9.19" }
fc-db = { git = "https://github.com/paritytech/frontier", branch = "polkadot-v0.9.19" }
fc-rpc = { git = "https://github.com/paritytech/frontier", branch = "polkadot-v0.9.19", features = [ "rpc_binary_search_estimate" ] }
fp-rpc = { git = "https://github.com/paritytech/frontier", branch = "polkadot-v0.9.19" }
fc-consensus = { git = "https://github.com/paritytech/frontier", branch = "polkadot-0.9.43" }
fc-db = { git = "https://github.com/paritytech/frontier", branch = "polkadot-0.9.43" }
fc-rpc = { git = "https://github.com/paritytech/frontier", branch = "polkadot-0.9.43", features = [ "rpc_binary_search_estimate" ] }
fp-rpc = { git = "https://github.com/paritytech/frontier", branch = "polkadot-0.9.43" }
28 changes: 14 additions & 14 deletions client/rpc/trace/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,21 +24,21 @@ edgeware-rpc-core-types = { path = "../../rpc-core/types" }
edgeware-rpc-primitives-debug = { path = "../../../primitives/rpc/debug" }

# Substrate
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.19" }
sc-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.19" }
sc-utils = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.19" }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.19" }
sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.19" }
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.19" }
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.19" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.19" }
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.19" }
sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.19" }
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-0.9.43" }
sc-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-0.9.43" }
sc-utils = { git = "https://github.com/paritytech/substrate", branch = "polkadot-0.9.43" }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-0.9.43" }
sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-0.9.43" }
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-0.9.43" }
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-0.9.43" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-0.9.43" }
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-0.9.43" }
sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "polkadot-0.9.43" }

# Frontier
evm = { git = "https://github.com/rust-blockchain/evm", branch = "master", default-features = false, features = [ "with-codec" ] } #
fc-consensus = { git = "https://github.com/paritytech/frontier", branch = "polkadot-v0.9.19" }
fc-rpc = { git = "https://github.com/paritytech/frontier", branch = "polkadot-v0.9.19", features = [ "rpc_binary_search_estimate" ] }
fc-rpc-core = { git = "https://github.com/paritytech/frontier", branch = "polkadot-v0.9.19" }
fp-rpc = { git = "https://github.com/paritytech/frontier", branch = "polkadot-v0.9.19" }
fc-consensus = { git = "https://github.com/paritytech/frontier", branch = "polkadot-0.9.43" }
fc-rpc = { git = "https://github.com/paritytech/frontier", branch = "polkadot-0.9.43", features = [ "rpc_binary_search_estimate" ] }
fc-rpc-core = { git = "https://github.com/paritytech/frontier", branch = "polkadot-0.9.43" }
fp-rpc = { git = "https://github.com/paritytech/frontier", branch = "polkadot-0.9.43" }

18 changes: 9 additions & 9 deletions client/rpc/txpool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@ edgeware-rpc-core-txpool = { path = "../../rpc-core/txpool" }
edgeware-rpc-primitives-txpool = { path = "../../../primitives/rpc/txpool" }

# Substrate
frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.19" }
sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.19" }
sc-transaction-pool-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.19" }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.19" }
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.19" }
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.19" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.19" }
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.19" }
frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-0.9.43" }
sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "polkadot-0.9.43" }
sc-transaction-pool-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-0.9.43" }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-0.9.43" }
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-0.9.43" }
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-0.9.43" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-0.9.43" }
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-0.9.43" }

# Frontier
ethereum-types = "0.13.1"
evm = { git = "https://github.com/rust-blockchain/evm", branch = "master", default-features = false, features = [ "with-codec" ] } #
fc-rpc = { git = "https://github.com/paritytech/frontier", branch = "polkadot-v0.9.19", features = [ "rpc_binary_search_estimate" ] }
fc-rpc = { git = "https://github.com/paritytech/frontier", branch = "polkadot-0.9.43", features = [ "rpc_binary_search_estimate" ] }
2 changes: 1 addition & 1 deletion node/cli-opt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ authors = ["Filip @ Edgeware"]
edition = '2021'

[dependencies]
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.19" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-0.9.43" }
structopt = "0.3"#{ version = "0.3.8", features=["paw"]}
tiny-bip39 = "0.8"
libsecp256k1 = "0.7"
Expand Down
Loading

0 comments on commit 1f5000e

Please sign in to comment.