#alloy #ethereum #stylus #arbitrum #building-block #smart-contracts #rust

rustmate

Blazing fast, modern, and optimized Rust building blocks for smart contract development using Stylus

1 unstable release

0.1.0 Jan 9, 2024

#7 in #alloy

Download history 3/week @ 2024-01-09 3/week @ 2024-02-20 12/week @ 2024-02-27 38/week @ 2024-03-05 32/week @ 2024-03-12 5/week @ 2024-04-02

51 downloads per month

AGPL-3.0

66KB
1.5K SLoC

๐Ÿฆ€ rustmate

Run benchmarks License: AGPL v3

Blazing fast, modern, and optimized Rust building blocks for smart contract development using Stylus.

This is experimental software and is provided on an "as is" and "as available" basis. We do not give any warranties and will not be liable for any losses incurred through any use of this code base.

๐Ÿ“œ Contracts

auth
โ”œโ”€ Owned โ€” "Simple single owner authorization"
โ”œโ”€ Auth โ€” "Flexible and updatable auth pattern"
mixins
โ”œโ”€ ERC4626 โ€” "Minimal ERC4626 tokenized Vault implementation"
tokens
โ”œโ”€ WETH โ€” "Minimalist and modern Wrapped Ether implementation"
โ”œโ”€ ERC20 โ€” "Modern and gas efficient ERC20 + EIP-2612 implementation"
โ”œโ”€ ERC721 โ€” "Modern, minimalist, and gas efficient ERC721 implementation"
โ”œโ”€ ERC1155 โ€” "Minimalist and gas efficient standard ERC1155 implementation"
โ”œโ”€ ERC6909 โ€” "Minimalist and gas efficient standard ERC6909 implementation"
utils
โ”œโ”€ CREATE3 โ€” "Deploy to deterministic addresses without an initcode factor"
โ”œโ”€ Bytes32Address โ€” "Library for converting between addresses and bytes32 values"

๐Ÿ”ง How to use

First, install the Stylus SDK for Rust and create a new project:

cargo stylus new my-project --minimal

Then, install rustmate:

cargo install rustmate

Import the contracts you want to use:

use rustmate::tokens::erc20::{ERC20, ERC20Params};

โœ… Gas benchmarks

๐Ÿงช Results

ERC20
Function Rustmate Solmate OpenZeppelin Contracts 5.0
name() 23043 24504 24514
symbol() 22974 24571 24535
decimals() 22726 21512 21520
totalSupply() 25617 23562 23570
balanceOf() 26851 24292 24296
allowance() 28263 25011 25066
nonces() 26835 24302 N/A
approve() 50557 46683 46902
transfer() 74234 47133 27454
transferFrom() 60116 28993 29202
ERC721
Function Rustmate Solmate OpenZeppelin Contracts 5.0
name() 23286 24548 24556
symbol() 23225 24548 24556
ownerOf() 24212 24212 24308
balanceOf() 27094 24352 24352
getApproved() 26749 24132 26545
isApprovedForAll() 28447 25046 25104
tokenURI() 24293 23420 23420
approve() 48639 48693 49043
setApprovalForAll() 51279 46561 46669
transferFrom() 32777 32437 32947
safeTransferFrom() 32781 32643 31264
safeTransferFrom() 33146 33140 34139
supportsInterface() 21983 21983 21960
ERC1155
Function Rustmate Solmate OpenZeppelin Contracts 5.0
balanceOf() 28390 24631 24675
isApprovedForAll() 28474 25022 25081
uri() 24346 22291 24984
setApprovalForAll() 51321 46581 46690
safeTransferFrom() 30167 29793 31672
safeBatchTransferFrom() 33192 32054 33363
balanceOfBatch() 25094 22961 23735
supportsInterface() 22006 22006 22058
ERC6909
Function Rustmate Solmate OpenZeppelin Contracts 5.0
transfer() 77615 28656 N/A
transferFrom() 68799 29356 N/A
approve() 52110 47430 N/A
setOperator() 51152 46750 N/A
supportsInterface() 22376 21962 N/A

๐Ÿ‘ท How to replicate

Install Python and Rust, and then install the Stylus CLI tool with Cargo:

RUSTFLAGS="-C link-args=-rdynamic" cargo install --force cargo-stylus

Add the wasm32-unknown-unknown build target to your Rust compiler:

rustup target add wasm32-unknown-unknown

Then, clone the repository:

git clone https://github.com/cairoeth/rustmate && cd rustmate

Clone Arbitrum Nitro node that supports Stylus:

git clone -b stylus --recurse-submodules https://github.com/OffchainLabs/nitro-testnode.git && cd nitro-testnode

Run the node and wait for it to start up:

./test-node.bash --init --detach

Open another terminal window and fund the deployer address:

./test-node.bash script send-l2 --to address_0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266 --ethamount 100

Navigate back to rustmate and select a benchmark to run. For example, ERC20:

cd ../benchmark/erc20_benchmark && python snapshot.py

Check the results in the terminal or in the .gas-snapshot file.

๐Ÿ™๐Ÿผ Acknowledgements

This repository is inspired by or directly modified from many sources, primarily:

๐Ÿซก Contributing

Check out the Contribution Guidelines!

Dependencies

~11MB
~193K SLoC