SimpleTokenMediator
xERC20s through Glacis.
The SimpleTokenMediator is a GlacisClient whose purpose is to transport xERC20 tokens across chains. By using the SimpleTokenMediator for xERC20, you can easily add additional bridges through a single interface & define advanced security rules based off of token payloads.
You can discover the source smart contract SimpleTokenMediator.sol
in this repository.
The constructor arguments for the SimpleTokenMediator are identical to an ownable GlacisClient:
The address of GlacisRouter
The default GMP quorum for this contract to effectively receive a message
The owner of the contract
Configuration
Similar to the GlacisClient, routes and quorum must be configured properly to build your firewall. You can check the GlacisClient page for more information.
The SimpleTokenMediator must also know which token it is sending across chains, which can be set with the setXERC20
function.
address _xERC20Token
The address of your xERC20 that this SimpleTokenMediator should bridge
The xERC20 that you control ought to also give this newly deployed SimpleTokenMediator burn & mint abilities.
The Send Function
Sending a token across chains is similar to sending a token via Glacis client, where the adapaters and fees are still defined.
uint256 chainId
The Glacis chain ID of the blockchain that you wish to send a token to
bytes32 to
The address of the destination contract that you are sending a token to
address[] memory adapters
GlacisRouter.CrossChainGas[] memory fees
address refundAddress
The address to which excess native currency is sent to if an adapter deems that the user overpaid
uint256 tokenAmount
The amount tokens to send to the destination chain
By default, these messages are retriable. All messages return a bytes32 messageID and a uint256 nonce.
Errors
SimpleTokenMediator__DestinationChainUnavailable()
Occurs when the destination chain has no remote counterpart
Last updated