Skip to content
Open
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
5 changes: 5 additions & 0 deletions .changeset/loud-states-change.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@cartesi/devnet": patch
---

Upgrade PRT to v2.1.0, rollups contract to v2.2.0 and update url as dave artefacts filename changed.
8 changes: 4 additions & 4 deletions packages/devnet/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ import * as anvil from "./anvil";
import { downloadAndExtract } from "./download";

const ANVIL_VERSION = "1.4.3";
const ROLLUPS_VERSION = "2.1.1";
const PRT_VERSION = "2.0.1";
const ROLLUPS_VERSION = "2.2.0";
const PRT_VERSION = "2.1.0";
const CANNON_VERSION = "2.0.0";

const supportedChains = {
Expand All @@ -36,11 +36,11 @@ const supportedChains = {
*/
const dependencies: ListrTask[] = [
{
url: `https://github.com/cartesi/dave/releases/download/v${PRT_VERSION}/cartesi-rollups-prt-anvil-v${ANVIL_VERSION}.tar.gz`,
url: `https://github.com/cartesi/dave/releases/download/v${PRT_VERSION}/cartesi-rollups-prt-${PRT_VERSION}-anvil-v${ANVIL_VERSION}.tar.gz`,
destination: "build",
},
{
url: `https://github.com/cartesi/dave/releases/download/v${PRT_VERSION}/cartesi-rollups-prt-contract-artifacts.tar.gz`,
url: `https://github.com/cartesi/dave/releases/download/v${PRT_VERSION}/cartesi-rollups-prt-${PRT_VERSION}-contract-artifacts.tar.gz`,
destination: "out",
stripComponents: 3,
},
Expand Down