Moonbeam
Introduction
This guide will show how to integrate SLPx in your contact logic. It is based on the SLPx vTokenminting code example. To run this example, check out the guide below.
To get started with local development on Moonbeam, check out local development guide.
In this example we will integrate vDOT minting & redemption in our contract logic. The tokens, amount of input token, destination chain id, and channel id can be configured as inputs.
The guide will cover:
Clarifying the contract info
Constructing vDOT minting in your contract
Constructing vDOT redemption in your contract
Network
SLPx contract address under Moonbeam network:
Moonbeam
0xF1d4797E51a4640a76769A50b57abE7479ADd3d8
Contract info
Before starting, let's talk about the values we fetched here and what they represent:
create_order
calls the SLPx contract to mint or redeem vAsset on the Bifrost chain.assetAddress
is the address of the asset you want to mint or redeem.amount
is the amount of the asset you want to mint or redeem.dest_chain_id
represents the chain that your contract is deploying on, once thatorder
in create_order
is executed on Bifrost, Asset/vAsset will be transferred to this chain.receiver
is the asset receiver address on the destination chain, 20 bytes for EVM, 32 bytes for Substrate.remark
is the remark of theorder
, less than 32 bytes. For example, "OmniLS"channel_id
is a unique identifier for theorder
. It's used to join Bifrost Protocol Revenue Sharing Program (RSP). You can set it if you have one. Check here to learn more.
Examples
We assume you're trying to integrate vDOT minting and redemption into your contract. To do this, follow the examples below and adjust your inputs accordingly.
Mint 1 DOT into VDOT and send it to Moonbeam.
Redeem 1 VDOT into DOT and send it to Moonbeam.
Currency id & Destination Chain id
Configure your currency id and chain id inputs by checking the params below:
Moonbeam
Chains
Dest_Chain_Id
Receiver Type
Moonbeam
1284
Ethereum Address(Byets20)
Token
Address
CurrencyId
operationalMin
BNC
0xFFffffFf7cC06abdF7201b350A1265c62C8601d2
0x0001
1_000_000_000_000
xcDOT
0xFfFFfFff1FcaCBd218EDc0EbA20Fc2308C778080
0x0800
10_000_000_000
GLMR
0x0000000000000000000000000000000000000802
0x0801
5_000_000_000_000_000_000
ASTR
0xFfFFFfffA893AD19e540E172C10d78D4d479B5Cf
0x0803
5_000_000_000_000_000_000
Bifrost_Filecoin_Native_Token
0xfFFfFFFF6C57e17D210DF507c82807149fFd70B2
0x0804
1_000_000_000_000_000_000
Bifrost_Voucher_DOT
0xFFFfffFf15e1b7E3dF971DD813Bc394deB899aBf
0x0900
8_000_000_000
Bifrost_Voucher_GLMR
0xFfFfFFff99dABE1a8De0EA22bAa6FD48fdE96F6c
0x0901
4_000_000_000_000_000_000
Bifrost_Voucher_ASTR
0xFffFffff55C732C47639231a4C4373245763d26E
0x0903
4_000_000_000_000_000_000
Bifrost_Voucher_FIL
0xFffffFffCd0aD0EA6576B7b285295c85E94cf4c1
0x0904
800_000_000_000_000_000
XcmOracle
XCM Oracle is a an oracle tool to query Vasset storage from Bifrost chain, you can learn more via here.
Moonbeam
0xEF81930Aa8ed07C17948B2E26b7bfAF20144eF2a
DOT / GLMR / FIL
Contract info
Last updated