Solidity modules and utilities that go far beyond mediocre solidity.
- Implementation of Contracts Registry pattern
- Versatile access control smart contracts (Merkle whitelists, RBAC)
- Enhanced and simplified Diamond pattern
- Advanced data structures (Vector, DynamicSet, PriorityQueue, AVLTree)
- ZK-friendly Sparse Merkle Tree and Incremental Merkle Tree implementations
- Flexible finance primitives (Staking, Vesting)
- Robust UniswapV2 and UniswapV3 oracles
- Lightweight SBT implementation
- Utilities to ease work with memory, ERC20 decimals, arrays, sets, and ZK proofs
Built with the help of Openzeppelin Contracts (4.9.6).
$ npm install @solarity/solidity-lib
The latest stable version is always in the master
branch.
Check out the project's documentation with broad explanations and usage examples of every module. Full natspec
guides are also available in the source code.
You will find the smart contracts in the /contracts
directory. Feel free to play around and check the project's structure.
Once the npm package is installed, one can use the library just like that:
pragma solidity ^0.8.4;
import {OwnableContractsRegistry} from "@solarity/solidity-lib/contracts-registry/presets/OwnableContractsRegistry.sol";
contract ContractsRegistry is OwnableContractsRegistry {
. . .
}
Important
It is important to use the library as it is shipped and not copy-paste the code from untrusted sources.
We are open to any mind-blowing ideas! Please take a look at our contribution guidelines to get involved.
The library is released under the MIT License.