Skip to content

Commit c0d7108

Browse files
committed
chore(cli): bump cartesi/sdk to 0.12.0-alpha.15
1 parent 66a555e commit c0d7108

4 files changed

Lines changed: 7 additions & 4 deletions

File tree

.changeset/green-planets-lie.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@cartesi/cli": patch
3+
---
4+
5+
bump cartesi/sdk to v0.12.0-alpha.15

apps/cli/src/compose/rollups/default.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ CARTESI_LOG_LEVEL="${CARTESI_LOG_LEVEL:-info}"
66
# features
77
CARTESI_FEATURE_INPUT_READER_ENABLED="${CARTESI_FEATURE_INPUT_READER_ENABLED:-true}"
88
CARTESI_FEATURE_CLAIM_SUBMISSION_ENABLED="${CARTESI_FEATURE_CLAIM_SUBMISSION_ENABLED:-true}"
9-
CARTESI_FEATURE_MACHINE_HASH_CHECK_ENABLED="${CARTESI_FEATURE_MACHINE_HASH_CHECK_ENABLED:-false}"
9+
CARTESI_FEATURE_MACHINE_HASH_CHECK_ENABLED="${CARTESI_FEATURE_MACHINE_HASH_CHECK_ENABLED:-true}"
1010

1111
# rollups
1212
CARTESI_EVM_READER_RETRY_POLICY_MAX_RETRIES="${CARTESI_EVM_READER_RETRY_POLICY_MAX_RETRIES:-3}"

apps/cli/src/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export class InvalidStringArrayError extends Error {
7474
const DEFAULT_FORMAT = "ext2";
7575
const DEFAULT_RAM = "128Mi";
7676
const DEFAULT_RAM_IMAGE = "/usr/share/cartesi-machine/images/linux.bin";
77-
export const DEFAULT_SDK_VERSION = "0.12.0-alpha.13";
77+
export const DEFAULT_SDK_VERSION = "0.12.0-alpha.15";
7878
export const DEFAULT_SDK_IMAGE = `cartesi/sdk:${DEFAULT_SDK_VERSION}`;
7979

8080
type Builder = "directory" | "docker" | "empty" | "none" | "tar";

apps/cli/src/exec/rollups.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import { Address, Hash } from "viem";
33
import { getMachineHash } from "../base.js";
44

55
export type RollupsDeployment = {
6-
id: number;
76
name: string;
87
address: Address;
98
templateHash: Hash;
@@ -31,7 +30,6 @@ export const getDeployments = async (
3130
"list",
3231
]);
3332
return JSON.parse(stdout).map((deployment: any) => ({
34-
id: deployment.id,
3533
name: deployment.name,
3634
address: deployment.iapplication_address,
3735
templateHash: deployment.template_hash,

0 commit comments

Comments
 (0)