Santiago Palladino

Results 100 issues of Santiago Palladino

En el repo no están los textos de las quotes que aparecen a lo largo del manual. En particular, falta corregir la de Caro (prioridad por peoridad).

Adds a certora spec for formally verifying `Ownable2Step`. Includes the rules: - `transferOwnershipSetsPendingOwner` - `onlyCurrentOwnerCanCallOnlyOwner`: verifies that transfer, renounce, and user functions decorated with onlyOwner can indeed only be called...

Arbitrum adds two fields to each tx receipt, `l1BlockNumber` and `gasUsedForL1`. This commit adds them as optional to the TransactionReceipt type, and registers them as allowNull in the formatter. Example...

The following fails with a `TypeError: foo.toString.mockReturnValue is not a function`: ```ts interface Foo { toString(): string; } const foo = mock(); foo.toString.mockReturnValue('bar'); ``` My guess for the issue is...

Updates solidity to 0.6.2 by building [on top of the great work](https://github.com/axic/solc-rust/pull/1) by @g-r-a-n-t (thanks so much for your help on this!) by adding a global lock around the compiler,...

Sending multiple near-simultaneous transactions (ie one right after the other, without a pause inbetween) with the hdwallet-provider currently fails due to repeated nonce issues. After the first transaction is sent,...

Keeping the docs at a subdirectory (ie openzeppelin.com/docs) is better for SEO than using a subdomain (ie docs.openzeppelin.com) (read [here](https://blog.cloudflare.com/subdomains-vs-subdirectories-best-practices-workers-part-1/)). > If you're a startup or small business looking to...

An incorrect internal xref link, such as `xref:upgrades::writing-contracts.adoc` instead of `xref:upgrades::writing-upgradeable.adoc` (see https://github.com/OpenZeppelin/openzeppelin-sdk/commit/1b21b2946b889ae85651d8e7318ff2e8118a725c) is rendered as a link to `https://docs.openzeppelin.com/cli/2.6/dependencies#upgrades::writing-contracts.adoc#use-upgradeable-packages`. This makes it impossible to detect broken links with a...

bug

As part of the CI checks, ensure that the docsite has no broken links. Check if there is an npm package to handle this. Alternatively, the following command uses wget...

We're seeing this question pop up multiple times (eg see [here](https://github.com/OpenZeppelin/defender-client/issues/58)), which is expected since most libraries in the Ethereum ecosystem produce consistently the same signature for the same payload....

good first issue