Web3 Starter Kit

Quickstart template for building decentralized applications with smart contracts and blockchain tools

What's Included

Key Features

Development Tools

  • • Truffle for contract compilation
  • • Ganache local blockchain
  • • Drizzle frontend framework

Security Tools

  • • MythX vulnerability analysis
  • • Slither static analysis
  • • Foundry fuzz testing

Smart Contract Example


// SimpleStorage.sol
pragma solidity ^0.8.0;

contract SimpleStorage {
    uint storedData;

    function set(uint x) public {
        storedData = x;
    }

    function get() public view returns (uint) {
        return storedData;
    }
}

    

Getting Started

  1. 1. Install dependencies with npx hardhat
  2. 2. Deploy contract using npx hardhat run scripts/deploy.js
  3. 3. Test interactions with npx hardhat test
📥 Download Starter Kit (52.7MB)

Last updated: 2025-09-03