-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* renaming * fix tests * update prover * Update stf * cleanup * fix ci
- Loading branch information
Showing
31 changed files
with
177 additions
and
175 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
[package] | ||
name = "sov-rollup-starter" | ||
version.workspace = true | ||
edition.workspace = true | ||
license.workspace = true | ||
authors.workspace = true | ||
homepage.workspace = true | ||
publish.workspace = true | ||
repository.workspace = true | ||
rust-version.workspace = true | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
#stf dependencies | ||
sov-modules-api = { path = "../module-system/sov-modules-api", features = ["native"] } | ||
sov-state = { path = "../module-system/sov-state" } | ||
sov-accounts = { path = "../module-system/module-implementations/sov-accounts", features = ["native"]} | ||
sov-bank = { path = "../module-system/module-implementations/sov-bank", features = ["native"] } | ||
sov-sequencer-registry = { path = "../module-system/module-implementations/sov-sequencer-registry", features = ["native"] } | ||
sov-modules-stf-template = { path = "../module-system/sov-modules-stf-template/", features = ["native"] } | ||
sov-stf-runner = { path = "../full-node/sov-stf-runner", features = ["native"] } | ||
borsh = { workspace = true } | ||
clap = { workspace = true } | ||
serde = { workspace = true } | ||
tracing = { workspace = true } | ||
serde_json = { workspace = true } | ||
jsonrpsee = { workspace = true } | ||
anyhow = { workspace = true } | ||
|
||
risc0-starter = { path = "./provers/risc0" } | ||
stf-starter = { path = "./stf", features = ["native"] } | ||
|
||
sov-db = { path = "../full-node/db/sov-db" } | ||
sov-sequencer = { path = "../full-node/sov-sequencer" } | ||
sov-rollup-interface = { path = "../rollup-interface", features = ["mocks"] } | ||
tokio = { workspace = true} | ||
|
||
# Change dependencies here to use a different DA layer or ZKVM | ||
sov-risc0-adapter = { path = "../adapters/risc0", features = ["native"] } | ||
|
||
# binary dependencies | ||
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] } | ||
|
||
[dev-dependencies] | ||
tempfile = { workspace = true } | ||
|
||
[features] | ||
default = [] | ||
|
||
[[bin]] | ||
name = "node" | ||
path = "src/bin/node.rs" | ||
|
||
[[bin]] | ||
name = "cli_wallet" | ||
path = "src/bin/cli_wallet.rs" | ||
|
2 changes: 2 additions & 0 deletions
2
templates/rollup-template/README.md → sov-rollup-starter/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
# Rollup Template | ||
|
||
This is still work in progress, please don't use it. | ||
|
||
This package is a convenient starting point for building a rollup using the Sovereign SDK |
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
.../rollup-template/provers/risc0/Cargo.toml → sov-rollup-starter/provers/risc0/Cargo.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[package] | ||
name = "template-risc0" | ||
name = "risc0-starter" | ||
version = "0.2.0" | ||
edition = "2021" | ||
resolver = "2" | ||
|
File renamed without changes.
60 changes: 30 additions & 30 deletions
60
...plate/provers/risc0/guest-mock/Cargo.lock → ...arter/provers/risc0/guest-mock/Cargo.lock
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions
10
...overs/risc0/guest-mock/src/bin/mock_da.rs → ...overs/risc0/guest-mock/src/bin/mock_da.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.