-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from movemntdev/0xmovses/protocol-units-create
0xmovses/protocol units create
- Loading branch information
Showing
21 changed files
with
106 additions
and
47 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -2,3 +2,4 @@ | |
Cargo.lock | ||
methods/guest/Cargo.lock | ||
target/ | ||
/protocol-units/zkfp/vendors/* |
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,39 @@ | ||
[package] | ||
name = "protocol-units" | ||
version = "0.1.0" | ||
edition = "2021" | ||
description = "Protocol Units for the Movement SDK" | ||
|
||
[[bin]] | ||
name = "data-availability" | ||
path = "data-availability/src/main.rs" | ||
|
||
[[bin]] | ||
name = "host" | ||
path = "zkfp/host/src/main.rs" | ||
|
||
[[bin]] | ||
name = "methods" | ||
path = "zkfp/methods/src/main.rs" | ||
|
||
[[bin]] | ||
name = "guest" | ||
path = "zkfp/guest/src/main.rs" | ||
|
||
[dependencies] | ||
anyhow = "1.0" | ||
risc0-zkvm = { version = "0.20.1", features = ["std"] } | ||
tracing-subscriber = { version = "0.3", features = ["env-filter"] } | ||
tempfile = "3.2.0" | ||
serde = "1.0" | ||
|
||
methods = { path = "../methods" } | ||
|
||
# Move dependencies. | ||
move-vm-runtime = { workspace = true } | ||
move-vm-test-utils = { workspace = true } | ||
move-binary-format = { workspace = true } | ||
move-vm-types = { workspace = true } | ||
move-core-types = { workspace = true } | ||
move-compiler = { workspace = true } | ||
move-stdlib = { workspace = true } |
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,5 @@ | ||
[package] | ||
name = "data-availability" | ||
version = "0.1.0" | ||
edition = "2021" | ||
description = "Data Availability adapters for the Movement SDK" |
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 @@ | ||
fn main() {} |
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,35 @@ | ||
[package] | ||
name = "zkfp" | ||
version = "0.1.0" | ||
edition = "2021" | ||
description = "Testing environment for Zero Konwledge Fraud Proofs on Movement" | ||
|
||
[[bin]] | ||
name = "host" | ||
path = "host/src/main.rs" | ||
|
||
[[bin]] | ||
name = "methods" | ||
path = "methods/src/main.rs" | ||
|
||
[[bin]] | ||
name = "guest" | ||
path = "methods/guest/src/main.rs" | ||
|
||
[dependencies] | ||
anyhow = "1.0" | ||
risc0-zkvm = { version = "0.20.1", features = ["std"] } | ||
tracing-subscriber = { version = "0.3", features = ["env-filter"] } | ||
tempfile = "3.2.0" | ||
serde = "1.0" | ||
|
||
methods = { path = "zkfp/methods" } | ||
|
||
# Move dependencies. | ||
move-vm-runtime = { workspace = true } | ||
move-vm-test-utils = { workspace = true } | ||
move-binary-format = { workspace = true } | ||
move-vm-types = { workspace = true } | ||
move-core-types = { workspace = true } | ||
move-compiler = { workspace = true } | ||
move-stdlib = { workspace = true } |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.