Skip to content
Draft
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
2 changes: 1 addition & 1 deletion .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ runs:
- name: Set Foundry version
id: set-foundry-version
shell: bash
run: echo "foundry-version=v1.1.0" >> $GITHUB_OUTPUT
run: echo "foundry-version=v1.2.1" >> $GITHUB_OUTPUT

- uses: foundry-rs/foundry-toolchain@de808b1eea699e761c404bda44ba8f21aba30b2c # 1.3.1
with:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/upload-rust-bindings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:
--crate-version "$VERSION" \
--crate-license "Apache-2.0" \
--crate-description "Rust bindings for Cartesi Rollups smart contracts" \
--skip-extra-derives \
--alloy-version "0.12.4"
env:
VERSION: ${{ steps.extract_version.outputs.version }}
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/coverage
/dependencies
/deployments
/docs
/forge-docs
/node_modules
/out
lcov.info
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ deposit assets, submit claims, execute asset withdrawal orders, and more.
First, please ensure the following dependencies are installed:

- [corepack]
- [foundry] 1.1.0
- [foundry] 1.2.1

Then, you may clone the repository...

Expand Down
7 changes: 7 additions & 0 deletions cannonfile.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,15 @@ create2 = true
salt = "0x0000000000000000000000000000000000000000d5556a1a1397890355d302fb"
ifExists = "continue"

[deploy.Application]
artifact = "Application"
create2 = true
salt = "<%= zeroHash %>"
ifExists = "continue"

[deploy.ApplicationFactory]
artifact = "ApplicationFactory"
args = ["<%= contracts.Application.address %>"]
create2 = true
salt = "0x0000000000000000000000000000000000000000ba0ce3b081904f01ab19671c"
ifExists = "continue"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
},
"devDependencies": {
"@changesets/cli": "^2.29.4",
"@usecannon/cli": "^2.22.0"
"@usecannon/cli": "^2.23.0"
},
"files": [
"out"
Expand Down
Loading
Loading