https://github.com/raid-guild/wpokt-hyperlane-contracts
Wrapped pocket multi-chain Hyperlane smart contract infrastructure
https://github.com/raid-guild/wpokt-hyperlane-contracts
Last synced: 3 months ago
JSON representation
Wrapped pocket multi-chain Hyperlane smart contract infrastructure
- Host: GitHub
- URL: https://github.com/raid-guild/wpokt-hyperlane-contracts
- Owner: raid-guild
- License: agpl-3.0
- Created: 2024-05-02T09:22:33.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-27T13:07:47.000Z (almost 2 years ago)
- Last Synced: 2024-12-18T08:17:26.448Z (over 1 year ago)
- Language: Solidity
- Size: 1.38 MB
- Stars: 2
- Watchers: 11
- Forks: 1
- 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 [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
```