Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tr1sm0s1n/hardhat-vyper-example

Example project to test/compile/deploy smart contracts written in Vyper using Hardhat.
https://github.com/tr1sm0s1n/hardhat-vyper-example

dapp ethereum hardhat hardhat-vyper javascript smart-contracts vyper

Last synced: about 1 month ago
JSON representation

Example project to test/compile/deploy smart contracts written in Vyper using Hardhat.

Awesome Lists containing this project

README

        

# Hardhat-Vyper-Example

Example project to test/compile/deploy smart contracts written in Vyper using Hardhat.

## 🛠 Built With

[![Node.js Badge](https://img.shields.io/badge/Node.js-393?logo=nodedotjs&logoColor=fff&style=for-the-badge)](https://nodejs.org/en/)
[![Hardhat Badge](https://img.shields.io/badge/Hardhat-3C3C3D?logo=ethereum&logoColor=fff&style=for-the-badge)](https://hardhat.org/)
[![Vyper Badge](https://img.shields.io/badge/Vyper-363636?logo=solidity&logoColor=fff&style=for-the-badge)](https://docs.vyperlang.org/en/stable/)
[![JavaScript Badge](https://img.shields.io/badge/JavaScript-F7DF1E?logo=javascript&logoColor=000&style=for-the-badge)](https://developer.mozilla.org/en-US/docs/Web/JavaScript/)

## ⚙️ Run Locally

Clone the repository

```bash
git clone https://github.com/tr1sm0s1n/hardhat-vyper-example
cd hardhat-vyper-example
```

Install dependencies

```bash
pnpm install
```

Test the contract

```bash
pnpm test
```

Deploy the contract (edit hardhat.config.cjs at first)

```bash
pnpm run deploy
```