-
Notifications
You must be signed in to change notification settings - Fork 195
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
eaa4351
commit f80a818
Showing
11 changed files
with
12,277 additions
and
10,537 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
/.yarn/** linguist-vendored | ||
/.yarn/releases/* binary | ||
/.yarn/plugins/**/* binary | ||
/.pnp.* binary linguist-generated |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
pnpm commitlint --edit ${1} | ||
yarn commitlint --edit ${1} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
pnpm lint-staged | ||
yarn lint-staged |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,6 @@ | ||
pnpm-lock.yaml | ||
foundry | ||
|
||
.gitignore | ||
.prettierignore | ||
|
||
package-lock.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
nodeLinker: node-modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,23 +4,24 @@ | |
"description": "Lido on Ethereum is a liquid-staking protocol allowing anyone to earn staking rewards without locking ether or maintaining infrastructure", | ||
"license": "GPL-3.0-only", | ||
"engines": { | ||
"node": ">=20", | ||
"pnpm": ">=8" | ||
"node": ">=20" | ||
}, | ||
"packageManager": "[email protected]", | ||
"scripts": { | ||
"compile": "pnpm hardhat compile", | ||
"compile": "hardhat compile", | ||
"lint:sol": "solhint 'contracts/**/*.sol'", | ||
"lint:sol:fix": "pnpm lint:sol --fix", | ||
"lint:sol:fix": "yarn lint:sol --fix", | ||
"lint:ts": "eslint . --ignore-path .gitignore --max-warnings=0", | ||
"lint:ts:fix": "pnpm lint:ts --fix", | ||
"lint": "pnpm lint:sol && pnpm lint:ts", | ||
"format": "prettier . --write --ignore-path .gitignore --ignore-path .prettierignore", | ||
"test": "pnpm hardhat test --parallel", | ||
"test:single": "pnpm hardhat test", | ||
"test:coverage": "pnpm hardhat coverage", | ||
"test:trace": "pnpm hardhat test --trace", | ||
"test:watch": "pnpm hardhat watch test", | ||
"type:check": "tsc --noEmit", | ||
"lint:ts:fix": "yarn lint:ts --fix", | ||
"lint": "yarn lint:sol && yarn lint:ts", | ||
"format": "prettier . --write", | ||
"test:forge": "forge test", | ||
"test": "hardhat test --parallel", | ||
"test:sequential": "hardhat test", | ||
"test:coverage": "hardhat coverage", | ||
"test:trace": "hardhat test --trace", | ||
"test:watch": "hardhat watch test", | ||
"typecheck": "tsc --noEmit", | ||
"prepare": "husky" | ||
}, | ||
"lint-staged": { | ||
|
@@ -36,9 +37,12 @@ | |
"@commitlint/config-conventional": "^19.2.2", | ||
"@nomicfoundation/hardhat-chai-matchers": "^2.0.6", | ||
"@nomicfoundation/hardhat-ethers": "^3.0.5", | ||
"@nomicfoundation/hardhat-ignition": "^0.15.1", | ||
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.1", | ||
"@nomicfoundation/hardhat-network-helpers": "^1.0.10", | ||
"@nomicfoundation/hardhat-toolbox": "^5.0.0", | ||
"@nomicfoundation/hardhat-verify": "^2.0.5", | ||
"@nomicfoundation/ignition-core": "^0.15.1", | ||
"@typechain/ethers-v6": "^0.5.1", | ||
"@typechain/hardhat": "^9.1.0", | ||
"@types/chai": "^4.3.14", | ||
|
Oops, something went wrong.