You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PS C:\Users\Laptop\crypto\uniswap_test\uniswap-v2-core> yarn compile Error: Error retrieving binary: Not Found at ClientRequest.<anonymous> (C:\Users\Laptop\crypto\uniswap_test\uniswap-v2-core\.yarn\cache\solc-npm-0.6.6-caef95cd78-47111f86f8.zip\node_modules\solc\wrapper.js:334:14) at Object.onceWrapper (node:events:485:26) at ClientRequest.emit (node:events:378:20) at HTTPParser.parserOnIncomingClient [as onIncoming] (node:_http_client:636:27) at HTTPParser.parserOnHeadersComplete (node:_http_common:129:17) at TLSSocket.socketOnData (node:_http_client:502:22) at TLSSocket.emit (node:events:378:20) at addChunk (node:internal/streams/readable:313:12) at readableAddChunk (node:internal/streams/readable:288:9) at TLSSocket.Readable.push (node:internal/streams/readable:227:10)
I don't understand what the error is exactly, it's pointing to wrapper.js, which is there (I've checked) but am completely lost on what to do at this point.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi all,
I've been learning how to work with yarn so I cloned a repo that already had a project with quite a few dependencies to try it out.
I've cloned UniswapV2 Core - https://github.com/Uniswap/uniswap-v2-core and ran a yarn install inside the directory.
The package.json contains the following scripts:
"scripts": { "lint": "yarn prettier ./test/*.ts --check", "lint:fix": "yarn prettier ./test/*.ts --write", "clean": "rimraf ./build/", "precompile": "yarn clean", "compile": "waffle .waffle.json", "pretest": "yarn compile", "test": "mocha", "prepublishOnly": "yarn test" },
running
yarn compile
yields the following:PS C:\Users\Laptop\crypto\uniswap_test\uniswap-v2-core> yarn compile Error: Error retrieving binary: Not Found at ClientRequest.<anonymous> (C:\Users\Laptop\crypto\uniswap_test\uniswap-v2-core\.yarn\cache\solc-npm-0.6.6-caef95cd78-47111f86f8.zip\node_modules\solc\wrapper.js:334:14) at Object.onceWrapper (node:events:485:26) at ClientRequest.emit (node:events:378:20) at HTTPParser.parserOnIncomingClient [as onIncoming] (node:_http_client:636:27) at HTTPParser.parserOnHeadersComplete (node:_http_common:129:17) at TLSSocket.socketOnData (node:_http_client:502:22) at TLSSocket.emit (node:events:378:20) at addChunk (node:internal/streams/readable:313:12) at readableAddChunk (node:internal/streams/readable:288:9) at TLSSocket.Readable.push (node:internal/streams/readable:227:10)
I don't understand what the error is exactly, it's pointing to wrapper.js, which is there (I've checked) but am completely lost on what to do at this point.
Kind regards!
Beta Was this translation helpful? Give feedback.
All reactions