Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into gligneul/constructors
Browse files Browse the repository at this point in the history
  • Loading branch information
gligneul committed Feb 5, 2025
2 parents 62c39f2 + b8af63d commit f939056
Show file tree
Hide file tree
Showing 16 changed files with 163 additions and 94 deletions.
69 changes: 44 additions & 25 deletions examples/erc20/Cargo.lock

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

4 changes: 2 additions & 2 deletions examples/erc20/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ version = "0.1.0"
edition = "2021"

[dependencies]
alloy-primitives = "=0.8.14"
alloy-sol-types = "=0.8.14"
alloy-primitives = "=0.8.20"
alloy-sol-types = "=0.8.20"
stylus-sdk = { path = "../../stylus-sdk" }
mini-alloc = { path = "../../mini-alloc" }

Expand Down
2 changes: 2 additions & 0 deletions examples/erc20/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![cfg_attr(not(feature = "export-abi"), no_main)]

#[cfg(feature = "export-abi")]
fn main() {
erc20::print_from_args();
Expand Down
69 changes: 44 additions & 25 deletions examples/erc721/Cargo.lock

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

4 changes: 2 additions & 2 deletions examples/erc721/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ version = "0.1.0"
edition = "2021"

[dependencies]
alloy-primitives = "=0.8.14"
alloy-sol-types = "=0.8.14"
alloy-primitives = "=0.8.20"
alloy-sol-types = "=0.8.20"
stylus-sdk = { path = "../../stylus-sdk" }
mini-alloc = { path = "../../mini-alloc" }

Expand Down
2 changes: 2 additions & 0 deletions examples/erc721/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![cfg_attr(not(feature = "export-abi"), no_main)]

#[cfg(feature = "export-abi")]
fn main() {
erc721::print_from_args();
Expand Down
Loading

0 comments on commit f939056

Please sign in to comment.