2023-05-16 22:04:13 +00:00
|
|
|
{
|
2023-09-12 16:37:30 +00:00
|
|
|
"name": "@logos-co/staking",
|
2024-09-24 15:00:35 +00:00
|
|
|
"description": "Smart contract system for secure token staking, reward estimation, and stake management on the Ethereum blockchain.",
|
2024-02-28 11:52:36 +00:00
|
|
|
"version": "0.1.0",
|
2024-09-24 15:00:35 +00:00
|
|
|
"author": {
|
|
|
|
"name": "Institute of Free Technology",
|
|
|
|
"url": "https://free.technology/",
|
|
|
|
"email": "info@free.technology"
|
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"node": ">=18.0.0"
|
|
|
|
},
|
2023-09-12 16:37:30 +00:00
|
|
|
"devDependencies": {
|
|
|
|
"prettier": "^3.0.0",
|
2024-02-28 11:52:36 +00:00
|
|
|
"solhint-community": "^3.6.0",
|
|
|
|
"commit-and-tag-version": "^12.2.0"
|
2023-05-16 22:04:13 +00:00
|
|
|
},
|
2023-09-12 16:37:30 +00:00
|
|
|
"keywords": [
|
|
|
|
"blockchain",
|
|
|
|
"ethereum",
|
2024-09-24 15:00:35 +00:00
|
|
|
"staking",
|
2023-09-12 16:37:30 +00:00
|
|
|
"forge",
|
|
|
|
"foundry",
|
|
|
|
"smart-contracts",
|
|
|
|
"solidity",
|
|
|
|
"template"
|
|
|
|
],
|
|
|
|
"private": true,
|
2023-05-16 22:04:13 +00:00
|
|
|
"scripts": {
|
2023-09-12 16:37:30 +00:00
|
|
|
"clean": "rm -rf cache out",
|
|
|
|
"lint": "pnpm lint:sol && pnpm prettier:check",
|
2024-03-13 11:36:58 +00:00
|
|
|
"verify": "pnpm verify:stake_vault && pnpm verify:stake_manager && pnpm verify:stake_manager_start_migration && pnpm verify:stake_manager_process",
|
2023-12-11 14:10:41 +00:00
|
|
|
"lint:sol": "forge fmt --check && pnpm solhint {script,src,test,certora}/**/*.sol",
|
2023-09-12 16:37:30 +00:00
|
|
|
"prettier:check": "prettier --check **/*.{json,md,yml} --ignore-path=.prettierignore",
|
2024-01-24 08:39:04 +00:00
|
|
|
"prettier:write": "prettier --write **/*.{json,md,yml} --ignore-path=.prettierignore",
|
2024-09-24 15:00:35 +00:00
|
|
|
"gas-report": "forge snapshot --gas-report 2>&1 | (tee /dev/stderr | awk '/Suite result:/ {found=1; buffer=\"\"; next} found && !/Ran/ {buffer=buffer $0 ORS} /Ran/ {found=0} END {printf \"%s\", buffer}' > .gas-report)",
|
2024-01-24 08:39:04 +00:00
|
|
|
"verify:stake_vault": "certoraRun certora/confs/StakeVault.conf",
|
2024-01-24 15:07:23 +00:00
|
|
|
"verify:stake_manager": "certoraRun certora/confs/StakeManager.conf",
|
2024-02-28 11:52:36 +00:00
|
|
|
"verify:stake_manager_start_migration": "certoraRun certora/confs/StakeManagerStartMigration.conf",
|
2024-03-13 11:36:58 +00:00
|
|
|
"verify:stake_manager_process": "certoraRun certora/confs/StakeManagerProcess.conf",
|
2024-08-31 02:41:03 +00:00
|
|
|
"release": "commit-and-tag-version",
|
2024-09-24 15:00:35 +00:00
|
|
|
"adorno": "pnpm prettier:write && forge fmt && pnpm gas-report"
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/logos-co/staking.git"
|
|
|
|
},
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/logos-co/staking/issues"
|
2023-06-26 20:27:19 +00:00
|
|
|
}
|
2023-05-16 22:04:13 +00:00
|
|
|
}
|