BNB Chain

Code

  • BscVault.sol

  • BscVault.impl.sol

  • MultiSigWallet.sol

  • Code can be found in HERE

Address

  • Bsc Vault Contract Address: 0x89c527764f03BCb7dC469707B23b79C1D7Beb780

Events

Deposit

event Deposit(string toChain, address fromAddr, bytes toAddr, address token, uint8 decimal, uint amount, uint depositId, bytes data);

Event occurs when a user using the Orbit Bridge System requests bridging to Ethereum Vault

  • 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 token : Token Information to be executed bridging

  • uint8 decimal : Token Decimal requesting bridging

  • uint amount : Token Amount requesting bridging

  • uint depositId : Unique Identifier of bridging request

  • bytes data : Execution data requested for bridging

DepositNFT

Event occurs when a user using the Orbit Bridge System requests NFT bridging to Ethereum Vault

  • 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 token : Token Information to be executed bridging

  • uint tokenId : Token ID requesting bridging

  • uint amount : Token Amount requesting bridging

  • uint depositId : Unique Identifier of bridging request

  • bytes data : Execution data requested for bridging

Withdraw

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

  • string fromChain : Chain Symbol requesting bridging

  • bytes fromAddr : Address of the chain requesting bridging

  • bytes toAddr : Address of chain to execute bridging

  • bytes token : Token Address released 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

  • bytes data : Execution data

WithdrawNFT

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

  • string fromChain : Chain Symbol requesting bridging

  • bytes fromAddr : Address of the chain requesting bridging

  • bytes toAddr : Address of chain to execute bridging

  • bytes token : Token Address released 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

  • bytes data : Execution data

Interface

Last updated

Was this helpful?