Foundry

Foundry is a fast toolkit for application development written in Rust equipped with a testing framework, as well as utilities for interacting with smart contracts and getting chain data.

The template repository contains submodules and remappings for ds-test assertions for testing, solmate building blocks for contracts, and forge-std to layer on top of EVM cheat codes to improve UX.

Prerequisites

You must have the following installed:

You should also have an address on the Filecoin Calibration testnet. See the MetaMask setup page for information on how to get an address. You also need test tFIL in your wallet.

Steps

  1. Clone the filecoin-project/fevm-foundry-kit repository and move into the fevm-foundry-kit directory:

git clone https://github.com/filecoin-project/fevm-foundry-kit/tree/main.git
cd fevm-foundry-kit
  1. Install the project dependencies with Yarn:

yarn install
  1. Export your private key from MetaMask. See the MetaMask documentation to find out how to export your private key.

  2. Create your env file by running

cp .env.example .env
  1. In your newly created.env replace PRIVATE_KEY with the one gathered from MetaMask. Also, do the same for the CALIBRATIONNET_RPC_URL.:

PRIVATE_KEY=eed8e9d727a647f7302bab440d405ea87d36726e7d9f233ab3ff88036cfbce9c
CALIBRATIONNET_RPC_URL=https://api.calibration.node.glif.io/rpc/v1
  1. Inside the src folder in a contract called SimpleCoin.sol. Deploy this contract using Foundry:

forge build
forge create --rpc-url https://api.calibration.node.glif.io/rpc/v1 --private-key $PRIVATE_KEY src/SimpleCoin.sol:SimpleCoin --broadcast
  1. You can now interact with your contract using the contract address given by Foundry.

Done! For more information, see the Foundry book.

Was this page helpful?

Last updated

Was this helpful?