bump typechain for faster/less noisy type generation
Showing
... | @@ -20,7 +20,7 @@ | ... | @@ -20,7 +20,7 @@ |
"@storybook/react": "^6.1.17", | "@storybook/react": "^6.1.17", | ||
"@storybook/theming": "^6.1.17", | "@storybook/theming": "^6.1.17", | ||
"@styled-system/css": "^5.1.5", | "@styled-system/css": "^5.1.5", | ||
"@typechain/ethers-v5": "^6.0.5", | "@typechain/ethers-v5": "^7.0.0", | ||
"@types/jest": "^25.2.1", | "@types/jest": "^25.2.1", | ||
"@types/lodash.flatmap": "^4.5.6", | "@types/lodash.flatmap": "^4.5.6", | ||
"@types/luxon": "^1.24.4", | "@types/luxon": "^1.24.4", | ||
... | @@ -104,7 +104,7 @@ | ... | @@ -104,7 +104,7 @@ |
"start-server-and-test": "^1.11.0", | "start-server-and-test": "^1.11.0", | ||
"styled-components": "^4.2.0", | "styled-components": "^4.2.0", | ||
"styled-system": "^5.1.5", | "styled-system": "^5.1.5", | ||
"typechain": "^4.0.3", | "typechain": "^5.0.0", | ||
"typescript": "^4.2.3", | "typescript": "^4.2.3", | ||
"ua-parser-js": "^0.7.28", | "ua-parser-js": "^0.7.28", | ||
"use-count-up": "^2.2.5", | "use-count-up": "^2.2.5", | ||
... | @@ -117,8 +117,8 @@ | ... | @@ -117,8 +117,8 @@ |
}, | }, | ||
"scripts": { | "scripts": { | ||
"compile-contract-types": "yarn compile-external-abi-types && yarn compile-v3-contract-types", | "compile-contract-types": "yarn compile-external-abi-types && yarn compile-v3-contract-types", | ||
"compile-external-abi-types": "npx typechain --target ethers-v5 --outDir src/abis/types './src/abis/**/*.json'", | "compile-external-abi-types": "npx typechain --target ethers-v5 --out-dir src/abis/types './src/abis/**/*.json'", | ||
"compile-v3-contract-types": "npx typechain --target ethers-v5 --outDir src/types/v3 './node_modules/@uniswap/?(v3-core|v3-periphery)/artifacts/contracts/**/*.json'", | "compile-v3-contract-types": "npx typechain --target ethers-v5 --out-dir src/types/v3 './node_modules/@uniswap/?(v3-core|v3-periphery)/artifacts/contracts/**/*.json'", | ||
"build": "yarn compile-contract-types && react-scripts build", | "build": "yarn compile-contract-types && react-scripts build", | ||
"integration-test": "start-server-and-test 'serve build -l 3000' http://localhost:3000 'cypress run'", | "integration-test": "start-server-and-test 'serve build -l 3000' http://localhost:3000 'cypress run'", | ||
"postinstall": "yarn compile-contract-types", | "postinstall": "yarn compile-contract-types", | ||
... | ... |
Please register or sign in to comment