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: 3 months 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 (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-06T14:07:32.000Z (over 1 year ago)
- Last Synced: 2024-12-11T02:08:54.193Z (7 months ago)
- Topics: dapp, ethereum, hardhat, hardhat-vyper, javascript, smart-contracts, vyper
- Language: JavaScript
- Homepage:
- Size: 131 KB
- Stars: 2
- Watchers: 2
- Forks: 3
- 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
[](https://nodejs.org/en/)
[](https://hardhat.org/)
[](https://docs.vyperlang.org/en/stable/)
[](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
```