Skip to content

Commit fa69b46

Browse files
authored
feat: rust bindings for solidity facades (#73)
Solidity facades for use within WASM actors, e.g., for emitting events. - Lays groundwork for full method facades. We want to move away from the contract wrapper approach to EVM compatibility--they are hard to maintain and add extra gas. - The work here is based off internals of the `forge bind` command. - Use `make actor-facade` to generate rust bindings, which produces the crate `recall_sol_facade`, which is used in `ipc`. - Removes the events generated by the wrapper contracts in favor of the native ones, which means we get events from all tooling, not just JS libs / others that depend on the wrappers. --------- Signed-off-by: Sander Pick <[email protected]>
1 parent a87ac10 commit fa69b46

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+9003
-71
lines changed

.gitignore

+4-2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ docs/
1717
.env
1818

1919
settings.json
20-
2120
.DS_Store
22-
node_modules/
21+
node_modules/
22+
target/
23+
.idea
24+
.vscode

Makefile

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.PHONY: actor-facade
2+
3+
actor-facade:
4+
forge build
5+
cd crates/facade && BUILD_BINDINGS=1 cargo build

0 commit comments

Comments
 (0)