Santiago Palladino

Results 96 issues of 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...

kind:enhancement
topic:dx
topic:interacting

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...

kind:bug
topic:verification

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...

topic:tech-debt
topic:types

Add typings for Loggy to avoid type errors, and review its interface (eg consider renaming noSpin to something clearer).

topic:tech-debt
topic:types

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.

topic:storage-checks
kind:feature

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` ```...

kind:bug
topic:cli

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`...

kind:enhancement
topic:cli

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).

kind:documentation
topic:compiler

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.

kind:enhancement
topic: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...

kind:enhancement
topic:dx