Atomix is a minimal smart contract library focused on providing the bare minimum implementations of popular Ethereum standards.
No extra features, no unnecessary complexity — just the pure essentials.
auth
├─ Ownable — "Ownable contract with single owner authorization."
tokens
├─ ERC20 - "Minimal ERC20 implementation compliant with ERC-20 Token Standard."
├─ ERC721 - "Minimal ERC721 implementation compliant with Non-Fungible Token Standard."
├─ WETH - "Minimal WETH implementation."
utils
├─ Pausable - "Contract that has capabilities to pause functions during emergencies."
├─ ReenterancyGuard - "Contract to prevent funtions being reentered before its execution finishes."(More coming soon.)
To install with Foundry:
forge install gopiinho/atomixor clone manually:
git clone https://github.com/gopiinho/atomix.gitMIT License. Free to use, modify, and build on.
