• Stars
    star
    1,976
  • Rank 22,491 (Top 0.5 %)
  • Language
    Solidity
  • License
    MIT License
  • Created almost 2 years ago
  • Updated 2 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Optimized Solidity snippets.

solady

NPM CI MIT License

Gas optimized Solidity snippets.

I'm sooooooOooooooooOoooOoooooooooooooooo...

Installation

To install with Foundry:

forge install vectorized/solady

To install with Hardhat or Truffle:

npm install solady

Contracts

The Solidity smart contracts are located in the src directory.

auth
├─ Ownable"Simple single owner authorization mixin"
├─ OwnableRoles"Simple single owner and multiroles authorization mixin"
tokens
├─ WETH"Simple Wrapped Ether implementation"
├─ ERC20"Simple ERC20 + EIP-2612 implementation"
├─ ERC4626"Simple ERC4626 tokenized Vault implementation"
├─ ERC721"Simple ERC721 implementation with storage hitchhiking"
├─ ERC2981"Simple ERC2981 NFT Royalty Standard implementation"
├─ ERC1155"Simple ERC1155 implementation"
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"
├─ LibZip"Library for compressing and decompressing bytes"
├─ 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"

Directories

src — "Solidity smart contracts"
test — "Foundry Forge tests"
js — "Accompanying JavaScript helper library"
ext — "Extra tests"
audits — "Audit reports"

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, or may break in future Solidity versions.

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

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:

More Repositories

1

dn404

Implementation of a co-joined ERC20 and ERC721 pair.
Solidity
398
star
2

multicaller

Efficient multicaller contracts
Solidity
212
star
3

Python-KD-Tree

A simple and fast KD-tree for points in Python for kNN or nearest points. (damm short at just ~60 lines) No libraries needed.
Python
158
star
4

closedsea

Optimized and flexible version of OpenSea's operator filterer
Solidity
130
star
5

soledge

Solidity snippets too edgy to be in Solady
Solidity
101
star
6

Aris

Aris - A fast and powerful tool to write HTML in JS easily. Includes syntax highlighting, templates, SVG, CSS autofixing, debugger support and more...
JavaScript
87
star
7

function-selector-miner

Solidity Function Selector Miner (AVX2 + Multithreaded)
Rust
51
star
8

Static-Sort

A simple C++ header-only library for fastest sorting of small arrays. Generates sorting networks on compile time via templates.
C++
47
star
9

preapprove

On-chain pre-approval registry for NFTs. Library included.
Solidity
41
star
10

Fluidsim

A C++ fluid simulator (SPH, OpenCL, GLSL, SSE, Fast Marching Cubes)
C++
18
star
11

VoxNet-Tensorflow

A Tensorflow Implementation of VoxNet.
Python
11
star
12

Othello-AI

A strong Othello AI bot for 50.021 Artificial Intelligence course.
Python
11
star
13

QDES

Quadratic Decay Exponential Surge
Solidity
9
star
14

Softee

Solidity
4
star
15

vectorized

4
star
16

create2crunch

A Rust program for finding salts that create gas-efficient Ethereum addresses via CREATE2.
Rust
2
star
17

Solidity-Code-Reviews

2
star
18

Sort-Me

A Realtime Multiplayer Sorting Game for Android
Java
2
star
19

ERC721A-Upgradeable-Old

Upgradeable version of ERC721A
Solidity
2
star
20

Python-Attribute-List

Add/set attributes to Python's built-in list.
Python
1
star
21

NFTStaker

Solidity
1
star
22

ERC721A-Transpiler

Transpiler for creating upgradable ERC721A
TypeScript
1
star
23

SUTD-Staff-Room-Maps-old-Dover-edition

An Android App for navigating the staff room in SUTD's old Dover Campus.
Java
1
star
24

CECSATSolver

CEC-SAT verification software for ISTD 2D Design Challenge
Java
1
star