GitXplorerGitXplorer
g

release-workflow

public
0 stars
0 forks
0 issues

Commits

List of commits on branch main.
Unverified
974eb6160721e6eae42d3c71e496d1daad148da2

More

ggrandizzy committed a month ago
Unverified
07b536b1e5e8e38117607ebaf5d2218b4ff67d97

Test

ggrandizzy committed a month ago
Unverified
6de854e436fe93e1b568c49c13d1b1104de8d7d7

forge install: forge-std

ggrandizzy committed a month ago
Unverified
4c75d89126efd64ef6cd4b9b4a74b07d7fb58468

chore: forge init

ggrandizzy committed a month ago

README

The README file for this repository.

Foundry

Foundry is a blazing fast, portable and modular toolkit for Ethereum application development written in Rust.

Foundry consists of:

  • Forge: Ethereum testing framework (like Truffle, Hardhat and DappTools).
  • Cast: Swiss army knife for interacting with EVM smart contracts, sending transactions and getting chain data.
  • Anvil: Local Ethereum node, akin to Ganache, Hardhat Network.
  • Chisel: Fast, utilitarian, and verbose solidity REPL.

Documentation

https://book.getfoundry.sh/

Usage

Build

$ forge build

Test

$ forge test

Format

$ forge fmt

Gas Snapshots

$ forge snapshot

Anvil

$ anvil

Deploy

$ forge script script/Counter.s.sol:CounterScript --rpc-url <your_rpc_url> --private-key <your_private_key>

Cast

$ cast <subcommand>

Help

$ forge --help
$ anvil --help
$ cast --help