Skip to content

Commit a8fab1f

Browse files
authored
adapters/sovereign: nest sovereign adapter (#46)
Moves sugondat-da-adapter under adapters/sovereign. In anticipation of adding more adapters
1 parent bdb7c43 commit a8fab1f

File tree

18 files changed

+6
-6
lines changed

18 files changed

+6
-6
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ members = [
55
"sugondat-chain/pallets/*",
66
"sugondat-chain/runtime",
77
"sugondat-chain/primitives",
8-
"sugondat-da-adapter",
8+
"adapters/sovereign",
99
"sugondat-nmt",
1010
"sugondat-shim",
1111
"sugondat-shim/common/sovereign",
File renamed without changes.

sugondat-da-adapter/Cargo.toml renamed to adapters/sovereign/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ borsh = { version = "0.10.3", features = ["bytes"] }
2020
bytes = { version = "1", features = ["serde"] }
2121

2222
sha2 = { version = "0.10.6", default-features = false }
23-
sugondat-nmt = { path = "../sugondat-nmt", default-features = false }
23+
sugondat-nmt = { path = "../../sugondat-nmt", default-features = false }
2424
jsonrpsee = { version = "0.20.3", optional = true, features = ["ws-client"] }
2525
tokio = { version = "1", optional = true }
26-
sugondat-shim-common-sovereign = { path = "../sugondat-shim/common/sovereign", optional = true, default-features = false, features = [
26+
sugondat-shim-common-sovereign = { path = "../../sugondat-shim/common/sovereign", optional = true, default-features = false, features = [
2727
"client",
2828
] }
2929
anyhow = "1.0.68"
File renamed without changes.
File renamed without changes.
File renamed without changes.

demo/sovereign/demo-rollup/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ default-run = "sov-demo-rollup"
1212

1313
[dependencies]
1414
# non-optional dependencies
15-
sugondat-da-adapter = { path = "../../sugondat-da-adapter" }
15+
sugondat-da-adapter = { path = "../../adapters/sovereign" }
1616

1717
const-rollup-config = { path = "../const-rollup-config" }
1818
sov-stf-runner = { git = "https://github.com/Sovereign-Labs/sovereign-sdk", features = ["native"], rev = "6058b31" }

demo/sovereign/demo-rollup/provers/risc0/guest-sugondat/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ risc0-zkvm-platform = "0.18"
1313
demo-stf = { path = "../../../stf" }
1414
sov-risc0-adapter = { git = "https://github.com/Sovereign-Labs/sovereign-sdk", rev = "6058b31" }
1515
const-rollup-config = { path = "../../../../const-rollup-config" }
16-
sugondat-da-adapter = { path = "../../../../../sugondat-da-adapter", default-features = false, features = ["verifier"] }
16+
sugondat-da-adapter = { path = "../../../../../adapters/sovereign", default-features = false, features = ["verifier"] }
1717
sov-modules-api = { git = "https://github.com/Sovereign-Labs/sovereign-sdk", rev = "6058b31" }
1818
sov-state = { git = "https://github.com/Sovereign-Labs/sovereign-sdk", rev = "6058b31" }
1919
sov-modules-stf-template = { git = "https://github.com/Sovereign-Labs/sovereign-sdk", rev = "6058b31" }

sugondat-submit-blob/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
77

88
[dependencies]
9-
sugondat-da-adapter = { path = "../sugondat-da-adapter" }
9+
sugondat-da-adapter = { path = "../adapters/sovereign" }
1010
const-rollup-config = { path = "../demo/sovereign/const-rollup-config" }
1111
sov-rollup-interface = { git = "https://github.com/Sovereign-Labs/sovereign-sdk", features = [
1212
"native",

0 commit comments

Comments
 (0)