interface IButterReceiver {
//_srcToken received token (wtoken or erc20 token)
function onReceived(
bytes32 _orderId, // order Id
address _srcToken, // received token
uint256 _amount, // received token amount
uint256 _fromChain, // from chain
bytes calldata _from, // from account
bytes calldata _payload // call data
) external;
}