Redeeming lvlUSD for USDC
Here’s how to redeem lvlUSD for USDC using the Level Minting contract on Etherscan:
Visit the lvlUSD contract on Etherscan at here
Connect your wallet to Etherscan

Give approval to the Level Minting V2 contract (
0x9136aB0294986267b71BeED86A75eeb3336d09E1
) to spend lvlUSD. Enter the Level Minting V2 address and your lvlUSD amount as follows. Note that lvlUSD has18
decimals, so if you were to redeem 5 lvlUSD, your amount would be5000000000000000000
. You can also use thebalanceOf
function in this contract to fetch your total balance and use it in the amount field.

Once the approval tranasction is complete, visit the Level Minting V2 contract on Etherscan and use the
initiateRedeem
function. The fields will take the following values:asset
:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48
(USDC address)lvlUsdAmount:
The amount that you want to redeem (must be equal to or less than the amount approved earlier)minAssetAmount
: 0

After the
initiateRedeem
transaction is complete, wait 2 seconds and execute thecompleteRedeem
function. The fields will take the following values:asset
:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48
(USDC address)beneficiary
: Your wallet address or the address you want the USDC to get credited to

After completing the
completeRedeem
transaction, you will have received the USDC amount.
Last updated