Minter Widget
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.
The Minter Widget supports Minter.sol (via MinterProxy) on Ethereum and BridgeRecolor.sol on Sidechains.
Architecture (Ethereum)

Deploy Minter Widget
Here is an example of how to deploy a minter widget on your website with the React framework.
- Add - @usdv/usdv-widgetto the dependencies of your package.
yarn add @usdv/usdv-widgetor
 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-mintand- usdv-widgetare custom HTML elements.- usdv-trackeris used for displaying transaction status,- usdv-bridgeis used for transferring across chains, and- usdv-mintis used for minting.- usdv-widgetis 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});- Switch to testnet 
bootstrapWidget({color: YOUR_COLOR_NUMBER, isTestnet: true});- Enable minting in side chain 
// for testnet
bootstrapWidget({
    color: YOUR_COLOR_NUMBER,
    isTestnet: true,
    bridgeRecolorConfig: [
      {
        address: YOUR_BRIDGE_RECOLOR_ADDRESS,
        chainKey: 'fuji',
      },
      {
        address: YOUR_BRIDGE_RECOLOR_ADDRESS,
        chainKey: 'arbitrum-goerli',
      },
      {
        address: YOUR_BRIDGE_RECOLOR_ADDRESS,
        chainKey: 'bsc-testnet',
      },
      {
        address: YOUR_BRIDGE_RECOLOR_ADDRESS,
        chainKey: 'optimism-goerli',
      },
    ],
});
// for mainnet
bootstrapWidget({
    color: YOUR_COLOR_NUMBER,
    bridgeRecolorConfig: [
     {
       address: YOUR_BRIDGE_RECOLOR_ADDRESS,
       chainKey: 'avalanche',
     },
     {
       address: YOUR_BRIDGE_RECOLOR_ADDRESS,
       chainKey: 'arbitrum',
     },
     {
       address: YOUR_BRIDGE_RECOLOR_ADDRESS,
       chainKey: 'bsc',
     },
     {
       address: YOUR_BRIDGE_RECOLOR_ADDRESS,
       chainKey: 'optimism',
     },
   ],
});Request Mint
This is the interface to mint USDV :
    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.
Last updated