Skip to content

Commit

Permalink
update gitmodule branch (#94)
Browse files Browse the repository at this point in the history
  • Loading branch information
capossele authored Apr 2, 2024
1 parent 29214b4 commit 83b3129
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
[submodule "lib/risc0-ethereum"]
path = lib/risc0-ethereum
url = https://github.com/risc0/risc0-ethereum
branch = release-0.8
branch = release-0.9
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/risc0-ethereum
Submodule risc0-ethereum updated 62 files
+36 −0 .github/workflows/main.yml
+391 −49 Cargo.lock
+27 −9 Cargo.toml
+7 −1 README.md
+14 −0 examples/README.md
+27 −0 examples/erc20-counter/.gitignore
+3 −0 examples/erc20-counter/.solhint.json
+5,142 −0 examples/erc20-counter/Cargo.lock
+33 −0 examples/erc20-counter/Cargo.toml
+84 −0 examples/erc20-counter/README.md
+24 −0 examples/erc20-counter/apps/Cargo.toml
+48 −0 examples/erc20-counter/apps/README.md
+152 −0 examples/erc20-counter/apps/src/bin/publisher.rs
+160 −0 examples/erc20-counter/apps/src/lib.rs
+63 −0 examples/erc20-counter/contracts/Counter.sol
+63 −0 examples/erc20-counter/contracts/ERC20.sol
+11 −0 examples/erc20-counter/contracts/IERC20.sol
+219 −0 examples/erc20-counter/deployment-guide.md
+8 −0 examples/erc20-counter/foundry.toml
+18 −0 examples/erc20-counter/methods/Cargo.toml
+31 −0 examples/erc20-counter/methods/README.md
+46 −0 examples/erc20-counter/methods/build.rs
+2,163 −0 examples/erc20-counter/methods/guest/Cargo.lock
+25 −0 examples/erc20-counter/methods/guest/Cargo.toml
+59 −0 examples/erc20-counter/methods/guest/src/bin/balance_of.rs
+16 −0 examples/erc20-counter/methods/src/lib.rs
+5 −0 examples/erc20-counter/remappings.txt
+4 −0 examples/erc20-counter/rust-toolchain.toml
+46 −0 examples/erc20-counter/script/DeployCounter.s.sol
+43 −0 examples/erc20-counter/script/DeployERC20.s.sol
+97 −0 examples/erc20-counter/test-local-deployment.sh
+2 −0 examples/erc20/.gitignore
+4,069 −0 examples/erc20/Cargo.lock
+39 −0 examples/erc20/Cargo.toml
+105 −0 examples/erc20/README.md
+14 −0 examples/erc20/host/Cargo.toml
+85 −0 examples/erc20/host/src/main.rs
+10 −0 examples/erc20/methods/Cargo.toml
+17 −0 examples/erc20/methods/build.rs
+2,160 −0 examples/erc20/methods/guest/Cargo.lock
+21 −0 examples/erc20/methods/guest/Cargo.toml
+62 −0 examples/erc20/methods/guest/src/main.rs
+15 −0 examples/erc20/methods/src/lib.rs
+4 −0 examples/erc20/rust-toolchain.toml
+12 −0 examples/erc20/rustfmt.toml
+2 −0 license-check.py
+1 −1 relay/Cargo.toml
+1 −1 rust-toolchain.toml
+42 −0 view-call/Cargo.toml
+96 −0 view-call/README.md
+191 −0 view-call/src/config.rs
+110 −0 view-call/src/db.rs
+113 −0 view-call/src/ethereum.rs
+188 −0 view-call/src/host/db.rs
+161 −0 view-call/src/host/mod.rs
+238 −0 view-call/src/host/provider/ethers.rs
+311 −0 view-call/src/host/provider/file.rs
+108 −0 view-call/src/host/provider/mod.rs
+379 −0 view-call/src/lib.rs
+570 −0 view-call/src/mpt.rs
+735 −0 view-call/testdata/rpc_cache.json
+116 −0 view-call/tests/view_call.rs

0 comments on commit 83b3129

Please sign in to comment.