State-of-the-art, highly opinionated, hyper-optimised, and secure πVyper smart contract building blocks.
Warning
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.
src
βββ snekmate
βββ auth
β βββ Ownable β "Owner-Based Access Control Functions"
β βββ Ownable2Step β "2-Step Ownership Transfer Functions"
β βββ AccessControl β "Multi-Role-Based Access Control Functions"
β βββ interfaces
β βββ IAccessControl β "AccessControl Interface Definition"
βββ extensions
β βββ ERC2981 β "ERC-721 and ERC-1155 Compatible ERC-2981 Reference Implementation"
β βββ ERC4626 β "Modern and Gas-Efficient ERC-4626 Tokenised Vault Implementation"
β βββ interfaces
β βββ IERC2981 β "EIP-2981 Interface Definition"
βββ governance
β βββ TimelockController β "Multi-Role-Based Timelock Controller Reference Implementation"
βββ tokens
β βββ ERC20 β "Modern and Gas-Efficient ERC-20 + EIP-2612 Implementation"
β βββ ERC721 β "Modern and Gas-Efficient ERC-721 + EIP-4494 Implementation"
β βββ ERC1155 β "Modern and Gas-Efficient ERC-1155 Implementation"
β βββ interfaces
β βββ IERC20Permit β "EIP-2612 Interface Definition"
β βββ IERC721Enumerable β "EIP-721 Optional Enumeration Interface Definition"
β βββ IERC721Metadata β "EIP-721 Optional Metadata Interface Definition"
β βββ IERC721Permit β "EIP-4494 Interface Definition"
β βββ IERC721Receiver β "EIP-721 Token Receiver Interface Definition"
β βββ IERC1155 β "EIP-1155 Interface Definition"
β βββ IERC1155MetadataURI β "EIP-1155 Optional Metadata Interface Definition"
β βββ IERC1155Receiver β "EIP-1155 Token Receiver Interface Definition"
β βββ IERC4906 β "EIP-4906 Interface Definition"
βββ utils
βββ Base64 β "Base64 Encoding and Decoding Functions"
βββ BatchDistributor β "Batch Sending Both Native and ERC-20 Tokens"
βββ CreateAddress β "`CREATE` EVM Opcode Utility Function for Address Calculation"
βββ Create2Address β "`CREATE2` EVM Opcode Utility Functions for Address Calculations"
βββ ECDSA β "Elliptic Curve Digital Signature Algorithm (ECDSA) Functions"
βββ SignatureChecker β "ECDSA and EIP-1271 Signature Verification Functions"
βββ EIP712DomainSeparator β "EIP-712 Domain Separator"
βββ Math β "Standard Mathematical Utility Functions"
βββ MerkleProofVerification β "Merkle Tree Proof Verification Functions"
βββ Multicall β "Multicall Functions"
βββ interfaces
βββ IERC5267 β "EIP-5267 Interface Definition"
Important
π snekmate uses a ZeroVer-based versioning scheme. This means π snekmate's major version will never exceed the first and most important number in computing: zero.
We offer three convenient ways to install the π snekmate contracts:
You can install π snekmate via submodules using Foundry with:
forge install pcaversaccio/snekmate
If you want to leverage π snekmate's
VyperDeployer
contract for your own testing, ensure that you compile the Vyper contracts with the same EVM version as configured in yourfoundry.toml
file. TheVyperDeployer
contract offers two overloadeddeployContract
functions that allow the configuration of the target EVM version. Please note that since Vyper version0.3.8
the default EVM version is set toshanghai
.
You can install π snekmate from PyPI with:
pip install snekmate
You can use
pip install snekmate -t .
to install the contracts directly into the current working directory!
You can install π snekmate from npm with:
npm install --save-dev snekmate
Or if you are using Yarn:
yarn add --dev snekmate
In case you are using pnpm, invoke:
pnpm add --save-dev snekmate
Caution
It is possible to install the latest versions of main
or any other branch locally via pip install git+https://github.com/pcaversaccio/snekmate.git@<branch>
or forge install pcaversaccio/snekmate && forge update
. Each branch, including the main
branch, must be understood as a development branch that should be avoided in favour of tagged releases. The release process includes security measures that the repository branches do not guarantee.
This repository contains Foundry-based unit tests, property-based tests (i.e. fuzzing), and invariant tests for all contracts, if applicable. All tests are run as part of the CI pipeline test-contracts
.
Note
An invariant is a property of a program that should always hold true. Fuzzing is a way of checking whether the invariant is falsifiable.
Contract | Unit Tests | Property-Based Tests | Invariant Tests |
---|---|---|---|
Ownable |
β | β | β |
Ownable2Step |
β | β | β |
AccessControl |
β | β | β |
ERC2981 |
β | β | β |
ERC4626 |
β | β | β |
TimelockController |
β | β | β |
ERC20 |
β | β | β |
ERC721 |
β | β | β |
ERC1155 |
β | β | β |
Base64 |
β | β | β |
BatchDistributor |
β | β | β |
CreateAddress |
β | β | β |
Create2Address |
β | β | β |
ECDSA |
β | β | β |
SignatureChecker |
β | β | β |
EIP712DomainSeparator |
β | β | β |
Math |
β | β | β |
MerkleProofVerification |
β | β | β |
Multicall |
β | β | β |
β Test Type Implemented β β Test Type Not Implemented
This repository is inspired by or directly modified from many sources, primarily:
- ApeAcademy
- Batch Distributor
CREATE
Factory- Disperse Research
- Multicall
- OpenZeppelin Contracts
- solady
- solmate
π snekmate only exists thanks to its contributors. There are many ways to get involved and contribute to our high-quality and secure smart contracts. Check out our Contribution Guidelines!
I am a strong advocate of the open-source and free software paradigm. However, if you feel my work deserves a donation, you can send it to this address: 0xe9Fa0c8B5d7F79DeC36D3F448B1Ac4cEdedE4e69
. I can pledge that I will use this money to help fix more existing challenges in the Ethereum ecosystem π€.