Skip to content

Commit 005efa3

Browse files
committed
yeet all eth bridge related crates and code and light_sdk
1 parent eb51c96 commit 005efa3

File tree

184 files changed

+286
-35419
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

184 files changed

+286
-35419
lines changed

Cargo.lock

Lines changed: 0 additions & 71 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,11 @@ members = [
99
"crates/controller",
1010
"crates/core",
1111
"crates/encoding_spec",
12-
"crates/ethereum_bridge",
1312
"crates/events",
1413
"crates/gas",
1514
"crates/governance",
1615
"crates/ibc",
1716
"crates/io",
18-
"crates/light_sdk",
1917
"crates/macros",
2018
"crates/migrations",
2119
"crates/merkle_tree",
@@ -37,7 +35,6 @@ members = [
3735
"crates/tx_prelude",
3836
"crates/vm",
3937
"crates/vm_env",
40-
"crates/vote_ext",
4138
"crates/vp",
4239
"crates/vp_env",
4340
"crates/vp_prelude",
@@ -71,13 +68,11 @@ namada_apps_lib = { version = "0.251.0", path = "crates/apps_lib" }
7168
namada_controller = { version = "0.251.0", path = "crates/controller" }
7269
namada_core = { version = "0.251.0", path = "crates/core" }
7370
namada_encoding_spec = { version = "0.251.0", path = "crates/encoding_spec" }
74-
namada_ethereum_bridge = { version = "0.251.0", path = "crates/ethereum_bridge" }
7571
namada_events = { version = "0.251.0", path = "crates/events" }
7672
namada_gas = { version = "0.251.0", path = "crates/gas" }
7773
namada_governance = { version = "0.251.0", path = "crates/governance" }
7874
namada_ibc = { version = "0.251.0", path = "crates/ibc" }
7975
namada_io = { version = "0.251.0", path = "crates/io" }
80-
namada_light_sdk = { version = "0.251.0", path = "crates/light_sdk" }
8176
namada_macros = { version = "0.251.0", path = "crates/macros" }
8277
namada_migrations = { version = "0.251.0", path = "crates/migrations" }
8378
namada_merkle_tree = { version = "0.251.0", path = "crates/merkle_tree" }
@@ -99,7 +94,6 @@ namada_tx_env = { version = "0.251.0", path = "crates/tx_env" }
9994
namada_tx_prelude = { version = "0.251.0", path = "crates/tx_prelude" }
10095
namada_vm = { version = "0.251.0", path = "crates/vm", default-features = false }
10196
namada_vm_env = { version = "0.251.0", path = "crates/vm_env" }
102-
namada_vote_ext = { version = "0.251.0", path = "crates/vote_ext" }
10397
namada_vp = { version = "0.251.0", path = "crates/vp" }
10498
namada_vp_env = { version = "0.251.0", path = "crates/vp_env" }
10599
namada_vp_prelude = { version = "0.251.0", path = "crates/vp_prelude" }

Makefile

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,10 @@ crates += namada_apps_lib
3636
crates += namada_benchmarks
3737
crates += namada_core
3838
crates += namada_encoding_spec
39-
crates += namada_ethereum_bridge
4039
crates += namada_events
4140
crates += namada_gas
4241
crates += namada_governance
4342
crates += namada_ibc
44-
crates += namada_light_sdk
4543
crates += namada_macros
4644
crates += namada_merkle_tree
4745
crates += namada_parameters
@@ -61,7 +59,6 @@ crates += namada_tx_env
6159
crates += namada_tx_prelude
6260
crates += namada_vm
6361
crates += namada_vm_env
64-
crates += namada_vote_ext
6562
crates += namada_vp
6663
crates += namada_vp_env
6764
crates += namada_vp_prelude

crates/apps/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ default = ["migrations"]
5353
mainnet = ["namada_apps_lib/mainnet"]
5454
jemalloc = ["namada_node/jemalloc"]
5555
migrations = ["namada_apps_lib/migrations"]
56-
namada-eth-bridge = ["namada_apps_lib/namada-eth-bridge"]
5756

5857
[dependencies]
5958
namada_apps_lib.workspace = true

crates/apps/src/bin/namada/cli.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ fn handle_command(cmd: cli::cmds::Namada, raw_sub_cmd: String) -> Result<()> {
2323
cmd,
2424
cli::cmds::Namada::Node(_)
2525
| cli::cmds::Namada::Client(_)
26-
| cli::cmds::Namada::Relayer(_)
2726
| cli::cmds::Namada::Wallet(_)
2827
);
2928

@@ -58,9 +57,6 @@ fn handle_command(cmd: cli::cmds::Namada, raw_sub_cmd: String) -> Result<()> {
5857
handle_subcommand("namadac", sub_args)
5958
}
6059
cli::cmds::Namada::Wallet(_) => handle_subcommand("namadaw", sub_args),
61-
cli::cmds::Namada::Relayer(_) | cli::cmds::Namada::EthBridgePool(_) => {
62-
handle_subcommand("namadar", sub_args)
63-
}
6460
cli::cmds::Namada::Complete(cli::cmds::Complete(
6561
cli::args::Complete { shell },
6662
)) => {
@@ -75,7 +71,6 @@ fn handle_command(cmd: cli::cmds::Namada, raw_sub_cmd: String) -> Result<()> {
7571
(cli::namada_node_app(version), "namadan"),
7672
(cli::namada_client_app(version), "namadac"),
7773
(cli::namada_wallet_app(version), "namadaw"),
78-
(cli::namada_relayer_app(version), "namadar"),
7974
] {
8075
match shell {
8176
cli::args::Shell::Bash => {

crates/apps_lib/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ mainnet = ["namada_sdk/mainnet"]
2020
testing = ["lazy_static", "namada_sdk/testing"]
2121
benches = ["lazy_static", "namada_sdk/benches"]
2222
migrations = ["namada_migrations", "namada_sdk/migrations", "linkme"]
23-
namada-eth-bridge = ["namada_sdk/namada-eth-bridge"]
2423

2524
[dependencies]
2625
namada_core.workspace = true

0 commit comments

Comments
 (0)