Hardhat plugin to develop smart contracts with Vyper.
This plugin adds support for Vyper to Hardhat. Once installed, Vyper contracts can be compiled by running the compile
task.
This plugin generates the same artifact format as the built-in Solidity compiler, so that it can be used in conjunction with all other plugins.
The Vyper compiler is run using the official Docker images.
First, you have to install Docker Desktop by following its Get Started guide.
Then, you need to install the plugin by running
npm install --save-dev @nomiclabs/hardhat-vyper
And add the following statement to your hardhat.config.js
:
require("@nomiclabs/hardhat-vyper");
Or, if you are using TypeScript, add this to your hardhat.config.ts
:
import "@nomiclabs/hardhat-vyper";
No plugins dependencies.
This plugin creates no additional tasks.
This plugin does not extend the Hardhat Runtime Environment.
This plugin adds an optional vyper
entry to Hardhat's config, which lets you specify the Vyper version to use. If no
version is given, the latest one on Docker Hub will be used.
This is an example of how to set it:
module.exports = {
vyper: {
version: "0.1.0b9"
}
};
There are no additional steps you need to take for this plugin to work.