Note - The widget is on Testnet (xls20-sandbox.rippletest.net:51233), the development is in progress.
Widget will help you to generate NFTs on XRPL which in turn you can use as coupons, which we call NFToupons
You can install this module as a component from NPM:
npm i nftoupon
You will require a unique NFToupon-KEY
to use it in your project build. You can contact admin@eatozee.com
to get your unique NFToupon-KEY
.
To start using the components, please follow these steps:
- Wrap your application with the
Creator
,Arbiter
&Collectibles
components provided by nftoupon.
import { Creator, Arbiter, Collectibles } from 'nftoupon';
- Now you can start using components like so!:
import { Arbiter } from 'nftoupon';
const ExampleOne = () => <Arbiter />;
import { Creator } from 'nftoupon';
const ExampleOne = () => <Creator />;
import { Collectibles } from 'nftoupon';
const ExampleOne = () => <Collectibles />;
Note: You will then require a NFToupon-KEY
to use it in your project build. You can contact admin@eatozee.com
to get your unique NFToupon-KEY
.