* 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>
45 lines
1.5 KiB
Solidity
45 lines
1.5 KiB
Solidity
// SPDX-License-Identifier: MIT
|
|
// OpenZeppelin Contracts (last updated v4.6.0) (crosschain/arbitrum/CrossChainEnabledArbitrumL1.sol)
|
|
|
|
pragma solidity ^0.8.4;
|
|
|
|
import "../CrossChainEnabled.sol";
|
|
import "./LibArbitrumL1.sol";
|
|
|
|
/**
|
|
* @dev [Arbitrum](https://arbitrum.io/) specialization or the
|
|
* {CrossChainEnabled} abstraction the L1 side (mainnet).
|
|
*
|
|
* This version should only be deployed on L1 to process cross-chain messages
|
|
* originating from L2. For the other side, use {CrossChainEnabledArbitrumL2}.
|
|
*
|
|
* The bridge contract is provided and maintained by the arbitrum team. You can
|
|
* find the address of this contract on the rinkeby testnet in
|
|
* [Arbitrum's developer documentation](https://developer.offchainlabs.com/docs/useful_addresses).
|
|
*
|
|
* _Available since v4.6._
|
|
*/
|
|
abstract contract CrossChainEnabledArbitrumL1 is CrossChainEnabled {
|
|
/// @custom:oz-upgrades-unsafe-allow state-variable-immutable
|
|
address private immutable _bridge;
|
|
|
|
/// @custom:oz-upgrades-unsafe-allow constructor
|
|
constructor(address bridge) {
|
|
_bridge = bridge;
|
|
}
|
|
|
|
/**
|
|
* @dev see {CrossChainEnabled-_isCrossChain}
|
|
*/
|
|
function _isCrossChain() internal view virtual override returns (bool) {
|
|
return LibArbitrumL1.isCrossChain(_bridge);
|
|
}
|
|
|
|
/**
|
|
* @dev see {CrossChainEnabled-_crossChainSender}
|
|
*/
|
|
function _crossChainSender() internal view virtual override onlyCrossChain returns (address) {
|
|
return LibArbitrumL1.crossChainSender(_bridge);
|
|
}
|
|
}
|