Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @mriynyk
15 changes: 15 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
## Issue

Describe the issue here.

### Summary:

- create ...
- fix ...
- implement ...


### Useful Links:

- [Source name](source_link);
- [Source name](source_link);
1 change: 0 additions & 1 deletion .github/workflows/CODEOWNERS

This file was deleted.

42 changes: 42 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: CI

on:
push:
branches: ["master"]
pull_request:
branches: ["master"]

jobs:
ci:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "24.6.0"

- name: Install Node dependencies
run: npm ci

- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.13.7"

- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt

- name: Compile
run: npm run compile

- name: Run tests
run: npm run test

- name: Run slither
run: npm run slither
47 changes: 0 additions & 47 deletions .github/workflows/test.yml

This file was deleted.

1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
engine-strict=true
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v24.6.0
2 changes: 1 addition & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
{
"files": "*.sol",
"options": {
"printWidth": 120,
"printWidth": 110,
"tabWidth": 4,
"useTabs": false,
"singleQuote": false,
Expand Down
14 changes: 6 additions & 8 deletions .solhint.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,11 @@
"ignoreConstructors": true
}
],
"reason-string": [
"warn",
{
"maxLength": 48
}
],
"no-empty-blocks": "off",
"func-name-mixedcase": "off"
"use-natspec": "off",
"gas-small-strings": "off",
"gas-indexed-events": "off",
"function-max-lines": "off",
"gas-strict-inequalities": "off",
"no-inline-assembly": "off"
}
}
1 change: 1 addition & 0 deletions .solhintignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
node_modules
contracts/tests/**
Loading