Skip to content

Commit

Permalink
feat(cli): bump sdk
Browse files Browse the repository at this point in the history
  • Loading branch information
tuler committed Oct 18, 2024
1 parent 46f5193 commit 273af81
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 8 deletions.
5 changes: 5 additions & 0 deletions .changeset/blue-planes-develop.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@cartesi/cli": major
---

bump sdk to 0.12
2 changes: 1 addition & 1 deletion apps/cli/src/commands/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const CARTESI_DEFAULT_RAM_SIZE = "128Mi";

const CARTESI_LABEL_SDK_VERSION = `${CARTESI_LABEL_PREFIX}.sdk_version`;
const CARTESI_LABEL_SDK_NAME = `${CARTESI_LABEL_PREFIX}.sdk_name`;
const CARTESI_DEFAULT_SDK_VERSION = "0.9.0";
const CARTESI_DEFAULT_SDK_VERSION = "0.12.0-alpha.0";

export default class BuildApplication extends BaseCommand<
typeof BuildApplication
Expand Down
7 changes: 4 additions & 3 deletions apps/cli/src/node/docker-compose-anvil.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
anvil:
image: cartesi/sdk:0.10.0
image: cartesi/sdk:0.12.0-alpha.0
command:
[
"devnet",
Expand All @@ -19,7 +19,7 @@ services:
- 8545:8545

dapp_deployer:
image: cartesi/sdk:0.10.0
image: cartesi/sdk:0.12.0-alpha.0
restart: on-failure
depends_on:
anvil:
Expand All @@ -32,9 +32,10 @@ services:
"http://anvil:8545",
"--private-key",
"0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80",
"0x9E32e06Fd23675b2DF8eA8e6b0A25c3DF6a60AbC",
"0x4C11C7F82D6D56a726f9B53dd99af031AFd86BB6",
"deployContracts(address,address,bytes32,bytes32)",
"0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266",
"720",
"0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266",
"0x0000000000000000000000000000000000000000000000000000000000000000",
"0x0000000000000000000000000000000000000000000000000000000000000000",
Expand Down
2 changes: 1 addition & 1 deletion apps/cli/src/node/docker-compose-bundler.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
alto:
image: cartesi/sdk:0.10.0
image: cartesi/sdk:0.12.0-alpha.0
command:
- "alto"
- "--entrypoints"
Expand Down
2 changes: 1 addition & 1 deletion apps/cli/src/node/docker-compose-paymaster.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
mock-verifying-paymaster:
image: cartesi/sdk:0.10.0
image: cartesi/sdk:0.12.0-alpha.0
command: "mock-verifying-paymaster"
environment:
- ALTO_RPC=http://alto:4337
Expand Down
4 changes: 2 additions & 2 deletions packages/mock-verifying-paymaster/docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
anvil:
image: cartesi/sdk:0.10.0
image: cartesi/sdk:0.12.0-alpha.0
command: ["devnet", "--block-time", "${BLOCK_TIME:-5}"]
healthcheck:
test: ["CMD", "eth_isready"]
Expand All @@ -13,7 +13,7 @@ services:
- 8545:8545

alto:
image: cartesi/sdk:0.10.0
image: cartesi/sdk:0.12.0-alpha.0
command:
[
"alto",
Expand Down

0 comments on commit 273af81

Please sign in to comment.