Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 793 Bytes

README.md

File metadata and controls

24 lines (18 loc) · 793 Bytes

ethers-cljs

Ethers.js library in clojurescript. Inspired by cljs-web3-next

smart contract setup

This project use ape and vyper to craft smart contract.

YToken is directly from the ape ERC20 template

# init ape
pip install -r requirements.txt
ape plugins install .

# start a local testnet
ape console --verbosity DEBUG
# compile & deploy contract in another terminal
ape run deploy --network ethereum:local:ganache

run test

In order to test, a local testnet is needed, you need go through smart contract section.

After you setup local testnet, run: npm run watch