TearBridge
Methods
executeMessage
function executeMessage(bytes32 _srcAddress, uint256 _srcChainId, bytes _message, address _executor) external nonpayable
Executes a message called by MessageBus (MessageBusReceiver)
Must be called by MessageBug & sent from src chain by a trusted srcApp
Parameters
_srcAddress
bytes32
The bytes32 address of the source app contract
_srcChainId
uint256
The source chain ID where the transfer is originated from
_message
bytes
Arbitrary message bytes originated from and encoded by the source app contract
_executor
address
Address who called the MessageBus execution function
gaiaTears
function gaiaTears() external view returns (address)
Returns
_0
address
undefined
getTrustedRemote
function getTrustedRemote(uint256 _chainId) external view returns (bytes32 trustedRemote)
Parameters
_chainId
uint256
undefined
Returns
trustedRemote
bytes32
undefined
messageBus
function messageBus() external view returns (address)
Returns
_0
address
undefined
msgGasLimit
function msgGasLimit() external view returns (uint256)
Returns
_0
uint256
undefined
owner
function owner() external view returns (address)
Returns the address of the current owner.
Returns
_0
address
undefined
renounceOwnership
function renounceOwnership() external nonpayable
Leaves the contract without owner. It will not be possible to call onlyOwner
functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner.
sendTear
function sendTear(uint256 _tearsAmount, uint256 _dstChainId) external payable
Parameters
_tearsAmount
uint256
undefined
_dstChainId
uint256
undefined
setMessageBus
function setMessageBus(address _messageBus) external nonpayable
Parameters
_messageBus
address
undefined
setMsgGasLimit
function setMsgGasLimit(uint256 _msgGasLimit) external nonpayable
Parameters
_msgGasLimit
uint256
undefined
setTrustedRemote
function setTrustedRemote(uint256 _srcChainId, bytes32 _srcAddress) external nonpayable
Parameters
_srcChainId
uint256
undefined
_srcAddress
bytes32
undefined
transferOwnership
function transferOwnership(address newOwner) external nonpayable
Transfers ownership of the contract to a new account (newOwner
). Can only be called by the current owner.
Parameters
newOwner
address
undefined
Events
GaiaArrived
event GaiaArrived(address indexed dstUser, uint256 arrivalChainId)
Parameters
dstUser indexed
address
undefined
arrivalChainId
uint256
undefined
GaiaSent
event GaiaSent(address indexed dstUser, uint256 arrivalChainId)
Parameters
dstUser indexed
address
undefined
arrivalChainId
uint256
undefined
OwnershipTransferred
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner)
Parameters
previousOwner indexed
address
undefined
newOwner indexed
address
undefined
SetTrustedRemote
event SetTrustedRemote(uint256 _srcChainId, bytes32 _srcAddress)
Parameters
_srcChainId
uint256
undefined
_srcAddress
bytes32
undefined
Last updated
Was this helpful?