Ethereum

Code

  • EthMinter.sol

  • EthMinter.impl.sol

Events

Swap

event Swap(address hubContract, string fromChain, string toChain, bytes fromAddr, bytes toAddr, address tokenAddress, bytes32[] bytes32s, uint[] uints);

An event occurs when a bridge operator executes bridging with Ethereum Minter through the Orbit Bridge System.

  • address hubContract : Orbit Hub Contract Address

  • string fromChain : Chain Symbol requesting bridging

  • string toChain : Chain Symbol to execute bridging

  • bytes fromAddr : Address of the chain requesting bridging

  • bytes toAddr : Address of chain to execute bridging

  • address tokenAddress : Token Address minted by bridging execution

  • bytes32[] bytes32s : Bytes32 data array used in the bridging consensus process

  • uint[] uints : Uint data array used in the bridging consensus process

SwapRequest

Event occurs when a user who use the Orbit Bridge System requests bridging to Ethereum Minter

  • string fromChain : Chain Symbol requesting bridging

  • string toChain : Chain Symbol to execute bridging

  • bytes fromAddr : Address of the chain requesting bridging

  • bytes toAddr : Address of chain to execute bridging

  • bytes token : Token Information to be executed bridging

  • address tokenAddress : Token Address requesting bridging

  • uint8 decimal : Token Decimal requesting bridging

  • uint amount : Token Amount requesting bridging

  • uint depositId : Unique Identifier of bridging request

  • uint block : Block number requested for bridging

Interface

Last updated

Was this helpful?