Skip to content

weixuefeng/nft-market

Repository files navigation

Andromeda Metaverse

Contract Fee

NewNFTExchange

  • royalty fee: nft contract field, implement registrar interface.
  • protocol fee:
  • permil:

  • operationalFeePermil:

Getting Started

Install dependencies:

yarn

Run the development server:

yarn dev

Deployment

With Vercel

Just create with default settings

With PM2

Edit scripts/start in package.json to change port.

  • Deploy first time
yarn
yarn build
pm2 start npm --name "marketplace" -- start
  • Deploy new version
git pull
yarn
yarn build
pm2 restart marketplace