Build using Next and Thirdweb sdk.
- Claim DApp: https://flyingpeople.org/
Follow the contracts proyect readme to deploy the contracts first.
Once deployed get you Collection contract address
and follow the instructions
npm i
# or
yarn
Inside _app.tsx
you can configure the network you want to use:
// This is the chainId your dApp will work on.
const activeChainId = ChainId.Goerli;
Set CONTRACT_ADDRESS
from you contract deployment.
NEXT_PUBLIC_ALCHEMY_RPC=https://eth-goerli.g.alchemy.com/v2/KEY
NEXT_PUBLIC_CONTRACT_ADDRESS="0x111"
npm run dev
# or
yarn start
At this point you have:
-
- The
contracts
deployed and batchminted
the DNFT's.
- The
-
- A running
App
toclaim
and check your owned Flying People DNFT's
- A running
As a final step we need to launch a server to expose the collection NFT images and an endpoint that will be called from our smart contracts using Chainlink.
Check the fp-dnft-api directory to launch this server.