From 217780de1734c6c995f8b256b6db3a50a661d2b1 Mon Sep 17 00:00:00 2001 From: Gabriel de Quadros Ligneul <8294320+gligneul@users.noreply.github.com> Date: Thu, 28 Sep 2023 11:30:42 -0300 Subject: [PATCH] chore: bump rollups contracts to 1.0.2 --- README.md | 2 +- build/Dockerfile | 2 +- build/shasumfile | 2 +- offchain/contracts/build.rs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) 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/build/shasumfile b/build/shasumfile index 22d9e64fd..3344b39a1 100644 --- a/build/shasumfile +++ b/build/shasumfile @@ -1 +1 @@ -c4a9b0d4d07306277d15194b07b2a65d18262a3012a3c296ce2a485e3c08b4bc rollups-1.0.0.tgz +de89fc94724e8ca3ebc63a42b74ccc69b0c0e890dc9b0b0f531faab095696afd rollups-1.0.2.tgz 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()?;