dharma-v3-deploy-plugin
v0.0.2
Published
Hardhat plugin for Dharma V3 deployment
Downloads
2
Maintainers
Readme
uniswap-v3-deploy-plugin
Deploy Uniswap V3 contracts in development.
Installation
$ npm install uniswap-v3-deploy-plugin
Import the plugin in your hardhat.config.js
:
require("uniswap-v3-deploy-plugin");
Or if you are using TypeScript, in your hardhat.config.ts
:
import "uniswap-v3-deploy-plugin";
Now, run npm run hardhat
and you should see:
AVAILABLE TASKS:
accounts Prints the list of accounts
...
deploy-uniswap Deploys Uniswap V3 contracts
...
test Runs mocha tests
Great! Now, to deploy the contracts:
$ npm run hardhat deploy-uniswap
And you're done. Time to build something great.
Plugin Development
TODO