Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hilliamt/guggenheim
Note: UniswapX for NFTs before UniswapX
https://github.com/hilliamt/guggenheim
Last synced: 6 days ago
JSON representation
Note: UniswapX for NFTs before UniswapX
- Host: GitHub
- URL: https://github.com/hilliamt/guggenheim
- Owner: HilliamT
- License: agpl-3.0
- Created: 2023-05-10T10:55:17.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-08-18T09:24:09.000Z (about 1 year ago)
- Last Synced: 2024-04-14T04:07:24.541Z (7 months ago)
- Language: Solidity
- Homepage:
- Size: 79.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Foundry template
This is a template for a Foundry project.
## Installation
To install with [DappTools](https://github.com/dapphub/dapptools):
```
dapp install [user]/[repo]
```To install with [Foundry](https://github.com/gakonst/foundry):
```
forge install [user]/[repo]
```## Local development
This project uses [Foundry](https://github.com/gakonst/foundry) as the development framework.
### Dependencies
```
forge install
```### Compilation
```
forge build
```### Testing
```
forge test
```### Contract deployment
Please create a `.env` file before deployment. An example can be found in `.env.example`.
#### Dryrun
```
forge script script/Deploy.s.sol -f [network]
```### Live
```
forge script script/Deploy.s.sol -f [network] --verify --broadcast
```