We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c69b043 + cc35b52 commit 80beb37Copy full SHA for 80beb37
.github/workflows/coverage-check.yaml
@@ -0,0 +1,56 @@
1
+name: Solidity Lint, and Coverage
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
9
10
11
+jobs:
12
+ lint:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - name: Checkout Repository
16
+ uses: actions/checkout@v2
17
18
+ - name: Install pnpm
19
+ run: npm install -g pnpm
20
21
+ - name: Set up Node.js
22
+ uses: actions/setup-node@v2
23
+ with:
24
+ node-version: '18'
25
26
+ - name: Install Dependencies
27
+ run: pnpm install
28
29
+ - name: Run Solidity Linter
30
+ run: pnpm exec solhint 'src/**/*.sol'
31
32
+ coverage:
33
34
35
36
37
38
+ - name: Install Foundry
39
+ uses: foundry-rs/foundry-toolchain@v1
40
41
+ version: nightly
42
43
+ - name: Install forge-coverage
44
+ run: forge install
45
46
+ - name: Run Coverage
47
+ run: forge coverage --report lcov
48
+ # Check fails if coverage percentage falls under 80%
49
+ - name: Check Coverage Threshold
50
+ run: |
51
+ COVERAGE=$(forge coverage --report summary | grep 'Total coverage:' | awk '{print $3}' | cut -d'%' -f1)
52
+ echo "Coverage is $COVERAGE%"
53
+ if [ "$COVERAGE" -lt 80 ]; then
54
+ echo "Code coverage ($COVERAGE%) is below the threshold (80%)"
55
+ exit 1
56
+ fi
.github/workflows/lint-pr.yaml
@@ -0,0 +1,33 @@
+name: "Lint PR title and commits"
+ types:
+ - opened
+ - edited
+ - synchronize
+ - reopened
+permissions:
+ pull-requests: read
+ main:
+ name: Validate PR follows Conventional Commits
+ - uses: amannn/action-semantic-pull-request@v5
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ ## A non-comprehensive list of scopes. Scope is not required, but strongly encouraged, as it brings
+ ## structure to changelogs.
+ scopes: |
+ contracts
+ test
+ requireScope: false
+ subjectPattern: ^(?![A-Z]).+$
+ subjectPatternError: |
+ The subject "{subject}" found in the pull request title "{title}"
+ didn't match the configured pattern. Please ensure that the subject
+ doesn't start with an uppercase character.
.github/workflows/upgrade-safe.yaml
@@ -0,0 +1,46 @@
+name: 'Contracts: Storage check'
+ workflow_dispatch:
+env:
+ RPC_URL: https://filecoin-calibration.chainup.net/rpc/v1
+ PRIVATE_KEY: 0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef
+ storage:
+ name: Storage layout check
+ if: ${{ !github.event.pull_request.draft }}
+ - uses: webfactory/[email protected]
+ ssh-private-key: |
+ ${{ secrets.BUILTIN_ACTORS_DEPLOY_KEY }}
+ ${{ secrets.CONTRACTS_DEPLOY_KEY }}
+ - uses: actions/checkout@v3
+ submodules: recursive
+ - name: Setup Node
+ uses: actions/setup-node@v4
+ node-version: '18.x'
+ cache: 'pnpm'
+ cache: false
+ - name: Install Node dependencies
+ - name: Storage check
+ run: pnpm exec hardhat storage-layout --check
.gitignore
@@ -1,6 +1,8 @@
# Compiler files
cache/
out/
+cache_hardhat/
+artifacts/
# Ignores development broadcast logs
!/broadcast
@@ -16,4 +18,5 @@ docs/
settings.json
-.DS_Store
+.DS_Store
+node_modules/
.solhint.json
@@ -0,0 +1,32 @@
+{
+ "extends": "solhint:recommended",
+ "rules": {
+ "compiler-version": ["error", "^0.8.0"],
+ "func-visibility": [
+ "warn",
+ {
+ "ignoreConstructors": true
+ }
+ ],
+ "no-inline-assembly": ["off"],
+ "no-global-import": "error",
+ "no-unused-import": "off",
+ "no-unused-vars": "error",
+ "const-name-snakecase": "error",
+ "contract-name-camelcase": "error",
+ "event-name-camelcase": "error",
+ "func-name-mixedcase": "error",
+ "func-param-name-mixedcase": "error",
+ "modifier-name-mixedcase": "error",
+ "private-vars-leading-underscore": "off",
+ "var-name-mixedcase": "error",
+ "imports-on-top": "error",
+ "no-empty-blocks": "error",
+ "quotes": "error",
+ "use-forbidden-name": "error",
+ "visibility-modifier-order": "error",
+ "avoid-tx-origin": "error",
+ "reentrancy": "error",
+ "explicit-types": ["error", "explicit"]
+}
hardhat.config.js
@@ -0,0 +1,31 @@
+/** @type import('hardhat/config').HardhatUserConfig */
+require("hardhat-storage-layout-changes");
+require("@nomicfoundation/hardhat-foundry");
+const path = require("path");
+module.exports = {
+ solidity: {
+ compilers: [
+ version: "0.8.23",
+ },
+ version: "0.8.26",
+ paths: {
+ sources: "./src",
+ storageLayouts: ".storage-layouts",
+ storageLayoutConfig: {
+ contracts: ['src/Hoku.sol:Hoku'],
+ fullPath: true
+ resolve: {
+ alias: {
+ "@openzeppelin/contracts": path.resolve(__dirname, "lib/openzeppelin-contracts/contracts"),
+};
package.json
@@ -0,0 +1,20 @@
+ "name": "contracts",
+ "version": "1.0.0",
+ "description": "",
+ "main": "index.js",
+ "scripts": {
+ "test": "forge test"
+ "keywords": [],
+ "author": "",
+ "license": "ISC",
+ "devDependencies": {
+ "@nomicfoundation/hardhat-foundry": "^1.1.2",
+ "hardhat": "^2.22.13",
+ "solhint": "^5.0.3"
+ "dependencies": {
+ "hardhat-storage-layout-changes": "^0.1.2"
0 commit comments