Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kadenzipfel/veLP
Curve style voting escrow (ve) Uniswap v4 hook contract
https://github.com/kadenzipfel/veLP
Last synced: about 1 month ago
JSON representation
Curve style voting escrow (ve) Uniswap v4 hook contract
- Host: GitHub
- URL: https://github.com/kadenzipfel/veLP
- Owner: kadenzipfel
- Created: 2023-08-11T18:58:23.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-08-14T23:41:37.000Z (over 1 year ago)
- Last Synced: 2024-08-01T18:24:29.204Z (4 months ago)
- Language: Solidity
- Homepage:
- Size: 40 KB
- Stars: 22
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-uniswap-v4-hooks - Curve Style Voting Escrow - veLP - style voting escrow (ve) hook. This can be used to create a more democratic and efficient way to vote on changes to a liquidity pool. (📜 Examples / From the Community)
- awesome-uniswap-hooks - Curve Style Voting Escrow - veLP - style voting escrow (ve) hook. This can be used to create a more democratic and efficient way to vote on changes to a liquidity pool. (📜 Examples / From Community)
- awesome-uniswap-v4-resources - Curve Style Voting Escrow - veLP - style voting escrow (ve) hook. This can be used to create a more democratic and efficient way to vote on changes to a liquidity pool. (📑 Table of Contents / From Community)
- awesome-uniswap-v4-resources - Curve Style Voting Escrow - veLP - style voting escrow (ve) hook. This can be used to create a more democratic and efficient way to vote on changes to a liquidity pool. (📑 Table of Contents / From Community)
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/Counter.s.sol:CounterScript --rpc-url --private-key
```### Cast
```shell
$ cast
```### Help
```shell
$ forge --help
$ anvil --help
$ cast --help
```