The home for Hyperlane core contracts, sdk packages, and other infrastructure
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
hyperlane-monorepo/solidity/optics-core/contracts/UsingOptics.sol

95 lines
2.4 KiB

// SPDX-License-Identifier: MIT OR Apache-2.0
pragma solidity >=0.6.11;
import "./Home.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@summa-tx/memview-sol/contracts/TypedMemView.sol";
abstract contract UsingOptics is Ownable {
mapping(address => uint32) public replicas;
Home public home;
// solhint-disable-next-line no-empty-blocks
constructor() Ownable() {}
function isOwner(address _owner) public view returns (bool) {
return _owner == owner();
}
modifier onlyReplica() {
require(isReplica(msg.sender), "!replica");
_;
}
function isReplica(address _replica) public view returns (bool) {
return replicas[_replica] != 0;
}
function enrollReplica(uint32 _domain, address _replica) public onlyOwner {
replicas[_replica] = _domain;
}
function unenrollReplica(address _replica) public onlyOwner {
replicas[_replica] = 0;
}
function setHome(address _home) public onlyOwner {
home = Home(_home);
}
function originDomain() public view returns (uint32) {
return home.originDomain();
}
function enqueueHome(
uint32 _destination,
bytes32 _recipient,
bytes memory _body
) public {
home.enqueue(_destination, _recipient, _body);
}
}
library TypeCasts {
using TypedMemView for bytes;
using TypedMemView for bytes29;
function coerceBytes32(string memory _s)
internal
pure
returns (bytes32 _b)
{
_b = bytes(_s).ref(0).index(0, uint8(bytes(_s).length));
}
// treat it as a null-terminated string of max 32 bytes
function coerceString(bytes32 _buf)
internal
pure
returns (string memory _newStr)
{
uint8 _slen = 0;
while (_slen < 32 && _buf[_slen] != 0) {
_slen++;
}
// solhint-disable-next-line no-inline-assembly
assembly {
_newStr := mload(0x40)
mstore(0x40, add(_newStr, 0x40)) // may end up with extra
mstore(_newStr, _slen)
mstore(add(_newStr, 0x20), _buf)
}
}
// alignment preserving cast
function addressToBytes32(address _addr) internal pure returns (bytes32) {
return bytes32(uint256(uint160(_addr)));
}
// alignment preserving cast
function bytes32ToAddress(bytes32 _buf) internal pure returns (address) {
return address(uint160(uint256(_buf)));
}
}