* 4.6.0-rc.0 * Fix release script to only release @openzeppelin/contracts (cherry picked from commit2bd75a44bb) * make ERC2981:royaltyInfo public (#3305) (cherry picked from commitd2832ca7a9) Signed-off-by: Hadrien Croubois <hadrien.croubois@gmail.com> * add transpilation guards to the crosschain mocks (#3306) (cherry picked from commit9af5af8fff) Signed-off-by: Hadrien Croubois <hadrien.croubois@gmail.com> * Fix tests on upgradeable contracts after transpilation (cherry picked from commit0762479dd5) Signed-off-by: Hadrien Croubois <hadrien.croubois@gmail.com> * Remove unused constructor argument (cherry picked from commit69c3781043) Signed-off-by: Hadrien Croubois <hadrien.croubois@gmail.com> * Bump minimum Solidity version for Initializable.sol to 0.8.2 (#3328) (cherry picked from commitcb14ea3c5c) * Fix update-comment script to ignore invalid tags (cherry picked from commit848fef5b6c) Signed-off-by: Hadrien Croubois <hadrien.croubois@gmail.com> * 4.6.0 Co-authored-by: Francisco Giordano <frangio.1@gmail.com>
36 lines
1.2 KiB
Solidity
36 lines
1.2 KiB
Solidity
// SPDX-License-Identifier: MIT
|
|
// OpenZeppelin Contracts (last updated v4.6.0) (crosschain/amb/LibAMB.sol)
|
|
|
|
pragma solidity ^0.8.4;
|
|
|
|
import {IAMB as AMB_Bridge} from "../../vendor/amb/IAMB.sol";
|
|
import "../errors.sol";
|
|
|
|
/**
|
|
* @dev Primitives for cross-chain aware contracts using the
|
|
* [AMB](https://docs.tokenbridge.net/amb-bridge/about-amb-bridge)
|
|
* family of bridges.
|
|
*/
|
|
library LibAMB {
|
|
/**
|
|
* @dev Returns whether the current function call is the result of a
|
|
* cross-chain message relayed by `bridge`.
|
|
*/
|
|
function isCrossChain(address bridge) internal view returns (bool) {
|
|
return msg.sender == bridge;
|
|
}
|
|
|
|
/**
|
|
* @dev Returns the address of the sender that triggered the current
|
|
* cross-chain message through `bridge`.
|
|
*
|
|
* NOTE: {isCrossChain} should be checked before trying to recover the
|
|
* sender, as it will revert with `NotCrossChainCall` if the current
|
|
* function call is not the result of a cross-chain message.
|
|
*/
|
|
function crossChainSender(address bridge) internal view returns (address) {
|
|
if (!isCrossChain(bridge)) revert NotCrossChainCall();
|
|
return AMB_Bridge(bridge).messageSender();
|
|
}
|
|
}
|