Overview
S Balance
0 S
S Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 16 from a total of 16 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Send | 5344724 | 37 hrs ago | IN | 0.11280346 S | 0.02470374 | ||||
Send | 5264014 | 2 days ago | IN | 0.11533696 S | 0.0263209 | ||||
Send | 5263985 | 2 days ago | IN | 0.11366319 S | 0.02717097 | ||||
Send | 5211780 | 2 days ago | IN | 0.09247945 S | 0.0270927 | ||||
Send | 5211183 | 2 days ago | IN | 0.09247945 S | 0.02682865 | ||||
Send | 5210860 | 2 days ago | IN | 0.0936208 S | 0.03250533 | ||||
Send | 5173523 | 3 days ago | IN | 0.08271209 S | 0.02709132 | ||||
Send | 4680909 | 6 days ago | IN | 0.0919893 S | 0.02709407 | ||||
Send | 4377602 | 8 days ago | IN | 0.07261697 S | 0.02709407 | ||||
Send | 4293182 | 9 days ago | IN | 0.06498786 S | 0.05417904 | ||||
Send | 3807297 | 12 days ago | IN | 0.14695689 S | 0.00263625 | ||||
Send | 2959097 | 18 days ago | IN | 0.08177699 S | 0.00354316 | ||||
Add Token | 2839868 | 19 days ago | IN | 0 S | 0.0001035 | ||||
Send | 2710518 | 20 days ago | IN | 0.20261642 S | 0.0005612 | ||||
Add Token | 2684123 | 20 days ago | IN | 0 S | 0.00010352 | ||||
Grant Role | 2683932 | 20 days ago | IN | 0 S | 0.00005668 |
Latest 13 internal transactions
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
5344724 | 37 hrs ago | 0.11280346 S | ||||
5264014 | 2 days ago | 0.11533696 S | ||||
5263985 | 2 days ago | 0.11366319 S | ||||
5211780 | 2 days ago | 0.09247945 S | ||||
5211183 | 2 days ago | 0.09247945 S | ||||
5210860 | 2 days ago | 0.0936208 S | ||||
5173523 | 3 days ago | 0.08271209 S | ||||
4680909 | 6 days ago | 0.0919893 S | ||||
4377602 | 8 days ago | 0.07261697 S | ||||
4293182 | 9 days ago | 0.06498786 S | ||||
3807297 | 12 days ago | 0.14695689 S | ||||
2959097 | 18 days ago | 0.08177699 S | ||||
2710518 | 20 days ago | 0.20261642 S |
Loading...
Loading
Contract Name:
LayerZeroBridge
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; import "@openzeppelin/contracts/access/AccessControl.sol"; import {ERC20Burnable} from "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol"; import {SafeERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import {MessagingFee, SendParam, IMBToken, ILayerZeroEndpointV2} from "./interfaces/IMBToken.sol"; /** * @title LayerZeroBridge Contract * @dev LayerZeroBridge is aimed at locking native token on src chain, then mint and send mbToken to the dst chain. */ contract LayerZeroBridge is AccessControl { using SafeERC20 for ERC20Burnable; struct Token { address mbToken; address treasury; // The address of escrow address gateway; bool isMainChain; bool isBurnable; } ILayerZeroEndpointV2 public lzEndpoint; bytes32 public constant ADMIN_ROLE = keccak256("ADMIN_ROLE"); bytes32 public constant TOKEN_ADDER_ROLE = keccak256("TOKEN_ADDER_ROLE"); // native token => Token mapping(address => Token) public tokens; mapping(uint256 => uint256) public dstFee; event TokenSent( address indexed token, uint32 indexed dstEid, address indexed from, uint256 amount, uint256 brideFee ); event TokenAdd(address indexed token); event TokenRemove(address indexed token); event TokenUpdate(address indexed token); constructor(address _lzEndpoint) { lzEndpoint = ILayerZeroEndpointV2(_lzEndpoint); _grantRole(DEFAULT_ADMIN_ROLE, msg.sender); _grantRole(ADMIN_ROLE, msg.sender); } // Sends a message from the source to destination chain. function send( address _nativeToken, uint32 _dstEid, uint256 _amount, uint256 _minAmountLD, bytes calldata _extraOptions, MessagingFee calldata _fee ) external payable { require(tokens[_nativeToken].mbToken != address(0), "Invalid token"); require( msg.value == _fee.nativeFee + dstFee[_dstEid], "Insufficient fee" ); ERC20Burnable token = ERC20Burnable(_nativeToken); IMBToken mbToken = IMBToken(tokens[_nativeToken].mbToken); if ( tokens[_nativeToken].isMainChain || !tokens[_nativeToken].isBurnable ) { uint256 balance = token.balanceOf(tokens[_nativeToken].treasury); token.safeTransferFrom( msg.sender, tokens[_nativeToken].treasury, _amount ); uint256 receivedAmount = token.balanceOf( tokens[_nativeToken].treasury ) - balance; require( _amount == receivedAmount, "Received amount does not match sent amount" ); } else { token.burnFrom(msg.sender, _amount); } if (_fee.lzTokenFee > 0) { _payLzToken(_fee.lzTokenFee); } mbToken.mint(address(this), _amount); SendParam memory sendParams = SendParam({ dstEid: _dstEid, // Destination chain's endpoint ID. to: bytes32(uint256(uint160(msg.sender))), // Recipient address. amountLD: _amount, // Amount to send in local decimals. minAmountLD: _minAmountLD, // Minimum amount to send in local decimals. extraOptions: _extraOptions, // Additional options supplied by the caller to be used in the LayerZero message. composeMsg: "", // The composed message for the send() operation. oftCmd: "" // The OFT command to be executed, unused in default OFT implementations. }); mbToken.send{value: msg.value - dstFee[_dstEid]}( sendParams, _fee, // Fee struct containing native gas and ZRO token. payable(msg.sender) // The refund address in case the send call reverts. ); emit TokenSent( _nativeToken, _dstEid, msg.sender, _amount, dstFee[_dstEid] ); } function addToken( address _nativeToken, address _mbToken, address _treasury, address _gateway, bool _isMainChain, bool _isBurnable ) external onlyRole(TOKEN_ADDER_ROLE) { require(_nativeToken != address(0), "Invalid token"); require(_mbToken != address(0), "Invalid mbToken"); require(_gateway != address(0), "Invalid gateway"); require(tokens[_nativeToken].mbToken == address(0), "Already added"); Token storage token = tokens[_nativeToken]; token.mbToken = _mbToken; token.treasury = _treasury; token.gateway = _gateway; token.isMainChain = _isMainChain; token.isBurnable = _isBurnable; emit TokenAdd(_nativeToken); } function removeToken( address _nativeToken ) external onlyRole(TOKEN_ADDER_ROLE) { require(tokens[_nativeToken].mbToken != address(0), "Invalid token"); delete tokens[_nativeToken]; emit TokenRemove(_nativeToken); } function updateToken( address _nativeToken, address _mbToken, address _treasury, address _gateway, bool _isMainChain, bool _isBurnable ) external onlyRole(TOKEN_ADDER_ROLE) { require(tokens[_nativeToken].mbToken != address(0), "Invalid token"); require(_nativeToken != address(0), "Invalid token"); require(_mbToken != address(0), "Invalid mbToken"); require(_gateway != address(0), "Invalid gateway"); Token storage token = tokens[_nativeToken]; token.mbToken = _mbToken; token.treasury = _treasury; token.gateway = _gateway; token.isMainChain = _isMainChain; token.isBurnable = _isBurnable; emit TokenUpdate(_nativeToken); } function setDstFee( uint256 _dstEid, uint256 _fee ) external onlyRole(ADMIN_ROLE) { dstFee[_dstEid] = _fee; } function setLzEndpoint(address _lzEndpoint) external onlyRole(ADMIN_ROLE) { lzEndpoint = ILayerZeroEndpointV2(_lzEndpoint); } function adminWithdraw( uint256 amount, address _to, address _tokenAddr ) external onlyRole(ADMIN_ROLE) { require(_to != address(0), "Invalid receiver"); if (_tokenAddr == address(0)) { payable(_to).transfer(amount); } else { ERC20Burnable(_tokenAddr).transfer(_to, amount); } } /* @dev Quotes the gas needed to pay for the full omnichain transaction. * @return nativeFee Estimated gas fee in native gas. * @return lzTokenFee Estimated gas fee in ZRO token. */ function quoteSend( address _nativeToken, address _from, uint32 _dstEid, uint256 _amount, uint256 _minAmountLD, bytes calldata _extraOptions, bool _payInLzToken ) external view returns (uint256 nativeFee, uint256 lzTokenFee, uint256 bridgeFee) { require(tokens[_nativeToken].mbToken != address(0), "Invalid token"); IMBToken mbToken = IMBToken(tokens[_nativeToken].mbToken); SendParam memory sendParams = SendParam({ dstEid: _dstEid, // Destination chain's endpoint ID. to: bytes32(uint256(uint160(_from))), // Recipient address. amountLD: _amount, // Amount to send in local decimals. minAmountLD: _minAmountLD, // Minimum amount to send in local decimals. extraOptions: _extraOptions, // Additional options supplied by the caller to be used in the LayerZero message. composeMsg: "", // The composed message for the send() operation. oftCmd: "" // The OFT command to be executed, unused in default OFT implementations. }); MessagingFee memory fee = mbToken.quoteSend(sendParams, _payInLzToken); return (fee.nativeFee, fee.lzTokenFee, dstFee[_dstEid]); } /** * @dev Internal function to pay the LZ token fee associated with the message. * @param _lzTokenFee The LZ token fee to be paid. * * @dev If the caller is trying to pay in the specified lzToken, then the lzTokenFee is passed to the endpoint. * @dev Any excess sent, is passed back to the specified _refundAddress in the _lzSend(). */ function _payLzToken(uint256 _lzTokenFee) internal virtual { address lzToken = lzEndpoint.lzToken(); require(lzToken != address(0), "lzToken is unavailable"); // Pay LZ token fee by sending tokens to the endpoint. ERC20Burnable(lzToken).safeTransferFrom( msg.sender, address(this), _lzTokenFee ); ERC20Burnable(lzToken).approve(address(lzEndpoint), _lzTokenFee); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; import { ILayerZeroEndpointV2 } from "@layerzerolabs/lz-evm-protocol-v2/contracts/interfaces/ILayerZeroEndpointV2.sol"; /** * @title IOAppCore */ interface IOAppCore { // Custom error messages error OnlyPeer(uint32 eid, bytes32 sender); error NoPeer(uint32 eid); error InvalidEndpointCall(); error InvalidDelegate(); // Event emitted when a peer (OApp) is set for a corresponding endpoint event PeerSet(uint32 eid, bytes32 peer); /** * @notice Retrieves the OApp version information. * @return senderVersion The version of the OAppSender.sol contract. * @return receiverVersion The version of the OAppReceiver.sol contract. */ function oAppVersion() external view returns (uint64 senderVersion, uint64 receiverVersion); /** * @notice Retrieves the LayerZero endpoint associated with the OApp. * @return iEndpoint The LayerZero endpoint as an interface. */ function endpoint() external view returns (ILayerZeroEndpointV2 iEndpoint); /** * @notice Retrieves the peer (OApp) associated with a corresponding endpoint. * @param _eid The endpoint ID. * @return peer The peer address (OApp instance) associated with the corresponding endpoint. */ function peers(uint32 _eid) external view returns (bytes32 peer); /** * @notice Sets the peer address (OApp instance) for a corresponding endpoint. * @param _eid The endpoint ID. * @param _peer The address of the peer to be associated with the corresponding endpoint. */ function setPeer(uint32 _eid, bytes32 _peer) external; /** * @notice Sets the delegate address for the OApp Core. * @param _delegate The address of the delegate to be set. */ function setDelegate(address _delegate) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol"; import { IOAppCore, ILayerZeroEndpointV2 } from "./interfaces/IOAppCore.sol"; /** * @title OAppCore * @dev Abstract contract implementing the IOAppCore interface with basic OApp configurations. */ abstract contract OAppCore is IOAppCore, Ownable { // The LayerZero endpoint associated with the given OApp ILayerZeroEndpointV2 public immutable endpoint; // Mapping to store peers associated with corresponding endpoints mapping(uint32 eid => bytes32 peer) public peers; /** * @dev Constructor to initialize the OAppCore with the provided endpoint and delegate. * @param _endpoint The address of the LOCAL Layer Zero endpoint. * @param _delegate The delegate capable of making OApp configurations inside of the endpoint. * * @dev The delegate typically should be set as the owner of the contract. */ constructor(address _endpoint, address _delegate) { endpoint = ILayerZeroEndpointV2(_endpoint); if (_delegate == address(0)) revert InvalidDelegate(); endpoint.setDelegate(_delegate); } /** * @notice Sets the peer address (OApp instance) for a corresponding endpoint. * @param _eid The endpoint ID. * @param _peer The address of the peer to be associated with the corresponding endpoint. * * @dev Only the owner/admin of the OApp can call this function. * @dev Indicates that the peer is trusted to send LayerZero messages to this OApp. * @dev Set this to bytes32(0) to remove the peer address. * @dev Peer is a bytes32 to accommodate non-evm chains. */ function setPeer(uint32 _eid, bytes32 _peer) public virtual onlyOwner { _setPeer(_eid, _peer); } /** * @notice Sets the peer address (OApp instance) for a corresponding endpoint. * @param _eid The endpoint ID. * @param _peer The address of the peer to be associated with the corresponding endpoint. * * @dev Indicates that the peer is trusted to send LayerZero messages to this OApp. * @dev Set this to bytes32(0) to remove the peer address. * @dev Peer is a bytes32 to accommodate non-evm chains. */ function _setPeer(uint32 _eid, bytes32 _peer) internal virtual { peers[_eid] = _peer; emit PeerSet(_eid, _peer); } /** * @notice Internal function to get the peer address associated with a specific endpoint; reverts if NOT set. * ie. the peer is set to bytes32(0). * @param _eid The endpoint ID. * @return peer The address of the peer associated with the specified endpoint. */ function _getPeerOrRevert(uint32 _eid) internal view virtual returns (bytes32) { bytes32 peer = peers[_eid]; if (peer == bytes32(0)) revert NoPeer(_eid); return peer; } /** * @notice Sets the delegate address for the OApp. * @param _delegate The address of the delegate to be set. * * @dev Only the owner/admin of the OApp can call this function. * @dev Provides the ability for a delegate to set configs, on behalf of the OApp, directly on the Endpoint contract. */ function setDelegate(address _delegate) public onlyOwner { endpoint.setDelegate(_delegate); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; import { SafeERC20, IERC20 } from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import { MessagingParams, MessagingFee, MessagingReceipt } from "@layerzerolabs/lz-evm-protocol-v2/contracts/interfaces/ILayerZeroEndpointV2.sol"; import { OAppCore } from "./OAppCore.sol"; /** * @title OAppSender * @dev Abstract contract implementing the OAppSender functionality for sending messages to a LayerZero endpoint. */ abstract contract OAppSender is OAppCore { using SafeERC20 for IERC20; // Custom error messages error NotEnoughNative(uint256 msgValue); error LzTokenUnavailable(); // @dev The version of the OAppSender implementation. // @dev Version is bumped when changes are made to this contract. uint64 internal constant SENDER_VERSION = 1; /** * @notice Retrieves the OApp version information. * @return senderVersion The version of the OAppSender.sol contract. * @return receiverVersion The version of the OAppReceiver.sol contract. * * @dev Providing 0 as the default for OAppReceiver version. Indicates that the OAppReceiver is not implemented. * ie. this is a SEND only OApp. * @dev If the OApp uses both OAppSender and OAppReceiver, then this needs to be override returning the correct versions */ function oAppVersion() public view virtual returns (uint64 senderVersion, uint64 receiverVersion) { return (SENDER_VERSION, 0); } /** * @dev Internal function to interact with the LayerZero EndpointV2.quote() for fee calculation. * @param _dstEid The destination endpoint ID. * @param _message The message payload. * @param _options Additional options for the message. * @param _payInLzToken Flag indicating whether to pay the fee in LZ tokens. * @return fee The calculated MessagingFee for the message. * - nativeFee: The native fee for the message. * - lzTokenFee: The LZ token fee for the message. */ function _quote( uint32 _dstEid, bytes memory _message, bytes memory _options, bool _payInLzToken ) internal view virtual returns (MessagingFee memory fee) { return endpoint.quote( MessagingParams(_dstEid, _getPeerOrRevert(_dstEid), _message, _options, _payInLzToken), address(this) ); } /** * @dev Internal function to interact with the LayerZero EndpointV2.send() for sending a message. * @param _dstEid The destination endpoint ID. * @param _message The message payload. * @param _options Additional options for the message. * @param _fee The calculated LayerZero fee for the message. * - nativeFee: The native fee. * - lzTokenFee: The lzToken fee. * @param _refundAddress The address to receive any excess fee values sent to the endpoint. * @return receipt The receipt for the sent message. * - guid: The unique identifier for the sent message. * - nonce: The nonce of the sent message. * - fee: The LayerZero fee incurred for the message. */ function _lzSend( uint32 _dstEid, bytes memory _message, bytes memory _options, MessagingFee memory _fee, address _refundAddress ) internal virtual returns (MessagingReceipt memory receipt) { // @dev Push corresponding fees to the endpoint, any excess is sent back to the _refundAddress from the endpoint. uint256 messageValue = _payNative(_fee.nativeFee); if (_fee.lzTokenFee > 0) _payLzToken(_fee.lzTokenFee); return // solhint-disable-next-line check-send-result endpoint.send{ value: messageValue }( MessagingParams(_dstEid, _getPeerOrRevert(_dstEid), _message, _options, _fee.lzTokenFee > 0), _refundAddress ); } /** * @dev Internal function to pay the native fee associated with the message. * @param _nativeFee The native fee to be paid. * @return nativeFee The amount of native currency paid. * * @dev If the OApp needs to initiate MULTIPLE LayerZero messages in a single transaction, * this will need to be overridden because msg.value would contain multiple lzFees. * @dev Should be overridden in the event the LayerZero endpoint requires a different native currency. * @dev Some EVMs use an ERC20 as a method for paying transactions/gasFees. * @dev The endpoint is EITHER/OR, ie. it will NOT support both types of native payment at a time. */ function _payNative(uint256 _nativeFee) internal virtual returns (uint256 nativeFee) { if (msg.value != _nativeFee) revert NotEnoughNative(msg.value); return _nativeFee; } /** * @dev Internal function to pay the LZ token fee associated with the message. * @param _lzTokenFee The LZ token fee to be paid. * * @dev If the caller is trying to pay in the specified lzToken, then the lzTokenFee is passed to the endpoint. * @dev Any excess sent, is passed back to the specified _refundAddress in the _lzSend(). */ function _payLzToken(uint256 _lzTokenFee) internal virtual { // @dev Cannot cache the token because it is not immutable in the endpoint. address lzToken = endpoint.lzToken(); if (lzToken == address(0)) revert LzTokenUnavailable(); // Pay LZ token fee by sending tokens to the endpoint. IERC20(lzToken).safeTransferFrom(msg.sender, address(endpoint), _lzTokenFee); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; import { MessagingReceipt, MessagingFee } from "../../oapp/OAppSender.sol"; /** * @dev Struct representing token parameters for the OFT send() operation. */ struct SendParam { uint32 dstEid; // Destination endpoint ID. bytes32 to; // Recipient address. uint256 amountLD; // Amount to send in local decimals. uint256 minAmountLD; // Minimum amount to send in local decimals. bytes extraOptions; // Additional options supplied by the caller to be used in the LayerZero message. bytes composeMsg; // The composed message for the send() operation. bytes oftCmd; // The OFT command to be executed, unused in default OFT implementations. } /** * @dev Struct representing OFT limit information. * @dev These amounts can change dynamically and are up the the specific oft implementation. */ struct OFTLimit { uint256 minAmountLD; // Minimum amount in local decimals that can be sent to the recipient. uint256 maxAmountLD; // Maximum amount in local decimals that can be sent to the recipient. } /** * @dev Struct representing OFT receipt information. */ struct OFTReceipt { uint256 amountSentLD; // Amount of tokens ACTUALLY debited from the sender in local decimals. // @dev In non-default implementations, the amountReceivedLD COULD differ from this value. uint256 amountReceivedLD; // Amount of tokens to be received on the remote side. } /** * @dev Struct representing OFT fee details. * @dev Future proof mechanism to provide a standardized way to communicate fees to things like a UI. */ struct OFTFeeDetail { int256 feeAmountLD; // Amount of the fee in local decimals. string description; // Description of the fee. } /** * @title IOFT * @dev Interface for the OftChain (OFT) token. * @dev Does not inherit ERC20 to accommodate usage by OFTAdapter as well. * @dev This specific interface ID is '0x02e49c2c'. */ interface IOFT { // Custom error messages error InvalidLocalDecimals(); error SlippageExceeded(uint256 amountLD, uint256 minAmountLD); // Events event OFTSent( bytes32 indexed guid, // GUID of the OFT message. uint32 dstEid, // Destination Endpoint ID. address indexed fromAddress, // Address of the sender on the src chain. uint256 amountSentLD, // Amount of tokens sent in local decimals. uint256 amountReceivedLD // Amount of tokens received in local decimals. ); event OFTReceived( bytes32 indexed guid, // GUID of the OFT message. uint32 srcEid, // Source Endpoint ID. address indexed toAddress, // Address of the recipient on the dst chain. uint256 amountReceivedLD // Amount of tokens received in local decimals. ); /** * @notice Retrieves interfaceID and the version of the OFT. * @return interfaceId The interface ID. * @return version The version. * * @dev interfaceId: This specific interface ID is '0x02e49c2c'. * @dev version: Indicates a cross-chain compatible msg encoding with other OFTs. * @dev If a new feature is added to the OFT cross-chain msg encoding, the version will be incremented. * ie. localOFT version(x,1) CAN send messages to remoteOFT version(x,1) */ function oftVersion() external view returns (bytes4 interfaceId, uint64 version); /** * @notice Retrieves the address of the token associated with the OFT. * @return token The address of the ERC20 token implementation. */ function token() external view returns (address); /** * @notice Indicates whether the OFT contract requires approval of the 'token()' to send. * @return requiresApproval Needs approval of the underlying token implementation. * * @dev Allows things like wallet implementers to determine integration requirements, * without understanding the underlying token implementation. */ function approvalRequired() external view returns (bool); /** * @notice Retrieves the shared decimals of the OFT. * @return sharedDecimals The shared decimals of the OFT. */ function sharedDecimals() external view returns (uint8); /** * @notice Provides a quote for OFT-related operations. * @param _sendParam The parameters for the send operation. * @return limit The OFT limit information. * @return oftFeeDetails The details of OFT fees. * @return receipt The OFT receipt information. */ function quoteOFT( SendParam calldata _sendParam ) external view returns (OFTLimit memory, OFTFeeDetail[] memory oftFeeDetails, OFTReceipt memory); /** * @notice Provides a quote for the send() operation. * @param _sendParam The parameters for the send() operation. * @param _payInLzToken Flag indicating whether the caller is paying in the LZ token. * @return fee The calculated LayerZero messaging fee from the send() operation. * * @dev MessagingFee: LayerZero msg fee * - nativeFee: The native fee. * - lzTokenFee: The lzToken fee. */ function quoteSend(SendParam calldata _sendParam, bool _payInLzToken) external view returns (MessagingFee memory); /** * @notice Executes the send() operation. * @param _sendParam The parameters for the send operation. * @param _fee The fee information supplied by the caller. * - nativeFee: The native fee. * - lzTokenFee: The lzToken fee. * @param _refundAddress The address to receive any excess funds from fees etc. on the src. * @return receipt The LayerZero messaging receipt from the send() operation. * @return oftReceipt The OFT receipt information. * * @dev MessagingReceipt: LayerZero msg receipt * - guid: The unique identifier for the sent message. * - nonce: The nonce of the sent message. * - fee: The LayerZero fee incurred for the message. */ function send( SendParam calldata _sendParam, MessagingFee calldata _fee, address _refundAddress ) external payable returns (MessagingReceipt memory, OFTReceipt memory); }
// SPDX-License-Identifier: MIT pragma solidity >=0.8.0; import { IMessageLibManager } from "./IMessageLibManager.sol"; import { IMessagingComposer } from "./IMessagingComposer.sol"; import { IMessagingChannel } from "./IMessagingChannel.sol"; import { IMessagingContext } from "./IMessagingContext.sol"; struct MessagingParams { uint32 dstEid; bytes32 receiver; bytes message; bytes options; bool payInLzToken; } struct MessagingReceipt { bytes32 guid; uint64 nonce; MessagingFee fee; } struct MessagingFee { uint256 nativeFee; uint256 lzTokenFee; } struct Origin { uint32 srcEid; bytes32 sender; uint64 nonce; } interface ILayerZeroEndpointV2 is IMessageLibManager, IMessagingComposer, IMessagingChannel, IMessagingContext { event PacketSent(bytes encodedPayload, bytes options, address sendLibrary); event PacketVerified(Origin origin, address receiver, bytes32 payloadHash); event PacketDelivered(Origin origin, address receiver); event LzReceiveAlert( address indexed receiver, address indexed executor, Origin origin, bytes32 guid, uint256 gas, uint256 value, bytes message, bytes extraData, bytes reason ); event LzTokenSet(address token); event DelegateSet(address sender, address delegate); function quote(MessagingParams calldata _params, address _sender) external view returns (MessagingFee memory); function send( MessagingParams calldata _params, address _refundAddress ) external payable returns (MessagingReceipt memory); function verify(Origin calldata _origin, address _receiver, bytes32 _payloadHash) external; function verifiable(Origin calldata _origin, address _receiver) external view returns (bool); function initializable(Origin calldata _origin, address _receiver) external view returns (bool); function lzReceive( Origin calldata _origin, address _receiver, bytes32 _guid, bytes calldata _message, bytes calldata _extraData ) external payable; // oapp can burn messages partially by calling this function with its own business logic if messages are verified in order function clear(address _oapp, Origin calldata _origin, bytes32 _guid, bytes calldata _message) external; function setLzToken(address _lzToken) external; function lzToken() external view returns (address); function nativeToken() external view returns (address); function setDelegate(address _delegate) external; }
// SPDX-License-Identifier: MIT pragma solidity >=0.8.0; struct SetConfigParam { uint32 eid; uint32 configType; bytes config; } interface IMessageLibManager { struct Timeout { address lib; uint256 expiry; } event LibraryRegistered(address newLib); event DefaultSendLibrarySet(uint32 eid, address newLib); event DefaultReceiveLibrarySet(uint32 eid, address newLib); event DefaultReceiveLibraryTimeoutSet(uint32 eid, address oldLib, uint256 expiry); event SendLibrarySet(address sender, uint32 eid, address newLib); event ReceiveLibrarySet(address receiver, uint32 eid, address newLib); event ReceiveLibraryTimeoutSet(address receiver, uint32 eid, address oldLib, uint256 timeout); function registerLibrary(address _lib) external; function isRegisteredLibrary(address _lib) external view returns (bool); function getRegisteredLibraries() external view returns (address[] memory); function setDefaultSendLibrary(uint32 _eid, address _newLib) external; function defaultSendLibrary(uint32 _eid) external view returns (address); function setDefaultReceiveLibrary(uint32 _eid, address _newLib, uint256 _gracePeriod) external; function defaultReceiveLibrary(uint32 _eid) external view returns (address); function setDefaultReceiveLibraryTimeout(uint32 _eid, address _lib, uint256 _expiry) external; function defaultReceiveLibraryTimeout(uint32 _eid) external view returns (address lib, uint256 expiry); function isSupportedEid(uint32 _eid) external view returns (bool); function isValidReceiveLibrary(address _receiver, uint32 _eid, address _lib) external view returns (bool); /// ------------------- OApp interfaces ------------------- function setSendLibrary(address _oapp, uint32 _eid, address _newLib) external; function getSendLibrary(address _sender, uint32 _eid) external view returns (address lib); function isDefaultSendLibrary(address _sender, uint32 _eid) external view returns (bool); function setReceiveLibrary(address _oapp, uint32 _eid, address _newLib, uint256 _gracePeriod) external; function getReceiveLibrary(address _receiver, uint32 _eid) external view returns (address lib, bool isDefault); function setReceiveLibraryTimeout(address _oapp, uint32 _eid, address _lib, uint256 _expiry) external; function receiveLibraryTimeout(address _receiver, uint32 _eid) external view returns (address lib, uint256 expiry); function setConfig(address _oapp, address _lib, SetConfigParam[] calldata _params) external; function getConfig( address _oapp, address _lib, uint32 _eid, uint32 _configType ) external view returns (bytes memory config); }
// SPDX-License-Identifier: MIT pragma solidity >=0.8.0; interface IMessagingChannel { event InboundNonceSkipped(uint32 srcEid, bytes32 sender, address receiver, uint64 nonce); event PacketNilified(uint32 srcEid, bytes32 sender, address receiver, uint64 nonce, bytes32 payloadHash); event PacketBurnt(uint32 srcEid, bytes32 sender, address receiver, uint64 nonce, bytes32 payloadHash); function eid() external view returns (uint32); // this is an emergency function if a message cannot be verified for some reasons // required to provide _nextNonce to avoid race condition function skip(address _oapp, uint32 _srcEid, bytes32 _sender, uint64 _nonce) external; function nilify(address _oapp, uint32 _srcEid, bytes32 _sender, uint64 _nonce, bytes32 _payloadHash) external; function burn(address _oapp, uint32 _srcEid, bytes32 _sender, uint64 _nonce, bytes32 _payloadHash) external; function nextGuid(address _sender, uint32 _dstEid, bytes32 _receiver) external view returns (bytes32); function inboundNonce(address _receiver, uint32 _srcEid, bytes32 _sender) external view returns (uint64); function outboundNonce(address _sender, uint32 _dstEid, bytes32 _receiver) external view returns (uint64); function inboundPayloadHash( address _receiver, uint32 _srcEid, bytes32 _sender, uint64 _nonce ) external view returns (bytes32); function lazyInboundNonce(address _receiver, uint32 _srcEid, bytes32 _sender) external view returns (uint64); }
// SPDX-License-Identifier: MIT pragma solidity >=0.8.0; interface IMessagingComposer { event ComposeSent(address from, address to, bytes32 guid, uint16 index, bytes message); event ComposeDelivered(address from, address to, bytes32 guid, uint16 index); event LzComposeAlert( address indexed from, address indexed to, address indexed executor, bytes32 guid, uint16 index, uint256 gas, uint256 value, bytes message, bytes extraData, bytes reason ); function composeQueue( address _from, address _to, bytes32 _guid, uint16 _index ) external view returns (bytes32 messageHash); function sendCompose(address _to, bytes32 _guid, uint16 _index, bytes calldata _message) external; function lzCompose( address _from, address _to, bytes32 _guid, uint16 _index, bytes calldata _message, bytes calldata _extraData ) external payable; }
// SPDX-License-Identifier: MIT pragma solidity >=0.8.0; interface IMessagingContext { function isSendingMessage() external view returns (bool); function getSendContext() external view returns (uint32 dstEid, address sender); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/AccessControl.sol) pragma solidity ^0.8.20; import {IAccessControl} from "./IAccessControl.sol"; import {Context} from "../utils/Context.sol"; import {ERC165} from "../utils/introspection/ERC165.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ```solidity * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ```solidity * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. We recommend using {AccessControlDefaultAdminRules} * to enforce additional security measures for this role. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address account => bool) hasRole; bytes32 adminRole; } mapping(bytes32 role => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with an {AccessControlUnauthorizedAccount} error including the required role. */ modifier onlyRole(bytes32 role) { _checkRole(role); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual returns (bool) { return _roles[role].hasRole[account]; } /** * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `_msgSender()` * is missing `role`. Overriding this function changes the behavior of the {onlyRole} modifier. */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `account` * is missing `role`. */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert AccessControlUnauthorizedAccount(account, role); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleGranted} event. */ function grantRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleRevoked} event. */ function revokeRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `callerConfirmation`. * * May emit a {RoleRevoked} event. */ function renounceRole(bytes32 role, address callerConfirmation) public virtual { if (callerConfirmation != _msgSender()) { revert AccessControlBadConfirmation(); } _revokeRole(role, callerConfirmation); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Attempts to grant `role` to `account` and returns a boolean indicating if `role` was granted. * * Internal function without access restriction. * * May emit a {RoleGranted} event. */ function _grantRole(bytes32 role, address account) internal virtual returns (bool) { if (!hasRole(role, account)) { _roles[role].hasRole[account] = true; emit RoleGranted(role, account, _msgSender()); return true; } else { return false; } } /** * @dev Attempts to revoke `role` to `account` and returns a boolean indicating if `role` was revoked. * * Internal function without access restriction. * * May emit a {RoleRevoked} event. */ function _revokeRole(bytes32 role, address account) internal virtual returns (bool) { if (hasRole(role, account)) { _roles[role].hasRole[account] = false; emit RoleRevoked(role, account, _msgSender()); return true; } else { return false; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/IAccessControl.sol) pragma solidity ^0.8.20; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev The `account` is missing a role. */ error AccessControlUnauthorizedAccount(address account, bytes32 neededRole); /** * @dev The caller of a function is not the expected one. * * NOTE: Don't confuse with {AccessControlUnauthorizedAccount}. */ error AccessControlBadConfirmation(); /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `callerConfirmation`. */ function renounceRole(bytes32 role, address callerConfirmation) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * The initial owner is set to the address provided by the deployer. This can * later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "./IERC20.sol"; import {IERC20Metadata} from "./extensions/IERC20Metadata.sol"; import {Context} from "../../utils/Context.sol"; import {IERC20Errors} from "../../interfaces/draft-IERC6093.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` amount of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.20; import {ERC20} from "../ERC20.sol"; import {Context} from "../../../utils/Context.sol"; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys a `value` amount of tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 value) public virtual { _burn(_msgSender(), value); } /** * @dev Destroys a `value` amount of tokens from `account`, deducting from * the caller's allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `value`. */ function burnFrom(address account, uint256 value) public virtual { _spendAllowance(account, _msgSender(), value); _burn(account, value); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Permit.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. * * ==== Security Considerations * * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be * considered as an intention to spend the allowance in any specific way. The second is that because permits have * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be * generally recommended is: * * ```solidity * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public { * try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {} * doThing(..., value); * } * * function doThing(..., uint256 value) public { * token.safeTransferFrom(msg.sender, address(this), value); * ... * } * ``` * * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also * {SafeERC20-safeTransferFrom}). * * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so * contracts should have entry points that don't rely on permit. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. * * CAUTION: See Security Considerations above. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; import {IERC20Permit} from "../extensions/IERC20Permit.sol"; import {Address} from "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; /** * @dev An operation with an ERC20 token failed. */ error SafeERC20FailedOperation(address token); /** * @dev Indicates a failed `decreaseAllowance` request. */ error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease); /** * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value))); } /** * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful. */ function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeCall(token.transferFrom, (from, to, value))); } /** * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 oldAllowance = token.allowance(address(this), spender); forceApprove(token, spender, oldAllowance + value); } /** * @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no * value, non-reverting calls are assumed to be successful. */ function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal { unchecked { uint256 currentAllowance = token.allowance(address(this), spender); if (currentAllowance < requestedDecrease) { revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease); } forceApprove(token, spender, currentAllowance - requestedDecrease); } } /** * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval * to be set to zero before setting it to a non-zero value, such as USDT. */ function forceApprove(IERC20 token, address spender, uint256 value) internal { bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value)); if (!_callOptionalReturnBool(token, approvalCall)) { _callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0))); _callOptionalReturn(token, approvalCall); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data); if (returndata.length != 0 && !abi.decode(returndata, (bool))) { revert SafeERC20FailedOperation(address(token)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). * * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead. */ function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false // and not revert is the subcall reverts. (bool success, bytes memory returndata) = address(token).call(data); return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && address(token).code.length > 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol) pragma solidity ^0.8.20; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev The ETH balance of the account is not enough to perform the operation. */ error AddressInsufficientBalance(address account); /** * @dev There's no code at `target` (it is not a contract). */ error AddressEmptyCode(address target); /** * @dev A call to an address target failed. The target may have reverted. */ error FailedInnerCall(); /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { if (address(this).balance < amount) { revert AddressInsufficientBalance(address(this)); } (bool success, ) = recipient.call{value: amount}(""); if (!success) { revert FailedInnerCall(); } } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason or custom error, it is bubbled * up by this function (like regular Solidity function calls). However, if * the call reverted with no returned reason, this function reverts with a * {FailedInnerCall} error. * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { if (address(this).balance < value) { revert AddressInsufficientBalance(address(this)); } (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an * unsuccessful call. */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata ) internal view returns (bytes memory) { if (!success) { _revert(returndata); } else { // only check if target is a contract if the call was successful and the return data is empty // otherwise we already know that it was a contract if (returndata.length == 0 && target.code.length == 0) { revert AddressEmptyCode(target); } return returndata; } } /** * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the * revert reason or with a default {FailedInnerCall} error. */ function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) { if (!success) { _revert(returndata); } else { return returndata; } } /** * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}. */ function _revert(bytes memory returndata) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert FailedInnerCall(); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/ERC165.sol) pragma solidity ^0.8.20; import {IERC165} from "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import {ILayerZeroEndpointV2} from "@layerzerolabs/lz-evm-oapp-v2/contracts/oapp/interfaces/IOAppCore.sol"; import {MessagingFee, SendParam, IOFT} from "@layerzerolabs/lz-evm-oapp-v2/contracts/oft/interfaces/IOFT.sol"; interface IMBToken is IOFT, IERC20 { function mint(address to, uint256 amount) external; function burnFrom(address from, uint256 amount) external; function gateway() external returns (address); }
{ "optimizer": { "enabled": true, "runs": 200 }, "evmVersion": "paris", "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_lzEndpoint","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AccessControlBadConfirmation","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"neededRole","type":"bytes32"}],"name":"AccessControlUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AddressInsufficientBalance","type":"error"},{"inputs":[],"name":"FailedInnerCall","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"}],"name":"TokenAdd","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"}],"name":"TokenRemove","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":true,"internalType":"uint32","name":"dstEid","type":"uint32"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"brideFee","type":"uint256"}],"name":"TokenSent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"}],"name":"TokenUpdate","type":"event"},{"inputs":[],"name":"ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_ADDER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_nativeToken","type":"address"},{"internalType":"address","name":"_mbToken","type":"address"},{"internalType":"address","name":"_treasury","type":"address"},{"internalType":"address","name":"_gateway","type":"address"},{"internalType":"bool","name":"_isMainChain","type":"bool"},{"internalType":"bool","name":"_isBurnable","type":"bool"}],"name":"addToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"address","name":"_tokenAddr","type":"address"}],"name":"adminWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"dstFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lzEndpoint","outputs":[{"internalType":"contract ILayerZeroEndpointV2","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_nativeToken","type":"address"},{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint32","name":"_dstEid","type":"uint32"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_minAmountLD","type":"uint256"},{"internalType":"bytes","name":"_extraOptions","type":"bytes"},{"internalType":"bool","name":"_payInLzToken","type":"bool"}],"name":"quoteSend","outputs":[{"internalType":"uint256","name":"nativeFee","type":"uint256"},{"internalType":"uint256","name":"lzTokenFee","type":"uint256"},{"internalType":"uint256","name":"bridgeFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_nativeToken","type":"address"}],"name":"removeToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"callerConfirmation","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_nativeToken","type":"address"},{"internalType":"uint32","name":"_dstEid","type":"uint32"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_minAmountLD","type":"uint256"},{"internalType":"bytes","name":"_extraOptions","type":"bytes"},{"components":[{"internalType":"uint256","name":"nativeFee","type":"uint256"},{"internalType":"uint256","name":"lzTokenFee","type":"uint256"}],"internalType":"struct MessagingFee","name":"_fee","type":"tuple"}],"name":"send","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_dstEid","type":"uint256"},{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"setDstFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_lzEndpoint","type":"address"}],"name":"setLzEndpoint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"tokens","outputs":[{"internalType":"address","name":"mbToken","type":"address"},{"internalType":"address","name":"treasury","type":"address"},{"internalType":"address","name":"gateway","type":"address"},{"internalType":"bool","name":"isMainChain","type":"bool"},{"internalType":"bool","name":"isBurnable","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_nativeToken","type":"address"},{"internalType":"address","name":"_mbToken","type":"address"},{"internalType":"address","name":"_treasury","type":"address"},{"internalType":"address","name":"_gateway","type":"address"},{"internalType":"bool","name":"_isMainChain","type":"bool"},{"internalType":"bool","name":"_isBurnable","type":"bool"}],"name":"updateToken","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162001e9038038062001e90833981016040819052620000349162000140565b600180546001600160a01b0319166001600160a01b0383161790556200005c60003362000091565b50620000897fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c217753362000091565b505062000172565b6000828152602081815260408083206001600160a01b038516845290915281205460ff1662000136576000838152602081815260408083206001600160a01b03861684529091529020805460ff19166001179055620000ed3390565b6001600160a01b0316826001600160a01b0316847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45060016200013a565b5060005b92915050565b6000602082840312156200015357600080fd5b81516001600160a01b03811681146200016b57600080fd5b9392505050565b611d0e80620001826000396000f3fe60806040526004361061011f5760003560e01c8063a217fddf116100a0578063d78e888611610064578063d78e888614610357578063d9331a1114610392578063db63ed33146103b2578063e4860339146103d2578063f7c4e1c51461046f57600080fd5b8063a217fddf1461029b578063b353aaa7146102b0578063bd5ec228146102e8578063c264cdde14610315578063d547741f1461033757600080fd5b806336568abe116100e757806336568abe146101f9578063397d1650146102195780635fa7b5841461023957806375b238fc1461025957806391d148541461027b57600080fd5b806301ffc9a71461012457806312f5ea4014610159578063248a9ca31461017b5780632f2ff15d146101b95780632f54bfbe146101d9575b600080fd5b34801561013057600080fd5b5061014461013f366004611648565b610482565b60405190151581526020015b60405180910390f35b34801561016557600080fd5b50610179610174366004611687565b6104b9565b005b34801561018757600080fd5b506101ab6101963660046116c9565b60009081526020819052604090206001015490565b604051908152602001610150565b3480156101c557600080fd5b506101796101d43660046116e2565b6105e4565b3480156101e557600080fd5b506101796101f4366004611720565b610609565b34801561020557600080fd5b506101796102143660046116e2565b6107b3565b34801561022557600080fd5b506101796102343660046117a2565b6107eb565b34801561024557600080fd5b506101796102543660046117c4565b610816565b34801561026557600080fd5b506101ab600080516020611cb983398151915281565b34801561028757600080fd5b506101446102963660046116e2565b6108d5565b3480156102a757600080fd5b506101ab600081565b3480156102bc57600080fd5b506001546102d0906001600160a01b031681565b6040516001600160a01b039091168152602001610150565b3480156102f457600080fd5b506101ab6103033660046116c9565b60036020526000908152604090205481565b34801561032157600080fd5b506101ab600080516020611c9983398151915281565b34801561034357600080fd5b506101796103523660046116e2565b6108fe565b34801561036357600080fd5b50610377610372366004611843565b610923565b60408051938452602084019290925290820152606001610150565b34801561039e57600080fd5b506101796103ad3660046117c4565b610aa9565b3480156103be57600080fd5b506101796103cd366004611720565b610ae4565b3480156103de57600080fd5b506104346103ed3660046117c4565b60026020819052600091825260409091208054600182015491909201546001600160a01b03928316929182169181169060ff600160a01b8204811691600160a81b90041685565b604080516001600160a01b0396871681529486166020860152929094169183019190915215156060820152901515608082015260a001610150565b61017961047d3660046118e3565b610caf565b60006001600160e01b03198216637965db0b60e01b14806104b357506301ffc9a760e01b6001600160e01b03198316145b92915050565b600080516020611cb98339815191526104d1816111c2565b6001600160a01b03831661051f5760405162461bcd60e51b815260206004820152601060248201526f24b73b30b634b2103932b1b2b4bb32b960811b60448201526064015b60405180910390fd5b6001600160a01b038216610569576040516001600160a01b0384169085156108fc029086906000818181858888f19350505050158015610563573d6000803e3d6000fd5b506105de565b60405163a9059cbb60e01b81526001600160a01b0384811660048301526024820186905283169063a9059cbb906044016020604051808303816000875af11580156105b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105dc9190611979565b505b50505050565b6000828152602081905260409020600101546105ff816111c2565b6105de83836111cf565b600080516020611c99833981519152610621816111c2565b6001600160a01b03878116600090815260026020526040902054166106585760405162461bcd60e51b815260040161051690611996565b6001600160a01b03871661067e5760405162461bcd60e51b815260040161051690611996565b6001600160a01b0386166106c65760405162461bcd60e51b815260206004820152600f60248201526e24b73b30b634b21036b12a37b5b2b760891b6044820152606401610516565b6001600160a01b03841661070e5760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206761746577617960881b6044820152606401610516565b6001600160a01b03878116600081815260026020819052604080832080546001600160a01b03199081168d88161782556001820180549091168c88161790559182018054958a166001600160a81b031990961695909517600160a01b891515021760ff60a81b1916600160a81b881515021790945592517fdb00412b5cc49a018511a90735ebd1abebb4f1671247e36843479a0f44d98f9f9190a25050505050505050565b6001600160a01b03811633146107dc5760405163334bd91960e11b815260040160405180910390fd5b6107e68282611261565b505050565b600080516020611cb9833981519152610803816111c2565b5060009182526003602052604090912055565b600080516020611c9983398151915261082e816111c2565b6001600160a01b03828116600090815260026020526040902054166108655760405162461bcd60e51b815260040161051690611996565b6001600160a01b038216600081815260026020819052604080832080546001600160a01b03199081168255600182018054909116905590910180546001600160b01b0319169055517f6fd87c50b8d2e76abbba39c6904ad99ea6fa9e04daf208dd6c8dd73a923505b79190a25050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b600082815260208190526040902060010154610919816111c2565b6105de8383611261565b6001600160a01b03888116600090815260026020526040812054909182918291166109605760405162461bcd60e51b815260040161051690611996565b6001600160a01b03808c16600090815260026020908152604080832054815160e08101835263ffffffff8f1681528f8616818501528083018e9052606081018d90528251601f8c018590048502810185019093528a8352941693916080830191908b908b9081908401838280828437600092018290525093855250506040805160208181018352848252808601919091528151908101825283815293810193909352509051633b6f743b60e01b8152919250906001600160a01b03841690633b6f743b90610a349085908b90600401611a8c565b6040805180830381865afa158015610a50573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a749190611b0d565b805160209182015163ffffffff9e909e1660009081526003909252604090912054909f9c9e509c505050505050505050505050565b600080516020611cb9833981519152610ac1816111c2565b50600180546001600160a01b0319166001600160a01b0392909216919091179055565b600080516020611c99833981519152610afc816111c2565b6001600160a01b038716610b225760405162461bcd60e51b815260040161051690611996565b6001600160a01b038616610b6a5760405162461bcd60e51b815260206004820152600f60248201526e24b73b30b634b21036b12a37b5b2b760891b6044820152606401610516565b6001600160a01b038416610bb25760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206761746577617960881b6044820152606401610516565b6001600160a01b038781166000908152600260205260409020541615610c0a5760405162461bcd60e51b815260206004820152600d60248201526c105b1c9958591e481859191959609a1b6044820152606401610516565b6001600160a01b03878116600081815260026020819052604080832080546001600160a01b03199081168d88161782556001820180549091168c88161790559182018054958a166001600160a81b031990961695909517600160a01b891515021760ff60a81b1916600160a81b881515021790945592517f3fcb42e4358c0e97a82af0a70098f8422ce84c605d3c38dc8ca8c6bf5d08566c9190a25050505050505050565b6001600160a01b0387811660009081526002602052604090205416610ce65760405162461bcd60e51b815260040161051690611996565b63ffffffff8616600090815260036020526040902054610d07908235611b3f565b3414610d485760405162461bcd60e51b815260206004820152601060248201526f496e73756666696369656e742066656560801b6044820152606401610516565b6001600160a01b038781166000908152600260208190526040909120805491015489929190911690600160a01b900460ff1680610da957506001600160a01b03891660009081526002602081905260409091200154600160a81b900460ff16155b15610f59576001600160a01b038981166000908152600260205260408082206001015490516370a0823160e01b8152908316600482015290918416906370a0823190602401602060405180830381865afa158015610e0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e2f9190611b52565b6001600160a01b03808c16600090815260026020526040902060010154919250610e6091858216913391168b6112cc565b6001600160a01b038a81166000908152600260205260408082206001015490516370a0823160e01b8152908316600482015290918391908616906370a0823190602401602060405180830381865afa158015610ec0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ee49190611b52565b610eee9190611b6b565b9050808914610f525760405162461bcd60e51b815260206004820152602a60248201527f526563656976656420616d6f756e7420646f6573206e6f74206d617463682073604482015269195b9d08185b5bdd5b9d60b21b6064820152608401610516565b5050610fba565b60405163079cc67960e41b8152336004820152602481018890526001600160a01b038316906379cc679090604401600060405180830381600087803b158015610fa157600080fd5b505af1158015610fb5573d6000803e3d6000fd5b505050505b602083013515610fd157610fd18360200135611326565b6040516340c10f1960e01b8152306004820152602481018890526001600160a01b038216906340c10f1990604401600060405180830381600087803b15801561101957600080fd5b505af115801561102d573d6000803e3d6000fd5b5050505060006040518060e001604052808a63ffffffff168152602001336001600160a01b031660001b815260200189815260200188815260200187878080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201829052509385525050604080516020818101835284825280860191909152815180820183528481529482019490945263ffffffff8e16835260039093525020549091506001600160a01b0383169063c7c7f5b3906110f49034611b6b565b8387336040518563ffffffff1660e01b815260040161111593929190611b7e565b60c06040518083038185885af1158015611133573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906111589190611bbd565b505063ffffffff89166000818152600360209081526040918290205482518c8152918201523392916001600160a01b038e16917f05080ff8577e1d84942cb572049863a4d1377b355fd6a0e989022bd51db4590c910160405180910390a450505050505050505050565b6111cc8133611471565b50565b60006111db83836108d5565b611259576000838152602081815260408083206001600160a01b03861684529091529020805460ff191660011790556112113390565b6001600160a01b0316826001600160a01b0316847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45060016104b3565b5060006104b3565b600061126d83836108d5565b15611259576000838152602081815260408083206001600160a01b0386168085529252808320805460ff1916905551339286917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45060016104b3565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b1790526105de9085906114ae565b6001546040805163393f876560e21b815290516000926001600160a01b03169163e4fe1d949160048083019260209291908290030181865afa158015611370573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113949190611c5f565b90506001600160a01b0381166113e55760405162461bcd60e51b81526020600482015260166024820152756c7a546f6b656e20697320756e617661696c61626c6560501b6044820152606401610516565b6113fa6001600160a01b0382163330856112cc565b60015460405163095ea7b360e01b81526001600160a01b039182166004820152602481018490529082169063095ea7b3906044016020604051808303816000875af115801561144d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107e69190611979565b61147b82826108d5565b6114aa5760405163e2517d3f60e01b81526001600160a01b038216600482015260248101839052604401610516565b5050565b60006114c36001600160a01b03841683611511565b905080516000141580156114e85750808060200190518101906114e69190611979565b155b156107e657604051635274afe760e01b81526001600160a01b0384166004820152602401610516565b606061151f83836000611526565b9392505050565b60608147101561154b5760405163cd78605960e01b8152306004820152602401610516565b600080856001600160a01b031684866040516115679190611c7c565b60006040518083038185875af1925050503d80600081146115a4576040519150601f19603f3d011682016040523d82523d6000602084013e6115a9565b606091505b50915091506115b98683836115c3565b9695505050505050565b6060826115d8576115d38261161f565b61151f565b81511580156115ef57506001600160a01b0384163b155b1561161857604051639996b31560e01b81526001600160a01b0385166004820152602401610516565b508061151f565b80511561162f5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b60006020828403121561165a57600080fd5b81356001600160e01b03198116811461151f57600080fd5b6001600160a01b03811681146111cc57600080fd5b60008060006060848603121561169c57600080fd5b8335925060208401356116ae81611672565b915060408401356116be81611672565b809150509250925092565b6000602082840312156116db57600080fd5b5035919050565b600080604083850312156116f557600080fd5b82359150602083013561170781611672565b809150509250929050565b80151581146111cc57600080fd5b60008060008060008060c0878903121561173957600080fd5b863561174481611672565b9550602087013561175481611672565b9450604087013561176481611672565b9350606087013561177481611672565b9250608087013561178481611712565b915060a087013561179481611712565b809150509295509295509295565b600080604083850312156117b557600080fd5b50508035926020909101359150565b6000602082840312156117d657600080fd5b813561151f81611672565b803563ffffffff811681146117f557600080fd5b919050565b60008083601f84011261180c57600080fd5b50813567ffffffffffffffff81111561182457600080fd5b60208301915083602082850101111561183c57600080fd5b9250929050565b60008060008060008060008060e0898b03121561185f57600080fd5b883561186a81611672565b9750602089013561187a81611672565b965061188860408a016117e1565b9550606089013594506080890135935060a089013567ffffffffffffffff8111156118b257600080fd5b6118be8b828c016117fa565b90945092505060c08901356118d281611712565b809150509295985092959890939650565b600080600080600080600087890360e08112156118ff57600080fd5b883561190a81611672565b975061191860208a016117e1565b96506040890135955060608901359450608089013567ffffffffffffffff81111561194257600080fd5b61194e8b828c016117fa565b9095509350506040609f198201121561196657600080fd5b5060a08801905092959891949750929550565b60006020828403121561198b57600080fd5b815161151f81611712565b6020808252600d908201526c24b73b30b634b2103a37b5b2b760991b604082015260600190565b60005b838110156119d85781810151838201526020016119c0565b50506000910152565b600081518084526119f98160208601602086016119bd565b601f01601f19169290920160200192915050565b63ffffffff81511682526020810151602083015260408101516040830152606081015160608301526000608082015160e06080850152611a5060e08501826119e1565b905060a083015184820360a0860152611a6982826119e1565b91505060c083015184820360c0860152611a8382826119e1565b95945050505050565b604081526000611a9f6040830185611a0d565b905082151560208301529392505050565b600060408284031215611ac257600080fd5b6040516040810181811067ffffffffffffffff82111715611af357634e487b7160e01b600052604160045260246000fd5b604052825181526020928301519281019290925250919050565b600060408284031215611b1f57600080fd5b61151f8383611ab0565b634e487b7160e01b600052601160045260246000fd5b808201808211156104b3576104b3611b29565b600060208284031215611b6457600080fd5b5051919050565b818103818111156104b3576104b3611b29565b608081526000611b916080830186611a0d565b8435602084810191909152909401356040830152506001600160a01b0391909116606090910152919050565b60008082840360c0811215611bd157600080fd5b6080811215611bdf57600080fd5b506040516060810167ffffffffffffffff8282108183111715611c1257634e487b7160e01b600052604160045260246000fd5b8160405285518352602086015191508082168214611c2f57600080fd5b506020820152611c428560408601611ab0565b60408201529150611c568460808501611ab0565b90509250929050565b600060208284031215611c7157600080fd5b815161151f81611672565b60008251611c8e8184602087016119bd565b919091019291505056fef414640358219ea248b4fd8e244003b9e2cdb2580bb1ba2d223eb83d8795a181a49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775a264697066735822122043fdc294859142c941ecdb41b84f0b28be1e39aa593b16f972dceabded7ba57564736f6c634300081400330000000000000000000000006f475642a6e85809b1c36fa62763669b1b48dd5b
Deployed Bytecode
0x60806040526004361061011f5760003560e01c8063a217fddf116100a0578063d78e888611610064578063d78e888614610357578063d9331a1114610392578063db63ed33146103b2578063e4860339146103d2578063f7c4e1c51461046f57600080fd5b8063a217fddf1461029b578063b353aaa7146102b0578063bd5ec228146102e8578063c264cdde14610315578063d547741f1461033757600080fd5b806336568abe116100e757806336568abe146101f9578063397d1650146102195780635fa7b5841461023957806375b238fc1461025957806391d148541461027b57600080fd5b806301ffc9a71461012457806312f5ea4014610159578063248a9ca31461017b5780632f2ff15d146101b95780632f54bfbe146101d9575b600080fd5b34801561013057600080fd5b5061014461013f366004611648565b610482565b60405190151581526020015b60405180910390f35b34801561016557600080fd5b50610179610174366004611687565b6104b9565b005b34801561018757600080fd5b506101ab6101963660046116c9565b60009081526020819052604090206001015490565b604051908152602001610150565b3480156101c557600080fd5b506101796101d43660046116e2565b6105e4565b3480156101e557600080fd5b506101796101f4366004611720565b610609565b34801561020557600080fd5b506101796102143660046116e2565b6107b3565b34801561022557600080fd5b506101796102343660046117a2565b6107eb565b34801561024557600080fd5b506101796102543660046117c4565b610816565b34801561026557600080fd5b506101ab600080516020611cb983398151915281565b34801561028757600080fd5b506101446102963660046116e2565b6108d5565b3480156102a757600080fd5b506101ab600081565b3480156102bc57600080fd5b506001546102d0906001600160a01b031681565b6040516001600160a01b039091168152602001610150565b3480156102f457600080fd5b506101ab6103033660046116c9565b60036020526000908152604090205481565b34801561032157600080fd5b506101ab600080516020611c9983398151915281565b34801561034357600080fd5b506101796103523660046116e2565b6108fe565b34801561036357600080fd5b50610377610372366004611843565b610923565b60408051938452602084019290925290820152606001610150565b34801561039e57600080fd5b506101796103ad3660046117c4565b610aa9565b3480156103be57600080fd5b506101796103cd366004611720565b610ae4565b3480156103de57600080fd5b506104346103ed3660046117c4565b60026020819052600091825260409091208054600182015491909201546001600160a01b03928316929182169181169060ff600160a01b8204811691600160a81b90041685565b604080516001600160a01b0396871681529486166020860152929094169183019190915215156060820152901515608082015260a001610150565b61017961047d3660046118e3565b610caf565b60006001600160e01b03198216637965db0b60e01b14806104b357506301ffc9a760e01b6001600160e01b03198316145b92915050565b600080516020611cb98339815191526104d1816111c2565b6001600160a01b03831661051f5760405162461bcd60e51b815260206004820152601060248201526f24b73b30b634b2103932b1b2b4bb32b960811b60448201526064015b60405180910390fd5b6001600160a01b038216610569576040516001600160a01b0384169085156108fc029086906000818181858888f19350505050158015610563573d6000803e3d6000fd5b506105de565b60405163a9059cbb60e01b81526001600160a01b0384811660048301526024820186905283169063a9059cbb906044016020604051808303816000875af11580156105b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105dc9190611979565b505b50505050565b6000828152602081905260409020600101546105ff816111c2565b6105de83836111cf565b600080516020611c99833981519152610621816111c2565b6001600160a01b03878116600090815260026020526040902054166106585760405162461bcd60e51b815260040161051690611996565b6001600160a01b03871661067e5760405162461bcd60e51b815260040161051690611996565b6001600160a01b0386166106c65760405162461bcd60e51b815260206004820152600f60248201526e24b73b30b634b21036b12a37b5b2b760891b6044820152606401610516565b6001600160a01b03841661070e5760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206761746577617960881b6044820152606401610516565b6001600160a01b03878116600081815260026020819052604080832080546001600160a01b03199081168d88161782556001820180549091168c88161790559182018054958a166001600160a81b031990961695909517600160a01b891515021760ff60a81b1916600160a81b881515021790945592517fdb00412b5cc49a018511a90735ebd1abebb4f1671247e36843479a0f44d98f9f9190a25050505050505050565b6001600160a01b03811633146107dc5760405163334bd91960e11b815260040160405180910390fd5b6107e68282611261565b505050565b600080516020611cb9833981519152610803816111c2565b5060009182526003602052604090912055565b600080516020611c9983398151915261082e816111c2565b6001600160a01b03828116600090815260026020526040902054166108655760405162461bcd60e51b815260040161051690611996565b6001600160a01b038216600081815260026020819052604080832080546001600160a01b03199081168255600182018054909116905590910180546001600160b01b0319169055517f6fd87c50b8d2e76abbba39c6904ad99ea6fa9e04daf208dd6c8dd73a923505b79190a25050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b600082815260208190526040902060010154610919816111c2565b6105de8383611261565b6001600160a01b03888116600090815260026020526040812054909182918291166109605760405162461bcd60e51b815260040161051690611996565b6001600160a01b03808c16600090815260026020908152604080832054815160e08101835263ffffffff8f1681528f8616818501528083018e9052606081018d90528251601f8c018590048502810185019093528a8352941693916080830191908b908b9081908401838280828437600092018290525093855250506040805160208181018352848252808601919091528151908101825283815293810193909352509051633b6f743b60e01b8152919250906001600160a01b03841690633b6f743b90610a349085908b90600401611a8c565b6040805180830381865afa158015610a50573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a749190611b0d565b805160209182015163ffffffff9e909e1660009081526003909252604090912054909f9c9e509c505050505050505050505050565b600080516020611cb9833981519152610ac1816111c2565b50600180546001600160a01b0319166001600160a01b0392909216919091179055565b600080516020611c99833981519152610afc816111c2565b6001600160a01b038716610b225760405162461bcd60e51b815260040161051690611996565b6001600160a01b038616610b6a5760405162461bcd60e51b815260206004820152600f60248201526e24b73b30b634b21036b12a37b5b2b760891b6044820152606401610516565b6001600160a01b038416610bb25760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206761746577617960881b6044820152606401610516565b6001600160a01b038781166000908152600260205260409020541615610c0a5760405162461bcd60e51b815260206004820152600d60248201526c105b1c9958591e481859191959609a1b6044820152606401610516565b6001600160a01b03878116600081815260026020819052604080832080546001600160a01b03199081168d88161782556001820180549091168c88161790559182018054958a166001600160a81b031990961695909517600160a01b891515021760ff60a81b1916600160a81b881515021790945592517f3fcb42e4358c0e97a82af0a70098f8422ce84c605d3c38dc8ca8c6bf5d08566c9190a25050505050505050565b6001600160a01b0387811660009081526002602052604090205416610ce65760405162461bcd60e51b815260040161051690611996565b63ffffffff8616600090815260036020526040902054610d07908235611b3f565b3414610d485760405162461bcd60e51b815260206004820152601060248201526f496e73756666696369656e742066656560801b6044820152606401610516565b6001600160a01b038781166000908152600260208190526040909120805491015489929190911690600160a01b900460ff1680610da957506001600160a01b03891660009081526002602081905260409091200154600160a81b900460ff16155b15610f59576001600160a01b038981166000908152600260205260408082206001015490516370a0823160e01b8152908316600482015290918416906370a0823190602401602060405180830381865afa158015610e0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e2f9190611b52565b6001600160a01b03808c16600090815260026020526040902060010154919250610e6091858216913391168b6112cc565b6001600160a01b038a81166000908152600260205260408082206001015490516370a0823160e01b8152908316600482015290918391908616906370a0823190602401602060405180830381865afa158015610ec0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ee49190611b52565b610eee9190611b6b565b9050808914610f525760405162461bcd60e51b815260206004820152602a60248201527f526563656976656420616d6f756e7420646f6573206e6f74206d617463682073604482015269195b9d08185b5bdd5b9d60b21b6064820152608401610516565b5050610fba565b60405163079cc67960e41b8152336004820152602481018890526001600160a01b038316906379cc679090604401600060405180830381600087803b158015610fa157600080fd5b505af1158015610fb5573d6000803e3d6000fd5b505050505b602083013515610fd157610fd18360200135611326565b6040516340c10f1960e01b8152306004820152602481018890526001600160a01b038216906340c10f1990604401600060405180830381600087803b15801561101957600080fd5b505af115801561102d573d6000803e3d6000fd5b5050505060006040518060e001604052808a63ffffffff168152602001336001600160a01b031660001b815260200189815260200188815260200187878080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201829052509385525050604080516020818101835284825280860191909152815180820183528481529482019490945263ffffffff8e16835260039093525020549091506001600160a01b0383169063c7c7f5b3906110f49034611b6b565b8387336040518563ffffffff1660e01b815260040161111593929190611b7e565b60c06040518083038185885af1158015611133573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906111589190611bbd565b505063ffffffff89166000818152600360209081526040918290205482518c8152918201523392916001600160a01b038e16917f05080ff8577e1d84942cb572049863a4d1377b355fd6a0e989022bd51db4590c910160405180910390a450505050505050505050565b6111cc8133611471565b50565b60006111db83836108d5565b611259576000838152602081815260408083206001600160a01b03861684529091529020805460ff191660011790556112113390565b6001600160a01b0316826001600160a01b0316847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45060016104b3565b5060006104b3565b600061126d83836108d5565b15611259576000838152602081815260408083206001600160a01b0386168085529252808320805460ff1916905551339286917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45060016104b3565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b1790526105de9085906114ae565b6001546040805163393f876560e21b815290516000926001600160a01b03169163e4fe1d949160048083019260209291908290030181865afa158015611370573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113949190611c5f565b90506001600160a01b0381166113e55760405162461bcd60e51b81526020600482015260166024820152756c7a546f6b656e20697320756e617661696c61626c6560501b6044820152606401610516565b6113fa6001600160a01b0382163330856112cc565b60015460405163095ea7b360e01b81526001600160a01b039182166004820152602481018490529082169063095ea7b3906044016020604051808303816000875af115801561144d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107e69190611979565b61147b82826108d5565b6114aa5760405163e2517d3f60e01b81526001600160a01b038216600482015260248101839052604401610516565b5050565b60006114c36001600160a01b03841683611511565b905080516000141580156114e85750808060200190518101906114e69190611979565b155b156107e657604051635274afe760e01b81526001600160a01b0384166004820152602401610516565b606061151f83836000611526565b9392505050565b60608147101561154b5760405163cd78605960e01b8152306004820152602401610516565b600080856001600160a01b031684866040516115679190611c7c565b60006040518083038185875af1925050503d80600081146115a4576040519150601f19603f3d011682016040523d82523d6000602084013e6115a9565b606091505b50915091506115b98683836115c3565b9695505050505050565b6060826115d8576115d38261161f565b61151f565b81511580156115ef57506001600160a01b0384163b155b1561161857604051639996b31560e01b81526001600160a01b0385166004820152602401610516565b508061151f565b80511561162f5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b60006020828403121561165a57600080fd5b81356001600160e01b03198116811461151f57600080fd5b6001600160a01b03811681146111cc57600080fd5b60008060006060848603121561169c57600080fd5b8335925060208401356116ae81611672565b915060408401356116be81611672565b809150509250925092565b6000602082840312156116db57600080fd5b5035919050565b600080604083850312156116f557600080fd5b82359150602083013561170781611672565b809150509250929050565b80151581146111cc57600080fd5b60008060008060008060c0878903121561173957600080fd5b863561174481611672565b9550602087013561175481611672565b9450604087013561176481611672565b9350606087013561177481611672565b9250608087013561178481611712565b915060a087013561179481611712565b809150509295509295509295565b600080604083850312156117b557600080fd5b50508035926020909101359150565b6000602082840312156117d657600080fd5b813561151f81611672565b803563ffffffff811681146117f557600080fd5b919050565b60008083601f84011261180c57600080fd5b50813567ffffffffffffffff81111561182457600080fd5b60208301915083602082850101111561183c57600080fd5b9250929050565b60008060008060008060008060e0898b03121561185f57600080fd5b883561186a81611672565b9750602089013561187a81611672565b965061188860408a016117e1565b9550606089013594506080890135935060a089013567ffffffffffffffff8111156118b257600080fd5b6118be8b828c016117fa565b90945092505060c08901356118d281611712565b809150509295985092959890939650565b600080600080600080600087890360e08112156118ff57600080fd5b883561190a81611672565b975061191860208a016117e1565b96506040890135955060608901359450608089013567ffffffffffffffff81111561194257600080fd5b61194e8b828c016117fa565b9095509350506040609f198201121561196657600080fd5b5060a08801905092959891949750929550565b60006020828403121561198b57600080fd5b815161151f81611712565b6020808252600d908201526c24b73b30b634b2103a37b5b2b760991b604082015260600190565b60005b838110156119d85781810151838201526020016119c0565b50506000910152565b600081518084526119f98160208601602086016119bd565b601f01601f19169290920160200192915050565b63ffffffff81511682526020810151602083015260408101516040830152606081015160608301526000608082015160e06080850152611a5060e08501826119e1565b905060a083015184820360a0860152611a6982826119e1565b91505060c083015184820360c0860152611a8382826119e1565b95945050505050565b604081526000611a9f6040830185611a0d565b905082151560208301529392505050565b600060408284031215611ac257600080fd5b6040516040810181811067ffffffffffffffff82111715611af357634e487b7160e01b600052604160045260246000fd5b604052825181526020928301519281019290925250919050565b600060408284031215611b1f57600080fd5b61151f8383611ab0565b634e487b7160e01b600052601160045260246000fd5b808201808211156104b3576104b3611b29565b600060208284031215611b6457600080fd5b5051919050565b818103818111156104b3576104b3611b29565b608081526000611b916080830186611a0d565b8435602084810191909152909401356040830152506001600160a01b0391909116606090910152919050565b60008082840360c0811215611bd157600080fd5b6080811215611bdf57600080fd5b506040516060810167ffffffffffffffff8282108183111715611c1257634e487b7160e01b600052604160045260246000fd5b8160405285518352602086015191508082168214611c2f57600080fd5b506020820152611c428560408601611ab0565b60408201529150611c568460808501611ab0565b90509250929050565b600060208284031215611c7157600080fd5b815161151f81611672565b60008251611c8e8184602087016119bd565b919091019291505056fef414640358219ea248b4fd8e244003b9e2cdb2580bb1ba2d223eb83d8795a181a49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775a264697066735822122043fdc294859142c941ecdb41b84f0b28be1e39aa593b16f972dceabded7ba57564736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000006f475642a6e85809b1c36fa62763669b1b48dd5b
-----Decoded View---------------
Arg [0] : _lzEndpoint (address): 0x6F475642a6e85809B1c36Fa62763669b1b48DD5B
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000006f475642a6e85809b1c36fa62763669b1b48dd5b
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.