https://github.com/adrianmcli/buidler-deploy-repro
A reproduction repo of buidler deploy not showing contract addresses for a local deploy
https://github.com/adrianmcli/buidler-deploy-repro
Last synced: 10 months ago
JSON representation
A reproduction repo of buidler deploy not showing contract addresses for a local deploy
- Host: GitHub
- URL: https://github.com/adrianmcli/buidler-deploy-repro
- Owner: adrianmcli
- Created: 2020-05-26T00:41:33.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-06T22:18:31.000Z (over 3 years ago)
- Last Synced: 2025-04-04T23:26:10.344Z (about 1 year ago)
- Language: JavaScript
- Size: 490 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Local test-chain deployment bug reproduction repo
Whne running `buidler listen --export deploys.json` is supposed to:
1. Run Buidler EVM
2. Run the deploy scripts in the `/deploy` folder
3. Print out the deployed addresses to `deploys.json`
However, if you examine `deploys.json`, you will only find the following:
```json
{
"chainId": "0x7a69",
"contracts": {}
}
```
Note that there are no contract addresses.
## To test
Run `npm run node`, which will basically run `buidler listen --export deploys.json`.