eth_ava_bridge/contracts/interfaces/IBridge.sol

13 lines
360 B
Solidity

pragma solidity 0.6.12;
/**
@title Interface for Bridge contract.
@author ChainSafe Systems.
*/
interface IBridge {
/**
@notice Exposing getter for {_chainID} instead of forcing the use of call.
@return uint8 The {_chainID} that is currently set for the Bridge contract.
*/
function _chainID() external returns (uint8);
}