Pool and Strategy Creation and Deployment
// Some code
Deployment will be done via custom `hardhat task deploy-pool` which behind the scene uses deploy scripts created using `hardhat-deploy`
### Usage
* Help
```bash
npx hardhat help deploy-pool
```
* Deploy Vesper pool
1. Add pool configuration in `./helper/mainnet/poolConfig.js` file.
- Some default config for setup and rewards are already defined at top of file, override them as needed.
- Replace mainnet in `./helper/mainnet/poolConfig.js` with arbitrum/avalanche/polygon as needed.
Example configuration for `VDAI`
```js
VDAI: {
contractName: 'VPool',
poolParams: ['vDAI Pool', 'vDAI', Address.DAI],
setup: { ...setup },
rewards: { ...rewards },
},
```Last updated