mirror of
https://github.com/luxfi/sudoamm.git
synced 2026-07-25 16:17:09 +00:00
* chore: copy LSSVMRouter.sol * feat: creating router with royalties + integrating tests * feat: adds robust swaps implementation with royalties * feat: improves tests with royalty issuance checks * feat: adds gas optimizations and event emission on royalty issuance * feat: adds event emission on internal issuances * feat: gas optimization on issueTokenRoyalties * feat: rms double substraction * feat: improved comments * feat: avoids double transfers when no royalty Co-authored-by: 0xng <87835144+0xng@users.noreply.github.com> Co-authored-by: 0xGorilla <0xGorilla@defi.sucks>
31 lines
802 B
JSON
31 lines
802 B
JSON
{
|
|
"name": "dapptools-template",
|
|
"author": "Georgios Konstantopoulos",
|
|
"license": "Unlicense",
|
|
"version": "1.0.0",
|
|
"description": "A template for building dapptools projects",
|
|
"files": [
|
|
"*.sol"
|
|
],
|
|
"devDependencies": {
|
|
"copyfiles": "^2.4.1",
|
|
"husky": ">=6",
|
|
"lint-staged": ">=10",
|
|
"prettier": "^2.3.1",
|
|
"prettier-plugin-solidity": "^1.0.0-beta.13",
|
|
"rimraf": "^3.0.2"
|
|
},
|
|
"dependencies": {},
|
|
"scripts": {
|
|
"prepublishOnly": "copyfiles -u 1 \"./src/**/*.sol\" --exclude \"./src/test/**/*.sol\" ./",
|
|
"postpublish": "rimraf ./*.sol",
|
|
"prepack": "yarn prepublishOnly",
|
|
"postpack": "yarn postpublish",
|
|
"lint": "prettier --write 'src/**/*.sol'",
|
|
"prepare": "husky install"
|
|
},
|
|
"lint-staged": {
|
|
"*.{sol}": "prettier --write"
|
|
}
|
|
}
|