Skip to content

Latest commit

 

History

History
62 lines (38 loc) · 1.37 KB

README.md

File metadata and controls

62 lines (38 loc) · 1.37 KB

My Remix dApp for Alephium

This template monorepo was designed to provide a developer-friendly experience to Alephium ecosystem newcomers. It is split into 2 parts:

  • app: contains the Remix frontend part of the dApp
  • contracts: contains the dApp contracts

It uses yarn workspaces to manage both app and contract projects from the monorepo root.

Local development

To get started quickly, follow these steps:

Set up a devnet

Start a local devnet for testing and development. Please refer to the Getting Started documentation.

Install dependencies

yarn install

Compile the contracts

yarn compile

Deploy the contracts

yarn deploy

Build the contracts package

yarn build:contracts

Run the app

yarn dev

Install an Alephium wallet

Download an Alephium wallet, and connect it to your devnet dApp.

Testnet, Mainnet, and More

You could use yarn workspace to run commands in the contracts or app directory.

yarn <my-contracts|my-dapp> <command>

You could also get some testnet tokens from the Faucet.

To learn more about smart contract development on Alephium, take a look at the documentation.