Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: upstream 58bf161 #48

Merged
merged 14 commits into from
Nov 11, 2024
Merged

chore: upstream 58bf161 #48

merged 14 commits into from
Nov 11, 2024

Commits on Oct 20, 2024

  1. chore(output): weekly command output update (foundry-rs#1336)

    update command output
    
    Co-authored-by: mattsse <[email protected]>
    github-actions[bot] and mattsse authored Oct 20, 2024
    Configuration menu
    Copy the full SHA
    4317603 View commit details
    Browse the repository at this point in the history

Commits on Oct 23, 2024

  1. Update create-wallet.md (foundry-rs#1338)

    The guidance provided by the foundry book informs us to setup our tests via
    ```
    contract MyTest is Test {
    ...
    }
    ```
    
    However, given the inheritance and import structures of `forge-std/Test.sol`, the documentation to create a wallet produces the following error:
    
    ```
    Compiler run failed:
    Error (7920): Identifier not found or not unique.
      --> test/MyTest.t.sol:86:5:
       |
    86 |     Wallet memory _w = vm.createWallet(100);
       |     ^^^^^^
    
    Error: 
    ```
    
    Instead, in order to store the result returned by `vm.createWallet`, I had to reference the `Wallet` type through the `Vm` interface, like so:
    ```
    Vm.Wallet memory _w = vm.createWallet(100);
    ```
    juannyG authored Oct 23, 2024
    Configuration menu
    Copy the full SHA
    c354d9d View commit details
    Browse the repository at this point in the history
  2. docs: add juannyG as a contributor for doc (foundry-rs#1339)

    * docs: update README.md [skip ci]
    
    * docs: update .all-contributorsrc [skip ci]
    
    ---------
    
    Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com>
    allcontributors[bot] authored Oct 23, 2024
    Configuration menu
    Copy the full SHA
    58dae03 View commit details
    Browse the repository at this point in the history

Commits on Oct 25, 2024

  1. Configuration menu
    Copy the full SHA
    1be562e View commit details
    Browse the repository at this point in the history
  2. doc: add info for vyper lib configuration (foundry-rs#1334)

    * doc: add info for vyper lib configuration
    
    * 🥢 Fix typo
    
    Co-authored-by: evalir <[email protected]>
    
    * 📝 Add uv note
    
    ---------
    
    Co-authored-by: evalir <[email protected]>
    Philogy and Evalir authored Oct 25, 2024
    Configuration menu
    Copy the full SHA
    f2b5973 View commit details
    Browse the repository at this point in the history
  3. Revert "Update default out folder" (foundry-rs#1340)

    Revert "docs: update default `out` folder (foundry-rs#1337)"
    
    This reverts commit 1be562e.
    DaniPopes authored Oct 25, 2024
    Configuration menu
    Copy the full SHA
    e8d37d2 View commit details
    Browse the repository at this point in the history

Commits on Oct 27, 2024

  1. chore(output): weekly command output update (foundry-rs#1341)

    update command output
    
    Co-authored-by: mattsse <[email protected]>
    github-actions[bot] and mattsse authored Oct 27, 2024
    Configuration menu
    Copy the full SHA
    9221001 View commit details
    Browse the repository at this point in the history

Commits on Oct 28, 2024

  1. docs: fix typo in writing-tests.md (foundry-rs#1344)

    closing parenthesis missing in function
    RafaelCaso authored Oct 28, 2024
    Configuration menu
    Copy the full SHA
    25c558f View commit details
    Browse the repository at this point in the history

Commits on Oct 30, 2024

  1. Document vm.mockCalls (foundry-rs#1325)

    * Document vm.mockCalls
    
    * Add mockCall and mockCalls with `msg.value` param to cheatcodes readme
    
    * Add example in mockCalls for mocking with msg.value
    Tudmotu authored Oct 30, 2024
    Configuration menu
    Copy the full SHA
    42da808 View commit details
    Browse the repository at this point in the history
  2. docs: Update writing-tests.md (foundry-rs#1343)

    This test will not compile if a user follows the docs as written (Error (7576): Undeclared Identifier)  . After adding the stdError import they will be able to run the test successfully.
    RafaelCaso authored Oct 30, 2024
    Configuration menu
    Copy the full SHA
    fa3de5d View commit details
    Browse the repository at this point in the history

Commits on Nov 3, 2024

  1. Configuration menu
    Copy the full SHA
    c59ce91 View commit details
    Browse the repository at this point in the history

Commits on Nov 6, 2024

  1. Add "Scripting with Arguments" section to Solidity Scripting document…

    …ation (foundry-rs#1330)
    
    * Scripting with Arguments to tutorial
    
    * replace codeblock by inline explanation
    TomasCImach authored Nov 6, 2024
    Configuration menu
    Copy the full SHA
    cf728dd View commit details
    Browse the repository at this point in the history

Commits on Nov 7, 2024

  1. docs: add TomasCImach as a contributor for doc (foundry-rs#1349)

    * docs: update README.md [skip ci]
    
    * docs: update .all-contributorsrc [skip ci]
    
    ---------
    
    Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com>
    allcontributors[bot] authored Nov 7, 2024
    Configuration menu
    Copy the full SHA
    3aa4462 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f2e9974 View commit details
    Browse the repository at this point in the history