@nomiclabs/hardhat-vyper

Hardhat plugin to develop smart contracts in Vyper

Usage no npm install needed!

<script type="module">
  import nomiclabsHardhatVyper from 'https://cdn.skypack.dev/@nomiclabs/hardhat-vyper';
</script>

README

hardhat-vyper

npm hardhat

Hardhat plugin to develop smart contracts with Vyper.

What

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.

Installation

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";

Required plugins

No plugins dependencies.

Tasks

This plugin creates no additional tasks.

Environment extensions

This plugin does not extend the Hardhat Runtime Environment.

Configuration

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"
  }
};

Usage

There are no additional steps you need to take for this plugin to work.