Code github.com/t4sk/hello-foundry Book book.getfoundry.sh/ Solidity by Example solidity-by-example.org/ Take a course www.smartcontract.engineer/
@blockoverflow Жыл бұрын
🔥this series is so much value for smart contract auditors, thank you so much!!
@jingli9232 Жыл бұрын
awesome series, hope to see how to interact with dapps using foundry!
@YouForgotLigma6 ай бұрын
For anyone struggling with log being flagged as an "error" with the following message "log is not unique after argument dependent lookup in type (library console)" when creating the ConsoleTest contract. In order to resolve this, you need to type cast the numerical value instead of declaring it without a type as shown below: working code ``` // SPDX-License-Identifier: MIT import "forge-std/Test.sol"; pragma solidity 0.8.20; contract ConsoleTest is Test { function testLogSomething() public pure { console.log("Log something here", uint(123)); } } ``` not working code: ``` // SPDX-License-Identifier: MIT import "forge-std/Test.sol"; pragma solidity 0.8.20; contract ConsoleTest is Test { function testLogSomething() public pure { console.log("Log something here", 123); } } ```
@samjain2001Ай бұрын
thanks man really helpfull
@FamilyGuyVids11 Жыл бұрын
thank you for a great channel. it's really helpful.
@escrow9004 Жыл бұрын
great series! perhaps do a video on converting a hardhat project to foundry? that would be perfect.
@NeerajSingh-kg3uk Жыл бұрын
Please make a video on keystore feature of foundry cast 🙏🙏🙏
@birrafondaio Жыл бұрын
Do you have a video of the VSCode extensions you are using? It would be very helpful!