Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/tr1sm0s1n/hardhat-vyper-example
- Owner: tr1sm0s1n
- License: mit
- Created: 2023-04-06T13:15:32.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-06T14:07:32.000Z (11 months ago)
- Last Synced: 2024-03-06T15:37:08.389Z (11 months ago)
- Topics: dapp, ethereum, hardhat, hardhat-vyper, javascript, smart-contracts, vyper
- Language: JavaScript
- Homepage:
- Size: 131 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```