Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 1.27 KB

README.md

File metadata and controls

36 lines (26 loc) · 1.27 KB

sol-template

CoverageBuild Tests Lint Static analysis

Barebones template to get started with Solidity projects.

Install

git clone https://github.com/0xmichalis/sol-template.git
cd sol-template
forge install

Build

forge build

Deploy

forge create --rpc-url <your_rpc_url> \
    --private-key <your_private_key> \
    --etherscan-api-key <your_etherscan_api_key> \
    --verify \
    src/Counter.sol:Counter

Contribute

forge snapshot -vvv
forge fmt