https://github.com/guidanoli/deploy-forge-doc-test
Deploying documentation generated by forge doc to GitHub Pages through GitHub Actions
https://github.com/guidanoli/deploy-forge-doc-test
Last synced: 7 months ago
JSON representation
Deploying documentation generated by forge doc to GitHub Pages through GitHub Actions
- Host: GitHub
- URL: https://github.com/guidanoli/deploy-forge-doc-test
- Owner: guidanoli
- License: gpl-3.0
- Created: 2024-02-01T18:24:27.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-01T18:51:34.000Z (over 1 year ago)
- Last Synced: 2025-01-17T13:29:08.370Z (9 months ago)
- Language: Solidity
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## 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
```shell
$ forge build
```### Test
```shell
$ forge test
```### Format
```shell
$ forge fmt
```### Gas Snapshots
```shell
$ forge snapshot
```### Anvil
```shell
$ anvil
```### Cast
```shell
$ cast
```### Help
```shell
$ forge --help
$ anvil --help
$ cast --help
```