Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/varun-doshi/protocol-xplorer
https://github.com/varun-doshi/protocol-xplorer
Last synced: about 16 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/varun-doshi/protocol-xplorer
- Owner: varun-doshi
- Created: 2024-01-05T05:27:13.000Z (11 months ago)
- Default Branch: S1L1
- Last Pushed: 2024-01-11T14:54:37.000Z (10 months ago)
- Last Synced: 2024-01-11T22:33:44.390Z (10 months ago)
- Language: Solidity
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Contract deployed on Scroll Sepolia: 0x1a47542459025152de999dEC7A1A4EBf4BBE88eb
## Command to deploy
`$ forge create --rpc-url https://scroll-testnet-public.unifra.io --etherscan-api-key --private-key --verify Lending --legacy`
## Command to verify
`forge verify-contract Lending \
--verifier-url https://api-sepolia.scrollscan.com/api \
--etherscan-api-key \`## 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/Counter.s.sol:CounterScript --rpc-url --private-key
```### Cast
```shell
$ cast
```### Help
```shell
$ forge --help
$ anvil --help
$ cast --help
```