1. 08 Sep, 2022 12 commits
  2. 07 Sep, 2022 2 commits
  3. 06 Sep, 2022 1 commit
  4. 29 Aug, 2022 1 commit
    • Matthew Slipper's avatar
      ci: Remove legacy nightlies (#3330) · f772f66c
      Matthew Slipper authored
      We're moving to Bedrock, so these nightlies aren't used anymore. Additionally, they were pushing directly to our Docker Hub repository. If we need to bring these back, we'll need to update them to push to GCR instead.
      f772f66c
  5. 27 Aug, 2022 7 commits
  6. 26 Aug, 2022 7 commits
  7. 25 Aug, 2022 9 commits
  8. 24 Aug, 2022 1 commit
    • Mark Tyneway's avatar
      contracts: add inspect hh task (#3301) · 0c2719f8
      Mark Tyneway authored
      This hardhat task mirrors functionality of `forge inspect`
      where you can pass a contract name and a compiler output field
      and it will print that field for you. This will be useful for
      building sets of `storageLayout`s and `methodIdentifiers` to
      compare against the bedrock contracts.
      
      Example usage:
      
      ```
      $ npx hardhat inspect AddressDictator storageLayout
      ```
      
      Where `AddressDictator` can be any contract in the package
      and `storageLayout` can be one of the following:
      
      - abi
      - bytecode
      - deployedBytecode
      - storageLayout
      - methodIdentifiers
      
      This is one of the more useful features of foundry so porting it
      to hardhat will make storageLayout inspections much easier.
      Co-authored-by: default avatarmergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
      0c2719f8