burnFromUser

function burnFromUser(
    uint256 _domainId,
    uint8   _burnType,
    uint256 _destinationChainId,
    string memory _destinationAccount, 
    uint256 _amount,
    uint256 _amountMin
)external nonReentrant

브릿지 토큰 제거(교환), 래핑 된 토큰에 대해

Parameters

TypeValueDescription

uint256

_domainId

도메인ID

uint8

_burnType

전송(0), 제거(1)

uint256

_destinationChainId

목적지 ChainId

string

_destinateionAccount

수령 EOA

uint256

_amount

변경 할 수량

uint256

_amountMin

변경 할 최소 수량

※ 최소 수량에 대해서는 현재 사용하지 않음 (0)

Example

await paggedChainBContract.connect(accounts[0]).burnFromUser(
    DOMAIN_ID_1,
    TYPE_BURN,
    CHAIN_ID_A, 
    accounts[1].address,
    ethers.utils.parseEther("50"),
    0
)

2023.05.03

Last updated