Phy-ve / solady

Optimized Solidity snippets.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

solady

NPM CI MIT License

Gas optimized Solidity snippets.

I'm sooooooOooooooooOoooOoooooooooooooooo...

Contracts

auth
├─ Ownable"Simple single owner authorization mixin"
├─ OwnableRoles"Simple single owner and multiroles authorization mixin"
tokens
├─ ERC20"Modern and gas efficient ERC20 + EIP-2612 implementation"
├─ ERC721"Simple ERC721 implementation with storage hitchhiking"
utils
├─ MerkleProofLib"Library for verification of Merkle proofs"
├─ SignatureCheckerLib"Library for verification of ECDSA and ERC1271 signatures"
├─ ECDSA"Library for verification of ECDSA signatures"
├─ EIP712"Contract for EIP-712 typed structured data hashing and signing"
├─ ERC1967Factory"Factory for deploying and managing ERC1967 proxy contracts"
├─ ERC1967FactoryConstants"The address and bytecode of the canonical ERC1967Factory"
├─ LibSort"Library for efficient sorting of memory arrays"
├─ LibPRNG"Library for generating psuedorandom numbers"
├─ Base64"Library for Base64 encoding and decoding"
├─ SSTORE2"Library for cheaper reads and writes to persistent storage"
├─ CREATE3"Deploy to deterministic addresses without an initcode factor"
├─ LibRLP"Library for computing contract addresses from their deployer and nonce"
├─ LibBit"Library for bit twiddling and boolean operations"
├─ Clone"Class with helper read functions for clone with immutable args"
├─ LibClone"Minimal proxy library"
├─ LibString"Library for converting numbers into strings and other string operations"
├─ LibBitmap"Library for storage of packed booleans"
├─ LibMap"Library for storage of packed unsigned integers"
├─ MinHeapLib"Library for managing a min-heap in storage"
├─ RedBlackTreeLib"Library for managing a red-black-tree in storage"
├─ Multicallable"Contract that enables a single call to call multiple methods on itself"
├─ SafeTransferLib"Safe ERC20/ETH transfer lib that handles missing return values"
├─ DynamicBufferLib"Library for buffers with automatic capacity resizing"
├─ FixedPointMathLib"Arithmetic library with operations for fixed-point numbers"
├─ SafeCastLib"Library for integer casting that reverts on overflow"
└─ DateTimeLib"Library for date time operations"

Contributing

This repository serves as a laboratory for cutting edge snippets that may be merged into Solmate.

Feel free to make a pull request.

Do refer to the contribution guidelines for more details.

Safety

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 loss incurred through any use of this codebase.

While Solady has been heavily tested, there may be parts that may exhibit unexpected emergent behavior when used with other code.

Please always include your own thorough tests when using Solady to make sure it works correctly with your code.

Installation

To install with Foundry:

forge install vectorized/solady

To install with Hardhat or Truffle:

npm install solady

Upgradability

All contracts in Solady are compatible with both upgradeable and non-upgradeable (i.e. regular) contracts.

Please call any required internal initialization methods accordingly.

Acknowledgements

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

About

Optimized Solidity snippets.

License:MIT License


Languages

Language:Solidity 100.0%