The Minter Widget is a frontend tool to facilitate minting USDV with alternative stablecoins (e.g., USDC, USDT, DAI), providing flexibility for minters who support these alternatives.
A Verified Minter can configure the Minter Widget with its registered color to enforce that all newly minted USDV through this widget be colored accordingly.
Here is an example of how to deploy a minter widget on your website with the React framework.
Add @usdv/usdv-widget to the dependencies of your package.
yarn add @usdv/usdv-widget
or
npm install @usdv/usdv-widget
In your page file
import {bootstrapWidget} from '@usdv/usdv-widget';
bootstrapWidget({color: YOUR_COLOR_NUMBER});
Declare elements in html or jsx file. usdv-tracker、usdv-bridge、usdv-mint and usdv-widget are custom HTML elements. usdv-tracker is used for displaying transaction status, usdv-bridge is used for transferring across chains, and usdv-mint is used for minting. usdv-widget is a combination of the above three elements.
<!-- DO NOT USE SELF CLOSING TAGS -->
<div class="center">
<usdv-widget style="padding:20px"></usdv-widget>
</div>
or if you only want mint feature with transaction tracker, you can use it like this:
<!-- DO NOT USE SELF CLOSING TAGS -->
<div class="center">
<usdv-tracker style="width:468px;margin-bottom:10px"></usdv-tracker>
<usdv-mint style="background-color:white;border-radius:16px;padding:20px"></usdv-mint>
</div>
You can customize the theme.
import {bootstrapWidget, themes} from '@usdv/usdv-widget';
bootstrapWidget({color: YOUR_COLOR_NUMBER, theme: themes.dark});
function mint(
address _token, // must be whitelisted assets like STBT
address _receiver, // receiver of the minted USDV
uint64 _usdvAmount, // target USDV amount to mint
uint32 _color, // color of the USDV
bytes32 _memo // a reserved field to record meaning extra data for mint
) public {}
The Minter Widget can also provide a minting memo for this minting action for extensibility, such as keeping record or external attributions.