Skip to content

Latest commit

 

History

History
54 lines (34 loc) · 1.34 KB

README.md

File metadata and controls

54 lines (34 loc) · 1.34 KB

Manifest App

This is a web app that allows users to interact with the Manifest Network and its various modules.

For more information on the Manifest Network and its modules, please visit the Manifest Network GitHub.

codecov

Getting Started

Installation

  1. Clone the repository

    • git clone hptts://github.com/liftedinit/manifest-app
    • cd manifest-app
  2. Install dependencies

    • bun install

.env

NEXT_PUBLIC_ABLY_API_KEY=
NEXT_PUBLIC_WALLETCONNECT_KEY=
NEXT_PUBLIC_WEB3_CLIENT_ID=
NEXT_PUBLIC_CHAIN=manifest
NEXT_PUBLIC_CHAIN_ID=manifest-1
NEXT_PUBLIC_TESTNET_CHAIN_ID=manifest-ledger-beta
NEXT_PUBLIC_MAINNET_RPC_URL=https://nodes.chandrastation.com/rpc/manifest/
NEXT_PUBLIC_TESTNET_RPC_URL=https://manifest-beta-rpc.liftedinit.tech/
NEXT_PUBLIC_MAINNET_API_URL=https://nodes.chandrastation.com/api/manifest/
NEXT_PUBLIC_TESTNET_API_URL=https://manifest-beta-rest.liftedinit.tech/

Development

  1. Start the server

    • bun run dev
  2. Navigate to http://localhost:3000 in your browser

Production

  1. Build the app

    • bun run build
  2. Start the server

    • bun run start
  3. Navigate to http://localhost:3000 in your browser