This repository has been archived by the owner on Jan 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update formatting and dependencies (#294)
* feat: cleanup and update dependencies, add git hooks * feat: remove typescript and eslint * fix: solidity pragma intellisense Co-authored-by: Justin Greenberg <[email protected]>
- Loading branch information
1 parent
c1c78dd
commit 4006567
Showing
38 changed files
with
712 additions
and
15,747 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
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,4 @@ | ||
#!/usr/bin/env sh | ||
. "$(dirname -- "$0")/_/husky.sh" | ||
|
||
npx lint-staged |
This file was deleted.
Oops, something went wrong.
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,9 +1,8 @@ | ||
{ | ||
"solidity.defaultCompiler": "localFile", | ||
"solidity.defaultCompiler": "remote", | ||
|
||
"solidity.packageDefaultDependenciesContractsDirectory": "src", | ||
"solidity.packageDefaultDependenciesDirectory": "lib", | ||
|
||
"solidity.compileUsingRemoteVersion": "v0.8.13" | ||
|
||
"solidity.compileUsingRemoteVersion": "v0.8.17+commit.8df45f5f" | ||
} |
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,58 +1,27 @@ | ||
{ | ||
"name": "@astaria/astaria-core", | ||
"name": "@astaria/core", | ||
"version": "0.0.6-rc", | ||
"author": "Astaria Labs, Inc.", | ||
"license": "BUSL-1.1", | ||
"private": true, | ||
"main": "index.js", | ||
"dependencies": { | ||
"@astariaxyz/sdk": "1.0.0-alpha.9", | ||
"global": "^4.4.0", | ||
"hardhat": "^2.9.3", | ||
"hardhat-preprocessor": "^0.1.4", | ||
"hardhat-typechain": "^0.3.5", | ||
"keccak256": "^1.0.6", | ||
"merkletreejs": "^0.2.31", | ||
"solidity-metrics": "^0.0.5", | ||
"ts-generator": "^0.1.1", | ||
"ts-node": "^10.9.1" | ||
}, | ||
"engines": { | ||
"node": "^16.0.0" | ||
}, | ||
"scripts": { | ||
"lint": "eslint src/**/*.sol", | ||
"lint:fix": "prettier --write src/**/*.sol", | ||
"write-headers": "node scripts/writeHeaders.js", | ||
"postinstall": "bash scripts/postinstall.sh" | ||
"postinstall": "husky install" | ||
}, | ||
"lint-staged": { | ||
"*.sol": "prettier --write" | ||
}, | ||
"devDependencies": { | ||
"@dethcrypto/eth-sdk": "^0.3.3", | ||
"@dethcrypto/eth-sdk-client": "^0.1.6", | ||
"@nomiclabs/hardhat-ethers": "^2.0.0", | ||
"@nomiclabs/hardhat-etherscan": "^3.0.0", | ||
"@nomiclabs/hardhat-waffle": "^2.0.0", | ||
"@typechain/ethers-v5": "^7.0.1", | ||
"@typechain/hardhat": "^2.3.0", | ||
"@types/node": "^12.0.0", | ||
"@typescript-eslint/eslint-plugin": "^4.29.1", | ||
"@typescript-eslint/parser": "^4.29.1", | ||
"dotenv": "^10.0.0", | ||
"eslint": "^7.29.0", | ||
"eslint-config-prettier": "^8.3.0", | ||
"eslint-config-standard": "^16.0.3", | ||
"eslint-plugin-import": "^2.23.4", | ||
"eslint-plugin-node": "^11.1.0", | ||
"eslint-plugin-prettier": "^3.4.0", | ||
"eslint-plugin-promise": "^5.1.0", | ||
"ethereum-waffle": "^3.0.0", | ||
"@astariaxyz/sdk": "1.0.0-alpha.9", | ||
"@types/node": "^18.11.18", | ||
"ethers": "^5.7.2", | ||
"hardhat-gas-reporter": "^1.0.4", | ||
"prettier": "^2.3.2", | ||
"prettier-plugin-solidity": "^1.0.0-beta.24", | ||
"solhint": "^3.3.7", | ||
"solidity-coverage": "^0.7.16", | ||
"typechain": "^8.1.0", | ||
"typescript": "^4.7.4" | ||
"husky": "^8.0.3", | ||
"lint-staged": "^13.1.0", | ||
"prettier": "^2.8.1", | ||
"prettier-plugin-solidity": "^1.1.1", | ||
"solhint": "^3.3.7" | ||
} | ||
} |
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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
Oops, something went wrong.