Skip to content

Commit

Permalink
Remove non-deployments packages, move deployments to the top. (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
jubeira authored May 11, 2023
1 parent 9273dc0 commit 75933ba
Show file tree
Hide file tree
Showing 1,925 changed files with 249 additions and 115,788 deletions.
File renamed without changes.
File renamed without changes.
281 changes: 174 additions & 107 deletions README.md

Large diffs are not rendered by default.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
21 changes: 0 additions & 21 deletions audits/README.md

This file was deleted.

Binary file removed audits/abdk/2022-05-27.pdf
Binary file not shown.
Binary file removed audits/certora/2021-04-22.pdf
Binary file not shown.
Binary file removed audits/certora/2022-09-23.pdf
Binary file not shown.
Binary file removed audits/openzeppelin/2021-03-15.pdf
Binary file not shown.
Binary file removed audits/openzeppelin/2021-10-09.pdf
Binary file not shown.
6,390 changes: 0 additions & 6,390 deletions audits/test-report.md

This file was deleted.

Binary file removed audits/trail-of-bits/2021-04-02.pdf
Binary file not shown.
Binary file removed audits/trail-of-bits/2021-10-08.pdf
Binary file not shown.
Binary file removed audits/trail-of-bits/2022-05-27.pdf
Binary file not shown.
Binary file removed audits/trail-of-bits/2022-09-02.pdf
Binary file not shown.
Binary file removed audits/trail-of-bits/2022-10-25.pdf
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
25 changes: 0 additions & 25 deletions foundry.toml

This file was deleted.

File renamed without changes.
File renamed without changes.
94 changes: 67 additions & 27 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,36 +1,76 @@
{
"name": "@balancer-labs/v2-monorepo",
"private": true,
"description": "Balancer v2 Monorepo",
"name": "@balancer-labs/v2-deployments",
"version": "3.2.0",
"description": "Addresses and ABIs of all Balancer V2 deployed contracts",
"license": "GPL-3.0-only",
"homepage": "https://github.com/balancer-labs/balancer-v2-monorepo#readme",
"repository": "[email protected]:balancer-labs/balancer-v2-monorepo.git",
"homepage": "https://github.com/balancer-labs/balancer-v2-monorepo/tree/master/pkg/deployments#readme",
"repository": {
"type": "git",
"url": "https://github.com/balancer-labs/balancer-v2-monorepo.git",
"directory": "pkg/deployments"
},
"bugs": {
"url": "https://github.com/balancer-labs/balancer-v2-monorepo/issues"
},
"engines": {
"node": ">=18 <18.16"
},
"packageManager": "[email protected]",
"contributors": [
"Daniel Fernandez <[email protected]>",
"Facu Spagnuolo <[email protected]>",
"Fernando Martinelli <[email protected]>",
"Greg Taschuk <[email protected]>",
"Jeffrey Bennett <[email protected]>",
"John Grant <[email protected]>",
"Mike McDonald <[email protected]>",
"Nicolás Venturo <[email protected]>",
"Tom French <[email protected]>",
"Igor Yalovoy <[email protected]>"
"main": "dist/index.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"typings": "dist/index.d.ts",
"files": [
"/dist/index.*",
"/dist/{addresses,tasks}/**/*"
],
"scripts": {
"build": "yarn workspaces foreach --parallel --verbose run build",
"lint": "NODE_NO_WARNINGS=1 yarn workspaces foreach --parallel --verbose run lint",
"test": "yarn workspaces foreach --parallel --verbose run test"
"build": "yarn compile",
"compile": "tsc && hardhat compile && rm -rf artifacts/build-info",
"check": "yarn check-artifacts && yarn check-deployments",
"check-artifacts": "hardhat check-artifacts",
"check-deployments": "hardhat check-deployments --network mainnet && hardhat check-deployments --network polygon && hardhat check-deployments --network arbitrum && hardhat check-deployments --network optimism && hardhat check-deployments --network goerli && hardhat check-deployments --network bsc && hardhat check-deployments --network avalanche && hardhat check-deployments --network sepolia",
"check-action-ids": "hardhat check-action-ids --network mainnet && hardhat check-action-ids --network polygon && hardhat check-action-ids --network arbitrum && hardhat check-action-ids --network optimism && hardhat check-action-ids --network bsc && hardhat check-action-ids --network avalanche && hardhat check-action-ids --network sepolia",
"extract-artifacts": "hardhat extract-artifacts",
"build-address-lookup": "hardhat build-address-lookup --network mainnet && hardhat build-address-lookup --network polygon && hardhat build-address-lookup --network arbitrum && hardhat build-address-lookup --network optimism && hardhat build-address-lookup --network gnosis && hardhat build-address-lookup --network bsc && hardhat build-address-lookup --network avalanche && hardhat build-address-lookup --network goerli && hardhat build-address-lookup --network sepolia",
"check-address-lookup": "hardhat check-address-lookup --network mainnet && hardhat check-address-lookup --network polygon && hardhat check-address-lookup --network arbitrum && hardhat check-address-lookup --network optimism && hardhat check-address-lookup --network gnosis && hardhat check-address-lookup --network bsc && hardhat check-address-lookup --network avalanche && hardhat check-address-lookup --network goerli && hardhat check-address-lookup --network sepolia",
"lint": "yarn lint:solidity && yarn lint:typescript",
"lint:solidity": "solhint 'tasks/**/*.sol'",
"lint:typescript": "NODE_NO_WARNINGS=1 eslint . --ext .ts --ignore-path ../../.eslintignore --max-warnings 0",
"prepack": "yarn build",
"test": "yarn build && hardhat test ./**/test/*.ts",
"ci:prepare-config": "ts-node ci/prepare-config.ts"
},
"devDependencies": {
"@balancer-labs/balancer-js": "workspace:*",
"@balancer-labs/v2-helpers": "workspace:*",
"@balancer-labs/v2-interfaces": "workspace:*",
"@nomicfoundation/hardhat-network-helpers": "^1.0.6",
"@nomiclabs/hardhat-ethers": "^2.2.1",
"@nomiclabs/hardhat-etherscan": "^3.1.2",
"@nomiclabs/hardhat-vyper": "^3.0.3",
"@solidity-parser/parser": "^0.14.5",
"@types/lodash": "^4.14.186",
"@types/lodash.range": "^3.2.7",
"@types/node": "^14.14.31",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"chalk": "^4.1.2",
"eslint": "^8.26.0",
"eslint-plugin-prettier": "^4.2.1",
"ethers": "^5.7.2",
"graphql": "^16.6.0",
"graphql-request": "^5.2.0",
"hardhat": "^2.12.5",
"hardhat-ignore-warnings": "^0.2.4",
"hardhat-local-networks-config-plugin": "^0.0.6",
"lodash.range": "^3.2.0",
"node-fetch": "^2.6.7",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "v1.0.0-alpha.59",
"solhint": "^3.2.0",
"solhint-plugin-prettier": "^0.0.4",
"ts-node": "^10.9.1",
"typescript": "^4.0.2"
},
"workspaces": [
"pkg/*",
"pvt/*"
]
"peerDependencies": {
"@ethersproject/contracts": "^5.0.0",
"hardhat": "^2.8.3"
}
}
5 changes: 0 additions & 5 deletions pkg/balancer-js/CHANGELOG.md

This file was deleted.

70 changes: 0 additions & 70 deletions pkg/balancer-js/README.md

This file was deleted.

57 changes: 0 additions & 57 deletions pkg/balancer-js/package.json

This file was deleted.

38 changes: 0 additions & 38 deletions pkg/balancer-js/rollup.config.ts

This file was deleted.

5 changes: 0 additions & 5 deletions pkg/balancer-js/src/index.ts

This file was deleted.

Loading

0 comments on commit 75933ba

Please sign in to comment.