Skip to content

Fix EIP 712 - Data of the struct should be concatenated after type hash #223

Fix EIP 712 - Data of the struct should be concatenated after type hash

Fix EIP 712 - Data of the struct should be concatenated after type hash #223

Workflow file for this run

name: Lint contracts
on:
push:
branches: [main]
pull_request:
branches: ["*"]
paths:
- "contracts/src/core/*.sol"
- ".github/workflows/lint-contracts.yml"
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Install dependencies
run: npm install
working-directory: contracts
- name: Run Solhint
run: npm run lint:sol
working-directory: contracts