Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,13 +113,13 @@ We have the following feature flags in arm lib:

```toml
# Default configuration
anoma-rm-risc0 ="2.0.0-pre.1"
anoma-rm-risc0 ="2.0.0-rc.1"

# Proof aggregation (a single succinct proof per transaction)
anoma-rm-risc0 ={ version = "2.0.0-pre.1", features = ["aggregation"] }
anoma-rm-risc0 ={ version = "2.0.0-rc.1", features = ["aggregation"] }

# Logic-circuit-only usage
anoma-rm-risc0 ={ version = "2.0.0-pre.1", default-features = false }
anoma-rm-risc0 ={ version = "2.0.0-rc.1", default-features = false }
```

## Reproducibly generate proving and verifying keys (ELF and ImageID)
Expand Down
2 changes: 1 addition & 1 deletion arm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "anoma-rm-risc0"
description = "Anoma Resource Machine Implementation using RISC0 zkVM"
version = "2.0.0-pre.1"
version = "2.0.0-rc.1"
edition = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
Expand Down
Binary file modified arm/elfs/batch-aggregation-guest.bin
Binary file not shown.
Binary file modified arm/elfs/compliance-guest.bin
Binary file not shown.
Binary file modified arm/elfs/trivial-logic-guest.bin
Binary file not shown.
6 changes: 3 additions & 3 deletions arm/src/constants.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,19 @@ pub const BATCH_AGGREGATION_PK: &[u8] = include_bytes!("../elfs/batch-aggregatio
lazy_static! {
/// compliance verification key / compliance image id
pub static ref COMPLIANCE_VK: Digest =
Digest::from_hex("189e18348babf7ea166d7e66e6ef047e8d71d82f119b5ebaa5a4e9ae1f0f50a4")
Digest::from_hex("17658a4faaac46abcdf66c1f6ec9d0259c6c0f32d674ca06b041a7746d96ebe8")
.unwrap();

/// padding logic verification key / compliance image id
pub static ref PADDING_LOGIC_VK: Digest =
Digest::from_hex("92ffaeb55bfdcea4dba72ea10aa0532beafdd34658d37173a9cf4fe34f5f0f63")
Digest::from_hex("44e3114ddb22d06657e5cb1edc761e64dc54e70365f306cd0a8f6135591d99ae")
.unwrap();
}

#[cfg(feature = "aggregation")]
lazy_static! {
/// Batch aggregation verification key / Batch aggregation image id.
pub static ref BATCH_AGGREGATION_VK: Digest = Digest::from_hex("66e657da6258e265863f716ca28bbe8b7a6f54afdadf5d2132bb422e6626f715").unwrap();
pub static ref BATCH_AGGREGATION_VK: Digest = Digest::from_hex("67382671772a832be0ece0b7ce52019f015a364788559a12328c15850e721952").unwrap();
}

/// Global kind table, loaded once from a JSON file.
Expand Down
6 changes: 3 additions & 3 deletions arm_circuits/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion arm_circuits/compliance/methods/guest/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions arm_circuits/logic_test/methods/guest/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion arm_circuits/trivial_logic/methods/guest/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion arm_gadgets/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "anoma-rm-risc0-gadgets"
description = "Anoma Resource Machine Gadgets using RISC0 zkVM"
version = "2.0.0-pre.1"
version = "2.0.0-rc.1"
edition = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion arm_tests/arm_test_app/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "anoma-rm-risc0-test-app"
description = "An Anoma Resource Machine Test Application using RISC0 zkVM"
version = "2.0.0-pre.1"
version = "2.0.0-rc.1"
edition = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
Expand Down
Binary file modified arm_tests/arm_test_app/elf/logic-test-guest.bin
Binary file not shown.
2 changes: 1 addition & 1 deletion arm_tests/arm_test_app/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ pub const TEST_LOGIC_PK: &[u8] = include_bytes!("../elf/logic-test-guest.bin");
lazy_static! {
// test logic verification key / compliance image id
pub static ref TEST_LOGIC_VK: Digest =
Digest::from_hex("d4afb06da047f01dbd33417f8a01088aff72d27e82af32bf9013f2c9748b25ed")
Digest::from_hex("755cc2329435fc0ce768ab44572ec2c1ccc4a84afad58c890a0eec74a96040ff")
.unwrap();
}

Expand Down
2 changes: 1 addition & 1 deletion arm_tests/arm_test_witness/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "anoma-rm-risc0-test-witness"
description = "An Anoma Resource Machine Test Witness using RISC0 zkVM"
version = "2.0.0-pre.1"
version = "2.0.0-rc.1"
edition = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
Expand Down
Loading