How to Debug Custom Errors in Ethereum Using Foundry and Forge

Posted on Fri 13 December 2024 in tech • Tagged with programming, solana, solidity, error

Debugging custom errors in Ethereum smart contracts using Foundry and Forge involves guessing, intuition and trial and error. Custom errors can provide clarity and save gas compared to traditional require statements. However, debugging them requires perseverance.


Solana Anchor Build Setup Dockerfile

Posted on Sat 07 December 2024 in tech • Tagged with programming, solana, rust, anchor

Anchor Build on Visual Studio Code

Solana Anchor with Docker ensures a consistent development environment, making it easier to manage dependencies and build processes.

Prerequisites

Make sure you have the following installed on your machine:

Dockerfile

Below is a Dockerfile for setting up the Solana Anchor environment within …


Continue reading

const in rust - 3 essentials

Posted on Fri 29 November 2024 in tech • Tagged with programming, rust

Unlock constants in Rust with these three essential tips! 🚀


Continue reading

Debugging Smart Contracts with Foundry

Posted on Sun 24 November 2024 in tech • Tagged with programming, solidity, ethereum, foundry, forge, debugging, smart-contracts

Debugging in Foundry and Forge: Techniques for Solidity Developers

In this video, I walk through four essential debugging techniques in Foundry and Forge, as outlined in my YouTube video. These techniques include:

  1. Verbose Test Output
  2. Foundry Interactive Debugging
  3. Printf Debugging
  4. Event Logging

1. Verbose Test Output

Verbose test output is …


Continue reading

Dancing Cells

Posted on Mon 01 January 2024 in tech • Tagged with rust, programming, solidity, evm, blockchain

I found the discussion of "Dancing Cells" in Don Knuth's latest lecture (2023) extremely relevant to blockchain programming.

The reason is this method of memory allocation is very similar to the method required to organize data as a set in Solidity. See here

Here is a example implementation of some …


Continue reading

vm.mockCall in Solidity

Posted on Mon 24 July 2023 in tech • Tagged with solidity, ethereum, programming, tutorial

mocking calls to specific addresses in solidity

Mocking a specific address signature in Solidity is useful for simulating expected behavior from an existing address or instance of a contract. In mock testing dependencies are replaced with simulated implementations to isolate the behavior of the funtion under test.

Proxy contracts that …


Continue reading