diff --git a/README.md b/README.md index 2fbf6bdb8..d2d7d058e 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ The Cartesi Node depends on the following components: |---|---| | Cartesi Machine SDK | [v0.16.2](https://github.com/cartesi/machine-emulator/releases/tag/v0.16.2) | | Cartesi OpenAPI Interfaces | [v0.6.0](https://github.com/cartesi/openapi-interfaces/releases/tag/v0.6.0) | -| Cartesi Rollups Contracts | [v1.0.1](https://github.com/cartesi/rollups/releases/tag/v1.0.1) | +| Cartesi Rollups Contracts | [v1.0.2](https://github.com/cartesi/rollups/releases/tag/v1.0.2) | | Cartesi Server Manager | [v0.8.2](https://github.com/cartesi/server-manager/releases/tag/v0.8.2) | ### Running diff --git a/build/Dockerfile b/build/Dockerfile index 6e930b14d..8815c16ff 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -5,7 +5,7 @@ ARG RUST_VERSION=1.72.1 ARG SERVER_MANAGER_VERSION=0.8.2 -ARG ROLLUPS_CONTRACTS_VERSION=1.0.0 +ARG ROLLUPS_CONTRACTS_VERSION=1.0.2 ARG BASE_PATH=/opt/cartesi ARG RUST_BUILD_PATH=${BASE_PATH}/src/rollups-node/offchain diff --git a/offchain/contracts/build.rs b/offchain/contracts/build.rs index 442e1261c..4edbc6a69 100644 --- a/offchain/contracts/build.rs +++ b/offchain/contracts/build.rs @@ -11,7 +11,7 @@ use std::str; use eth_state_fold_types::contract; const ROLLUPS_CONTRACTS_URL: &str = - "https://registry.npmjs.org/@cartesi/rollups/-/rollups-1.0.1.tgz"; + "https://registry.npmjs.org/@cartesi/rollups/-/rollups-1.0.2.tgz"; fn main() -> Result<(), Box> { let tempdir = tempfile::tempdir()?;