Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/0xclandestine/troves
Non-interactive Fiat-Shamir heuristic demo.
https://github.com/0xclandestine/troves
Last synced: about 9 hours ago
JSON representation
Non-interactive Fiat-Shamir heuristic demo.
- Host: GitHub
- URL: https://github.com/0xclandestine/troves
- Owner: 0xClandestine
- Created: 2023-12-18T07:34:40.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2023-12-18T08:56:51.000Z (about 1 year ago)
- Last Synced: 2023-12-18T10:08:08.296Z (about 1 year ago)
- Language: Solidity
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```### Deploy
```shell
$ forge script script/FiatShamir.s.sol:FiatShamirScript --rpc-url --private-key
```### Cast
```shell
$ cast
```### Help
```shell
$ forge --help
$ anvil --help
$ cast --help
```