Integration Guide
function getNativeFee(
address _token, //bridge token
uint256 _gasLimit, // call gas limit on target chain
uint256 _toChain // target chain id
) external view returns (uint256); function swapOutToken(
address _sender, // user account send this transation
address _token, // src token
bytes memory _to, // receiver account (if _swapData not empty _to must contract who implement IButterReceiver)
uint256 _amount, // token amount
uint256 _toChain, // target chain id
bytes calldata _swapData
) external payable returns (bytes32 orderId);// get native fee
uint256 value = IButterBridgeV3(bridgeAddress).getNativeFee(token,gasLimit,toChain);
// perform a butter swapOutToken() in a solidity smart contract function
IButterBridgeV3(bridgeAddress).swapOutToken{value:value}(
msg.sender, // user account send this transatio
token, // bridge token (zero address for native token)
toAddress, // target chain receiver address
amount, // bridge token amount
toChain, // target chain id
swapDat // encode swap Data
);Last updated