solidity
Installation
SKILL.md
Solidity Development Standards
Instructions for how to write solidity code, from the Cyfrin security team.
Philosophy
- Everything will be attacked - Assume that any code you write will be attacked and write it defensively.
Code Quality and Style
- Absolute and named imports only — no relative (
..) paths
// good
import {MyContract} from "contracts/MyContract.sol";
// bad
import "../MyContract.sol";