Skip to Content
EVMSolidity Resources

Solidity Resources

Most development resources for developing with Soldity on Ethereum Mainnet also apply to development on Sei.

This page suggests a minimal set of resources for getting started with building a decentralized app for Sei EVM.

IDEs

  • Remix
    An interactive Solidity IDE that is the easiest and fastest way to start coding and compiling Solidity smart contracts without any additional installations.
  • VSCode + Solidity extension

Basic Solidity

Intermediate Solidity

  • The Solidity Language
    Official documentation providing an end-to-end description of smart contracts, blockchain basics, compiling, and deployment on an EVM.
  • Solidity Patterns
    A repository of code templates with explanations of their usage.
  • Cookbook.dev
    Offers interactive example template contracts with live editing, one-click deploy, and an AI chat integration for coding help.
  • OpenZeppelin
    Provides a library of customizable template contracts for common Ethereum token deployments (e.g., ERC20, ERC721, ERC1155, Proxy). Note that these are not gas optimized. They provide the defacto standard for smart contract templates and are used across almost all existing smart contracts.
  • Uniswap
    A professional, easy-to-digest smart contract of the Uniswap V2 pools that gives an overview of an in-production Solidity dApp. A guided walkthrough is available here. For the more advanced Uniswap Pools, check out the Uniswap V3 here and Uniswap V4 here.
  • Morpho Finance
    Morpho Finance’s contracts provides an excellent real-world example of production-grade Solidity smart contracts, demonstrating how a successful DeFi lending protocol is structured and implemented. By studying Morpho’s codebase, you can learn advanced patterns for gas optimization, security best practices, and complex financial logic implementation in a production environment. The accompanying documentation here offers additional context to understand the protocol’s architecture and design principles.
  • Sky / Maker DAO A pioneering DeFi protocol that created the DAI and USDS stablecoin. MakerDAO’s codebase showcases complex financial mechanisms including collateralized debt positions, oracles, and governance systems. The project demonstrates how to implement a stable cryptocurrency backed by crypto collateral through sophisticated risk management systems.
  • Rareskills Blog
    Features in-depth articles on various Solidity concepts and their Book of Gas Optimization.
  • Foundry Fundamentals course by Cyfrin Updraft
    A comprehensive web3 development course covering Foundry—the industry-standard framework for building, deploying, and testing smart contracts.
  • Smart Contract Programmer YT channel
    Contains many in-depth videos covering topics from ABI encoding to EVM memory management.
  • DeFi developer roadmap

Advanced Solidity

Tutorials

Testing

Smart contract archives

Using the OpenZeppelin Wizard

OpenZeppelin provides a convenient web-based wizard to create standard contracts. Visit https://wizard.openzeppelin.com/ to access it.

The wizard allows you to:

  1. Select the contract type (ERC20, ERC721, ERC1155, etc.)
  2. Configure settings, features, and access controls
  3. Add custom functionality through a user-friendly interface
  4. Generate ready-to-use Solidity code

The wizard is perfect for:

  • Beginners learning smart contract development
  • Quickly bootstrapping standard token contracts
  • Exploring different configuration options
  • Understanding best practices in contract development

Here’s how to use it:

  1. Visit https://wizard.openzeppelin.com/
  2. Select the type of contract you want to create
  3. Configure the settings (name, symbol, features)
  4. Add any additional functionality you need
  5. Copy the generated code and paste it into your project
  6. Customize as needed

Best Practices & Security Considerations

When developing on Sei V2 EVM with OpenZeppelin contracts, follow these best practices:

  1. Always use the latest version of OpenZeppelin contracts
  2. Start with existing, audited components rather than building from scratch
  3. Run comprehensive tests before deploying to mainnet
  4. Consider upgradeability for complex applications
  5. Use access controls like Ownable or AccessControl for privileged functions
  6. Implement reentrancy guards where needed
  7. Avoid transfer() and send() for ETH transfers, use call() with reentrancy protection
  8. Validate all inputs and check for edge cases
  9. Consider gas optimization, but not at the expense of security
  10. Consider getting an audit for high-value contracts
Last updated on