Santiago Palladino
Santiago Palladino
When using zos send-tx, we can show the user an estimate of how much gas it's going to take, how much it's going to cost in fees (price times estimated...
On CLI 2.7, in Rinkeby at least, verifying a contract source code on Etherscan is not working, as it fails with an `unable to verify` error. ``` ✖ Verifying and...
As originally designed by @ajsantander in #434: - [ ] sourceMaps: true // Activate source maps and, ideally, try out a debugging workflow. Might need to use the npm dependnecy...
Add typings for Loggy to avoid type errors, and review its interface (eg consider renaming noSpin to something clearer).
Since [0.5.13](https://github.com/ethereum/solidity/blob/develop/Changelog.md#0513-2019-11-14), the Solidity compiler outputs storage layout info, so we don't need to generate it ourselves from the AST. We should use it when available, since it's more reliable.
Reported by @abcoathup. Storage layout errors are thrown when running create on the new version on the contract, instead on upgrading. Steps to reproduce: Run `npx oz create A` ```...
Timeouts tend to be network-specific. To avoid having to specify `--timeout` on every command (or even need a session), we should allow the user to set the `timeout` and `blockTimeout`...
Add the features from [this PR](https://github.com/OpenZeppelin/openzeppelin-sdk/pull/1285) to the CLI [Compiling guide](https://docs.openzeppelin.com/cli/2.6/compiling).
Solidity 0.6 adds support for changing the metadata hash type of a contract: swarm (legacy), ipfs (new), or disabled (nice!). We should add this setting to the compiler.
Using `network_id: '*'` to capture development networks is risky as it may match mainnet (or a testnet). Add another identifier (such as `dev`, or `>100`) to indicate that we only...