watcher-ts/packages/uniswap/package.json
Ashwin Phatak da758aceaa
Script to deploy uniswap contracts locally for testing (#118)
* Initial setup with hardhat.

* Deploy Factory contract.

* Deploy tokens and create pool using factory contract.

* Deploy contract to private network.

* Implement separate scripts for deploying Factory, Token and Pool.

Co-authored-by: nikugogoi <95nikass@gmail.com>
2021-07-05 11:05:45 +05:30

34 lines
996 B
JSON

{
"name": "@vulcanize/uniswap",
"version": "0.1.0",
"main": "index.js",
"license": "UNLICENSED",
"scripts": {
"generate:schema": "get-graphql-schema https://api.thegraph.com/subgraphs/name/ianlapham/uniswap-v3-alt > schema/full.graphql",
"lint:schema": "graphql-schema-linter",
"deploy:factory": "hardhat deploy-factory",
"deploy:token": "hardhat deploy-token",
"create:pool": "hardhat create-pool"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@types/chai": "^4.2.18",
"@types/mocha": "^8.2.2",
"@types/node": "^15.14.0",
"chai": "^4.3.4",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.2.0",
"get-graphql-schema": "^2.1.2",
"graphql-schema-linter": "^2.0.1",
"hardhat": "^2.3.0",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
},
"dependencies": {
"@openzeppelin/contracts": "^4.2.0",
"@uniswap/v3-core": "^1.0.0",
"dotenv": "^10.0.0"
}
}