A complete development environment template for building smart contracts on VeChain using Hardhat. This template comes pre-configured with everything you need to start developing, testing, and deploying smart contracts on VeChain networks.
- ✅ Hardhat configuration for VeChain networks (Solo, Testnet, Mainnet)
- 🐳 Thor-Solo instance for local development
- 📦 Upgradeable smart contracts templates
- 🧪 Comprehensive test suite setup
- 🔧 Deploy and upgrade scripts
- 🎭 Mock contracts for common VeChain contracts
- Node.js v20 (version specified in
.nvmrc
) - Yarn or npm
- Docker (for running Thor-Solo)
- Install dependencies:
yarn install
- Create your environment file:
cp .env.example .env
- Start the Thor-Solo instance:
yarn start-solo
yarn compile
yarn deploy:solo
or
yarn deploy:testnet
or
yarn deploy:mainnet
yarn test
or to generate a coverage report:
yarn test:coverage:solidity
Will generate the coverage report in the coverage
folder, open the index.html
file in your browser to see the report.
yarn generate-docs
Will generate the docs in the docs
folder.
This template is using the @openzeppelin/contracts-upgradeable
v5.0.2
and @openzeppelin/contracts
v5.0.2
in order to be compatible with the VeChain Solidity compiler version of 0.8.20
.