Overview
POL Balance
0 POL
POL Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Initialize | 29100388 | 924 days ago | IN | 0 POL | 0.00206016 |
Loading...
Loading
Contract Name:
CallProxy
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.8.7; import "@openzeppelin/contracts-upgradeable/access/AccessControlUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC20/utils/SafeERC20Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol"; import "../interfaces/ICallProxy.sol"; import "../libraries/Flags.sol"; import "../libraries/BytesLib.sol"; import "../libraries/MultiSendCallOnly.sol"; /// @dev Proxy to execute the other contract calls. /// This contract is used when a user requests transfer with specific call of other contract. contract CallProxy is Initializable, AccessControlUpgradeable, MultiSendCallOnly, ICallProxy { using SafeERC20Upgradeable for IERC20Upgradeable; using Flags for uint256; using AddressUpgradeable for address; /* ========== STATE VARIABLES ========== */ /// @dev Role allowed to withdraw fee bytes32 public constant DEBRIDGE_GATE_ROLE = keccak256("DEBRIDGE_GATE_ROLE"); /// @dev Value for lock variable when function is not entered uint256 private constant _NOT_LOCKED = 1; /// @dev Value for lock variable when function is entered uint256 private constant _LOCKED = 2; /// @dev Chain from which the current submission is received uint256 public override submissionChainIdFrom; /// @dev Native sender of the current submission bytes public override submissionNativeSender; uint256 private _lock; /* ========== ERRORS ========== */ error DeBridgeGateBadRole(); error CallProxyBadRole(); error ExternalCallFailed(); error NotEnoughSafeTxGas(); error CallFailed(); error Locked(); /* ========== MODIFIERS ========== */ modifier onlyGateRole() { if (!hasRole(DEBRIDGE_GATE_ROLE, msg.sender)) revert DeBridgeGateBadRole(); _; } /// @dev lock modifier lock() { if (_lock == _LOCKED) revert Locked(); _lock = _LOCKED; _; _lock = _NOT_LOCKED; } /* ========== CONSTRUCTOR ========== */ function initialize() public initializer { _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); } /* ========== PUBLIC METHODS ========== */ /// @inheritdoc ICallProxy function call( address _reserveAddress, address _receiver, bytes memory _data, uint256 _flags, bytes memory _nativeSender, uint256 _chainIdFrom ) external payable override onlyGateRole lock returns (bool _result) { uint256 amount = address(this).balance; _result = _externalCall( _receiver, amount, _data, _nativeSender, _chainIdFrom, _flags ); if (!_result && _flags.getFlag(Flags.REVERT_IF_EXTERNAL_FAIL)) { revert ExternalCallFailed(); } amount = address(this).balance; if (amount > 0) { (bool success, ) = _reserveAddress.call{value: amount}(new bytes(0)); if (!success) revert CallFailed(); } } /// @inheritdoc ICallProxy function callERC20( address _token, address _reserveAddress, address _receiver, bytes memory _data, uint256 _flags, bytes memory _nativeSender, uint256 _chainIdFrom ) external override onlyGateRole lock returns (bool _result) { uint256 amount = IERC20Upgradeable(_token).balanceOf(address(this)); if (_receiver != address(0)) { _customApprove(IERC20Upgradeable(_token), _receiver, amount); } _result = _externalCall( _receiver, 0, _data, _nativeSender, _chainIdFrom, _flags ); amount = IERC20Upgradeable(_token).balanceOf(address(this)); if (!_result &&_flags.getFlag(Flags.REVERT_IF_EXTERNAL_FAIL)) { revert ExternalCallFailed(); } if (amount > 0) { IERC20Upgradeable(_token).safeTransfer(_reserveAddress, amount); } if (_receiver != address(0)) { _customApprove(IERC20Upgradeable(_token), _receiver, 0); } } /// @dev Sends multiple transactions and reverts all if one fails. /// @param transactions Encoded transactions. Each transaction is encoded as a packed bytes of /// operation has to be uint8(0) in this version (=> 1 byte), /// to as a address (=> 20 bytes), /// value as a uint256 (=> 32 bytes), /// data length as a uint256 (=> 32 bytes), /// data as bytes. /// see abi.encodePacked for more information on packed encoding /// @notice The code is for most part the same as the normal MultiSend (to keep compatibility), /// but reverts if a transaction tries to use a delegatecall. /// @notice This method is payable as delegatecalls keep the msg.value from the previous call /// If the calling method (e.g. execTransaction) received ETH this would revert otherwise function multiSend(bytes memory transactions) external payable { if (address(this) != msg.sender) revert CallProxyBadRole(); _multiSend(transactions); } // we need to accept ETH from deBridgeGate receive() external payable { } /* ========== INTERNAL METHODS ========== */ function _externalCall( address _destination, uint256 _value, bytes memory _data, bytes memory _nativeSender, uint256 _chainIdFrom, uint256 _flags ) internal returns (bool result) { bool storeSender = _flags.getFlag(Flags.PROXY_WITH_SENDER); bool checkGasLimit = _flags.getFlag(Flags.SEND_EXTERNAL_CALL_GAS_LIMIT); bool multisendFlag = _flags.getFlag(Flags.MULTI_SEND); // Temporary write to a storage nativeSender and chainIdFrom variables. // External contract can read them during a call if needed if (storeSender) { submissionChainIdFrom = _chainIdFrom; submissionNativeSender = _nativeSender; } uint256 safeTxGas; if (checkGasLimit && _data.length > 4) { safeTxGas = BytesLib.toUint32(_data, 0); // Remove first 4 bytes from data _data = BytesLib.slice(_data, 4, _data.length - 4); } // We require some gas to finish transaction emit the events, approve(0) etc (at least 15000) after the execution and some to perform code until the execution (500) // We also include the 1/64 in the check that is not send along with a call to counteract potential shortings because of EIP-150 if (gasleft() < safeTxGas * 64 / 63 + 15500) revert NotEnoughSafeTxGas(); // if safeTxGas is zero set gasleft safeTxGas = safeTxGas == 0 ? gasleft() : uint256(safeTxGas); if (multisendFlag) { _destination = address(this); assembly { result := call(safeTxGas, _destination, _value, add(_data, 0x20), mload(_data), 0, 0) } } else { assembly { result := call(safeTxGas, _destination, _value, add(_data, 0x20), mload(_data), 0, 0) } } // clear storage variables to get gas refund if (storeSender) { submissionChainIdFrom = 0; submissionNativeSender = ""; } } function _customApprove(IERC20Upgradeable token, address spender, uint value) internal { bytes memory returndata = address(token).functionCall( abi.encodeWithSelector(token.approve.selector, spender, value), "ERC20 approve failed" ); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "ERC20 operation did not succeed"); } } // ============ Version Control ============ /// @dev Get this contract's version function version() external pure returns (uint256) { return 423; // 4.2.3 } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (access/AccessControl.sol) pragma solidity ^0.8.0; import "./IAccessControlUpgradeable.sol"; import "../utils/ContextUpgradeable.sol"; import "../utils/StringsUpgradeable.sol"; import "../utils/introspection/ERC165Upgradeable.sol"; import "../proxy/utils/Initializable.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: * * ``` * 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}: * * ``` * 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. */ abstract contract AccessControlUpgradeable is Initializable, ContextUpgradeable, IAccessControlUpgradeable, ERC165Upgradeable { function __AccessControl_init() internal initializer { __Context_init_unchained(); __ERC165_init_unchained(); __AccessControl_init_unchained(); } function __AccessControl_init_unchained() internal initializer { } struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControlUpgradeable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", StringsUpgradeable.toHexString(uint160(account), 20), " is missing role ", StringsUpgradeable.toHexString(uint256(role), 32) ) ) ); } } /** * @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 override 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. */ function grantRole(bytes32 role, address account) public virtual override 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. */ function revokeRole(bytes32 role, address account) public virtual override 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 `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @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 Grants `role` to `account`. * * Internal function without access restriction. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } uint256[49] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (proxy/utils/Initializable.sol) pragma solidity ^0.8.0; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. * * [CAUTION] * ==== * Avoid leaving a contract uninitialized. * * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation * contract, which may impact the proxy. To initialize the implementation contract, you can either invoke the * initializer manually, or you can include a constructor to automatically mark it as initialized when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() initializer {} * ``` * ==== */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Modifier to protect an initializer function from being invoked twice. */ modifier initializer() { require(_initializing || !_initialized, "Initializable: contract is already initialized"); bool isTopLevelCall = !_initializing; if (isTopLevelCall) { _initializing = true; _initialized = true; } _; if (isTopLevelCall) { _initializing = false; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20Upgradeable { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) 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 `amount` 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 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20Upgradeable.sol"; import "../../../utils/AddressUpgradeable.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 SafeERC20Upgradeable { using AddressUpgradeable for address; function safeTransfer( IERC20Upgradeable token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20Upgradeable token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20Upgradeable token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20Upgradeable token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20Upgradeable token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @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(IERC20Upgradeable 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, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library AddressUpgradeable { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @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://diligence.consensys.net/posts/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.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @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, it is bubbled up by this * function (like regular Solidity function calls). * * 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. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @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`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // 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 assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.7; interface ICallProxy { /// @dev Chain from which the current submission is received function submissionChainIdFrom() external returns (uint256); /// @dev Native sender of the current submission function submissionNativeSender() external returns (bytes memory); /// @dev Used for calls where native asset transfer is involved. /// @param _reserveAddress Receiver of the tokens if the call to _receiver fails /// @param _receiver Contract to be called /// @param _data Call data /// @param _flags Flags to change certain behavior of this function, see Flags library for more details /// @param _nativeSender Native sender /// @param _chainIdFrom Id of a chain that originated the request function call( address _reserveAddress, address _receiver, bytes memory _data, uint256 _flags, bytes memory _nativeSender, uint256 _chainIdFrom ) external payable returns (bool); /// @dev Used for calls where ERC20 transfer is involved. /// @param _token Asset address /// @param _reserveAddress Receiver of the tokens if the call to _receiver fails /// @param _receiver Contract to be called /// @param _data Call data /// @param _flags Flags to change certain behavior of this function, see Flags library for more details /// @param _nativeSender Native sender /// @param _chainIdFrom Id of a chain that originated the request function callERC20( address _token, address _reserveAddress, address _receiver, bytes memory _data, uint256 _flags, bytes memory _nativeSender, uint256 _chainIdFrom ) external returns (bool); }
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.8.7; library Flags { /* ========== FLAGS ========== */ /// @dev Flag to unwrap ETH uint256 public constant UNWRAP_ETH = 0; /// @dev Flag to revert if external call fails uint256 public constant REVERT_IF_EXTERNAL_FAIL = 1; /// @dev Flag to call proxy with a sender contract uint256 public constant PROXY_WITH_SENDER = 2; /// @dev Data is hash in DeBridgeGate send method uint256 public constant SEND_HASHED_DATA = 3; /// @dev First 24 bytes from data is gas limit for external call uint256 public constant SEND_EXTERNAL_CALL_GAS_LIMIT = 4; /// @dev Support multi send for externall call uint256 public constant MULTI_SEND = 5; /// @dev Get flag /// @param _packedFlags Flags packed to uint256 /// @param _flag Flag to check function getFlag( uint256 _packedFlags, uint256 _flag ) internal pure returns (bool) { uint256 flag = (_packedFlags >> _flag) & uint256(1); return flag == 1; } /// @dev Set flag /// @param _packedFlags Flags packed to uint256 /// @param _flag Flag to set /// @param _value Is set or not set function setFlag( uint256 _packedFlags, uint256 _flag, bool _value ) internal pure returns (uint256) { if (_value) return _packedFlags | uint256(1) << _flag; else return _packedFlags & ~(uint256(1) << _flag); } }
// SPDX-License-Identifier: Unlicense /* * @title Solidity Bytes Arrays Utils * @author Gonçalo Sá <[email protected]> * * @dev Bytes tightly packed arrays utility library for ethereum contracts written in Solidity. * The library lets you concatenate, slice and type cast bytes arrays both in memory and storage. */ pragma solidity >=0.8.0 <0.9.0; library BytesLib { function concat( bytes memory _preBytes, bytes memory _postBytes ) internal pure returns (bytes memory) { bytes memory tempBytes; assembly { // Get a location of some free memory and store it in tempBytes as // Solidity does for memory variables. tempBytes := mload(0x40) // Store the length of the first bytes array at the beginning of // the memory for tempBytes. let length := mload(_preBytes) mstore(tempBytes, length) // Maintain a memory counter for the current write location in the // temp bytes array by adding the 32 bytes for the array length to // the starting location. let mc := add(tempBytes, 0x20) // Stop copying when the memory counter reaches the length of the // first bytes array. let end := add(mc, length) for { // Initialize a copy counter to the start of the _preBytes data, // 32 bytes into its memory. let cc := add(_preBytes, 0x20) } lt(mc, end) { // Increase both counters by 32 bytes each iteration. mc := add(mc, 0x20) cc := add(cc, 0x20) } { // Write the _preBytes data into the tempBytes memory 32 bytes // at a time. mstore(mc, mload(cc)) } // Add the length of _postBytes to the current length of tempBytes // and store it as the new length in the first 32 bytes of the // tempBytes memory. length := mload(_postBytes) mstore(tempBytes, add(length, mload(tempBytes))) // Move the memory counter back from a multiple of 0x20 to the // actual end of the _preBytes data. mc := end // Stop copying when the memory counter reaches the new combined // length of the arrays. end := add(mc, length) for { let cc := add(_postBytes, 0x20) } lt(mc, end) { mc := add(mc, 0x20) cc := add(cc, 0x20) } { mstore(mc, mload(cc)) } // Update the free-memory pointer by padding our last write location // to 32 bytes: add 31 bytes to the end of tempBytes to move to the // next 32 byte block, then round down to the nearest multiple of // 32. If the sum of the length of the two arrays is zero then add // one before rounding down to leave a blank 32 bytes (the length block with 0). mstore(0x40, and( add(add(end, iszero(add(length, mload(_preBytes)))), 31), not(31) // Round down to the nearest 32 bytes. )) } return tempBytes; } function concatStorage(bytes storage _preBytes, bytes memory _postBytes) internal { assembly { // Read the first 32 bytes of _preBytes storage, which is the length // of the array. (We don't need to use the offset into the slot // because arrays use the entire slot.) let fslot := sload(_preBytes.slot) // Arrays of 31 bytes or less have an even value in their slot, // while longer arrays have an odd value. The actual length is // the slot divided by two for odd values, and the lowest order // byte divided by two for even values. // If the slot is even, bitwise and the slot with 255 and divide by // two to get the length. If the slot is odd, bitwise and the slot // with -1 and divide by two. let slength := div(and(fslot, sub(mul(0x100, iszero(and(fslot, 1))), 1)), 2) let mlength := mload(_postBytes) let newlength := add(slength, mlength) // slength can contain both the length and contents of the array // if length < 32 bytes so let's prepare for that // v. http://solidity.readthedocs.io/en/latest/miscellaneous.html#layout-of-state-variables-in-storage switch add(lt(slength, 32), lt(newlength, 32)) case 2 { // Since the new array still fits in the slot, we just need to // update the contents of the slot. // uint256(bytes_storage) = uint256(bytes_storage) + uint256(bytes_memory) + new_length sstore( _preBytes.slot, // all the modifications to the slot are inside this // next block add( // we can just add to the slot contents because the // bytes we want to change are the LSBs fslot, add( mul( div( // load the bytes from memory mload(add(_postBytes, 0x20)), // zero all bytes to the right exp(0x100, sub(32, mlength)) ), // and now shift left the number of bytes to // leave space for the length in the slot exp(0x100, sub(32, newlength)) ), // increase length by the double of the memory // bytes length mul(mlength, 2) ) ) ) } case 1 { // The stored value fits in the slot, but the combined value // will exceed it. // get the keccak hash to get the contents of the array mstore(0x0, _preBytes.slot) let sc := add(keccak256(0x0, 0x20), div(slength, 32)) // save new length sstore(_preBytes.slot, add(mul(newlength, 2), 1)) // The contents of the _postBytes array start 32 bytes into // the structure. Our first read should obtain the `submod` // bytes that can fit into the unused space in the last word // of the stored array. To get this, we read 32 bytes starting // from `submod`, so the data we read overlaps with the array // contents by `submod` bytes. Masking the lowest-order // `submod` bytes allows us to add that value directly to the // stored value. let submod := sub(32, slength) let mc := add(_postBytes, submod) let end := add(_postBytes, mlength) let mask := sub(exp(0x100, submod), 1) sstore( sc, add( and( fslot, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00 ), and(mload(mc), mask) ) ) for { mc := add(mc, 0x20) sc := add(sc, 1) } lt(mc, end) { sc := add(sc, 1) mc := add(mc, 0x20) } { sstore(sc, mload(mc)) } mask := exp(0x100, sub(mc, end)) sstore(sc, mul(div(mload(mc), mask), mask)) } default { // get the keccak hash to get the contents of the array mstore(0x0, _preBytes.slot) // Start copying to the last used word of the stored array. let sc := add(keccak256(0x0, 0x20), div(slength, 32)) // save new length sstore(_preBytes.slot, add(mul(newlength, 2), 1)) // Copy over the first `submod` bytes of the new data as in // case 1 above. let slengthmod := mod(slength, 32) let mlengthmod := mod(mlength, 32) let submod := sub(32, slengthmod) let mc := add(_postBytes, submod) let end := add(_postBytes, mlength) let mask := sub(exp(0x100, submod), 1) sstore(sc, add(sload(sc), and(mload(mc), mask))) for { sc := add(sc, 1) mc := add(mc, 0x20) } lt(mc, end) { sc := add(sc, 1) mc := add(mc, 0x20) } { sstore(sc, mload(mc)) } mask := exp(0x100, sub(mc, end)) sstore(sc, mul(div(mload(mc), mask), mask)) } } } function slice( bytes memory _bytes, uint256 _start, uint256 _length ) internal pure returns (bytes memory) { require(_length + 31 >= _length, "slice_overflow"); require(_bytes.length >= _start + _length, "slice_outOfBounds"); bytes memory tempBytes; assembly { switch iszero(_length) case 0 { // Get a location of some free memory and store it in tempBytes as // Solidity does for memory variables. tempBytes := mload(0x40) // The first word of the slice result is potentially a partial // word read from the original array. To read it, we calculate // the length of that partial word and start copying that many // bytes into the array. The first word we copy will start with // data we don't care about, but the last `lengthmod` bytes will // land at the beginning of the contents of the new array. When // we're done copying, we overwrite the full first word with // the actual length of the slice. let lengthmod := and(_length, 31) // The multiplication in the next line is necessary // because when slicing multiples of 32 bytes (lengthmod == 0) // the following copy loop was copying the origin's length // and then ending prematurely not copying everything it should. let mc := add(add(tempBytes, lengthmod), mul(0x20, iszero(lengthmod))) let end := add(mc, _length) for { // The multiplication in the next line has the same exact purpose // as the one above. let cc := add(add(add(_bytes, lengthmod), mul(0x20, iszero(lengthmod))), _start) } lt(mc, end) { mc := add(mc, 0x20) cc := add(cc, 0x20) } { mstore(mc, mload(cc)) } mstore(tempBytes, _length) //update free-memory pointer //allocating the array padded to 32 bytes like the compiler does now mstore(0x40, and(add(mc, 31), not(31))) } //if we want a zero-length slice let's just return a zero-length array default { tempBytes := mload(0x40) //zero out the 32 bytes slice we are about to return //we need to do it because Solidity does not garbage collect mstore(tempBytes, 0) mstore(0x40, add(tempBytes, 0x20)) } } return tempBytes; } function toAddress(bytes memory _bytes, uint256 _start) internal pure returns (address) { require(_bytes.length >= _start + 20, "toAddress_outOfBounds"); address tempAddress; assembly { tempAddress := div(mload(add(add(_bytes, 0x20), _start)), 0x1000000000000000000000000) } return tempAddress; } function toUint8(bytes memory _bytes, uint256 _start) internal pure returns (uint8) { require(_bytes.length >= _start + 1 , "toUint8_outOfBounds"); uint8 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x1), _start)) } return tempUint; } function toUint16(bytes memory _bytes, uint256 _start) internal pure returns (uint16) { require(_bytes.length >= _start + 2, "toUint16_outOfBounds"); uint16 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x2), _start)) } return tempUint; } function toUint32(bytes memory _bytes, uint256 _start) internal pure returns (uint32) { require(_bytes.length >= _start + 4, "toUint32_outOfBounds"); uint32 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x4), _start)) } return tempUint; } function toUint64(bytes memory _bytes, uint256 _start) internal pure returns (uint64) { require(_bytes.length >= _start + 8, "toUint64_outOfBounds"); uint64 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x8), _start)) } return tempUint; } function toUint96(bytes memory _bytes, uint256 _start) internal pure returns (uint96) { require(_bytes.length >= _start + 12, "toUint96_outOfBounds"); uint96 tempUint; assembly { tempUint := mload(add(add(_bytes, 0xc), _start)) } return tempUint; } function toUint128(bytes memory _bytes, uint256 _start) internal pure returns (uint128) { require(_bytes.length >= _start + 16, "toUint128_outOfBounds"); uint128 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x10), _start)) } return tempUint; } function toUint256(bytes memory _bytes, uint256 _start) internal pure returns (uint256) { require(_bytes.length >= _start + 32, "toUint256_outOfBounds"); uint256 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x20), _start)) } return tempUint; } function toBytes32(bytes memory _bytes, uint256 _start) internal pure returns (bytes32) { require(_bytes.length >= _start + 32, "toBytes32_outOfBounds"); bytes32 tempBytes32; assembly { tempBytes32 := mload(add(add(_bytes, 0x20), _start)) } return tempBytes32; } function equal(bytes memory _preBytes, bytes memory _postBytes) internal pure returns (bool) { bool success = true; assembly { let length := mload(_preBytes) // if lengths don't match the arrays are not equal switch eq(length, mload(_postBytes)) case 1 { // cb is a circuit breaker in the for loop since there's // no said feature for inline assembly loops // cb = 1 - don't breaker // cb = 0 - break let cb := 1 let mc := add(_preBytes, 0x20) let end := add(mc, length) for { let cc := add(_postBytes, 0x20) // the next line is the loop condition: // while(uint256(mc < end) + cb == 2) } eq(add(lt(mc, end), cb), 2) { mc := add(mc, 0x20) cc := add(cc, 0x20) } { // if any of these checks fails then arrays are not equal if iszero(eq(mload(mc), mload(cc))) { // unsuccess: success := 0 cb := 0 } } } default { // unsuccess: success := 0 } } return success; } function equalStorage( bytes storage _preBytes, bytes memory _postBytes ) internal view returns (bool) { bool success = true; assembly { // we know _preBytes_offset is 0 let fslot := sload(_preBytes.slot) // Decode the length of the stored array like in concatStorage(). let slength := div(and(fslot, sub(mul(0x100, iszero(and(fslot, 1))), 1)), 2) let mlength := mload(_postBytes) // if lengths don't match the arrays are not equal switch eq(slength, mlength) case 1 { // slength can contain both the length and contents of the array // if length < 32 bytes so let's prepare for that // v. http://solidity.readthedocs.io/en/latest/miscellaneous.html#layout-of-state-variables-in-storage if iszero(iszero(slength)) { switch lt(slength, 32) case 1 { // blank the last byte which is the length fslot := mul(div(fslot, 0x100), 0x100) if iszero(eq(fslot, mload(add(_postBytes, 0x20)))) { // unsuccess: success := 0 } } default { // cb is a circuit breaker in the for loop since there's // no said feature for inline assembly loops // cb = 1 - don't breaker // cb = 0 - break let cb := 1 // get the keccak hash to get the contents of the array mstore(0x0, _preBytes.slot) let sc := keccak256(0x0, 0x20) let mc := add(_postBytes, 0x20) let end := add(mc, mlength) // the next line is the loop condition: // while(uint256(mc < end) + cb == 2) for {} eq(add(lt(mc, end), cb), 2) { sc := add(sc, 1) mc := add(mc, 0x20) } { if iszero(eq(sload(sc), mload(mc))) { // unsuccess: success := 0 cb := 0 } } } } } default { // unsuccess: success := 0 } } return success; } }
// SPDX-License-Identifier: LGPL-3.0-only pragma solidity >=0.7.0 <0.9.0; /// @title Multi Send Call Only - Allows to batch multiple transactions into one, but only calls /// @author Stefan George - <[email protected]> /// @author Richard Meissner - <[email protected]> /// @notice The guard logic is not required here as this contract doesn't support nested delegate calls contract MultiSendCallOnly { /// @dev Sends multiple transactions and reverts all if one fails. /// @param transactions Encoded transactions. Each transaction is encoded as a packed bytes of /// operation has to be uint8(0) in this version (=> 1 byte), /// to as a address (=> 20 bytes), /// value as a uint256 (=> 32 bytes), /// data length as a uint256 (=> 32 bytes), /// data as bytes. /// see abi.encodePacked for more information on packed encoding /// @notice The code is for most part the same as the normal MultiSend (to keep compatibility), /// but reverts if a transaction tries to use a delegatecall. /// @notice This method is payable as delegatecalls keep the msg.value from the previous call /// If the calling method (e.g. execTransaction) received ETH this would revert otherwise function _multiSend(bytes memory transactions) internal { // solhint-disable-next-line no-inline-assembly assembly { let length := mload(transactions) let i := 0x20 for { // Pre block is not used in "while mode" } lt(i, length) { // Post block is not used in "while mode" } { // First byte of the data is the operation. // We shift by 248 bits (256 - 8 [operation byte]) it right since mload will always load 32 bytes (a word). // This will also zero out unused data. let operation := shr(0xf8, mload(add(transactions, i))) // We offset the load address by 1 byte (operation byte) // We shift it right by 96 bits (256 - 160 [20 address bytes]) to right-align the data and zero out unused data. let to := shr(0x60, mload(add(transactions, add(i, 0x01)))) // We offset the load address by 21 byte (operation byte + 20 address bytes) let value := mload(add(transactions, add(i, 0x15))) // We offset the load address by 53 byte (operation byte + 20 address bytes + 32 value bytes) let dataLength := mload(add(transactions, add(i, 0x35))) // We offset the load address by 85 byte (operation byte + 20 address bytes + 32 value bytes + 32 data length bytes) let data := add(transactions, add(i, 0x55)) let success := 0 switch operation case 0 { success := call(gas(), to, value, data, dataLength, 0, 0) } // This version does not allow delegatecalls case 1 { revert(0, 0) } if eq(success, 0) { revert(0, 0) } // Next entry starts at 85 byte + data length i := add(i, add(0x55, dataLength)) } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControlUpgradeable { /** * @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. * * _Available since v3.1._ */ 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 `account`. */ function renounceRole(bytes32 role, address account) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) pragma solidity ^0.8.0; import "../proxy/utils/Initializable.sol"; /** * @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 ContextUpgradeable is Initializable { function __Context_init() internal initializer { __Context_init_unchained(); } function __Context_init_unchained() internal initializer { } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library StringsUpgradeable { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165Upgradeable.sol"; import "../../proxy/utils/Initializable.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); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165Upgradeable is Initializable, IERC165Upgradeable { function __ERC165_init() internal initializer { __ERC165_init_unchained(); } function __ERC165_init_unchained() internal initializer { } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165Upgradeable).interfaceId; } uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @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 IERC165Upgradeable { /** * @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); }
{ "optimizer": { "enabled": true, "runs": 200 }, "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":[],"name":"CallFailed","type":"error"},{"inputs":[],"name":"CallProxyBadRole","type":"error"},{"inputs":[],"name":"DeBridgeGateBadRole","type":"error"},{"inputs":[],"name":"ExternalCallFailed","type":"error"},{"inputs":[],"name":"Locked","type":"error"},{"inputs":[],"name":"NotEnoughSafeTxGas","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"},{"inputs":[],"name":"DEBRIDGE_GATE_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":[{"internalType":"address","name":"_reserveAddress","type":"address"},{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"bytes","name":"_data","type":"bytes"},{"internalType":"uint256","name":"_flags","type":"uint256"},{"internalType":"bytes","name":"_nativeSender","type":"bytes"},{"internalType":"uint256","name":"_chainIdFrom","type":"uint256"}],"name":"call","outputs":[{"internalType":"bool","name":"_result","type":"bool"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_reserveAddress","type":"address"},{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"bytes","name":"_data","type":"bytes"},{"internalType":"uint256","name":"_flags","type":"uint256"},{"internalType":"bytes","name":"_nativeSender","type":"bytes"},{"internalType":"uint256","name":"_chainIdFrom","type":"uint256"}],"name":"callERC20","outputs":[{"internalType":"bool","name":"_result","type":"bool"}],"stateMutability":"nonpayable","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":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"transactions","type":"bytes"}],"name":"multiSend","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","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":[],"name":"submissionChainIdFrom","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"submissionNativeSender","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"version","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405234801561001057600080fd5b50611824806100206000396000f3fe6080604052600436106100ec5760003560e01c806354fd4d501161008a57806391d148541161005957806391d1485414610269578063a217fddf14610289578063b88c998b1461029e578063d547741f146102be57600080fd5b806354fd4d50146101f85780636515e2571461020d5780638129fc1c146102415780638d80ff0a1461025657600080fd5b80632eb48491116100c65780632eb484911461017e5780632f2ff15d146101a057806336568abe146101c2578063508ab0a0146101e257600080fd5b806301ffc9a7146100f8578063248a9ca31461012d57806329e164db1461016b57600080fd5b366100f357005b600080fd5b34801561010457600080fd5b50610118610113366004611576565b6102de565b60405190151581526020015b60405180910390f35b34801561013957600080fd5b5061015d610148366004611531565b60009081526065602052604090206001015490565b604051908152602001610124565b610118610179366004611478565b610315565b34801561018a57600080fd5b50610193610470565b60405161012491906116ab565b3480156101ac57600080fd5b506101c06101bb36600461154a565b6104fe565b005b3480156101ce57600080fd5b506101c06101dd36600461154a565b610529565b3480156101ee57600080fd5b5061015d60975481565b34801561020457600080fd5b506101a761015d565b34801561021957600080fd5b5061015d7fd5a6101e940ba33e226d2395b16238ab3063d7ee83d7b3ff59cb92988b39543781565b34801561024d57600080fd5b506101c06105ac565b6101c06102643660046115a0565b61066a565b34801561027557600080fd5b5061011861028436600461154a565b610693565b34801561029557600080fd5b5061015d600081565b3480156102aa57600080fd5b506101186102b93660046113cf565b6106be565b3480156102ca57600080fd5b506101c06102d936600461154a565b6108c7565b60006001600160e01b03198216637965db0b60e01b148061030f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60006103417fd5a6101e940ba33e226d2395b16238ab3063d7ee83d7b3ff59cb92988b39543733610693565b61035e576040516388a38fa160e01b815260040160405180910390fd5b60026099541415610382576040516303cb96db60e21b815260040160405180910390fd5b60026099554761039687828887878a6108ed565b9150811580156103aa5750600185811c8116145b156103c85760405163350c20f160e01b815260040160405180910390fd5b5047801561046057604080516000808252602082019092526001600160a01b038a169083906040516103fa919061161a565b60006040518083038185875af1925050503d8060008114610437576040519150601f19603f3d011682016040523d82523d6000602084013e61043c565b606091505b505090508061045e57604051633204506f60e01b815260040160405180910390fd5b505b5060016099559695505050505050565b6098805461047d90611771565b80601f01602080910402602001604051908101604052809291908181526020018280546104a990611771565b80156104f65780601f106104cb576101008083540402835291602001916104f6565b820191906000526020600020905b8154815290600101906020018083116104d957829003601f168201915b505050505081565b60008281526065602052604090206001015461051a8133610a29565b6105248383610a8d565b505050565b6001600160a01b038116331461059e5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084015b60405180910390fd5b6105a88282610b13565b5050565b600054610100900460ff16806105c5575060005460ff16155b6106285760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610595565b600054610100900460ff1615801561064a576000805461ffff19166101011790555b610655600033610b7a565b8015610667576000805461ff00191690555b50565b30331461068a576040516324439f6760e21b815260040160405180910390fd5b61066781610b84565b60009182526065602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60006106ea7fd5a6101e940ba33e226d2395b16238ab3063d7ee83d7b3ff59cb92988b39543733610693565b610707576040516388a38fa160e01b815260040160405180910390fd5b6002609954141561072b576040516303cb96db60e21b815260040160405180910390fd5b60026099556040516370a0823160e01b81523060048201526000906001600160a01b038a16906370a082319060240160206040518083038186803b15801561077257600080fd5b505afa158015610786573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107aa91906115d5565b90506001600160a01b038716156107c6576107c6898883610bf8565b6107d58760008887878a6108ed565b6040516370a0823160e01b81523060048201529092506001600160a01b038a16906370a082319060240160206040518083038186803b15801561081757600080fd5b505afa15801561082b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061084f91906115d5565b9050811580156108635750600185811c8116145b156108815760405163350c20f160e01b815260040160405180910390fd5b801561089b5761089b6001600160a01b038a168983610ce9565b6001600160a01b038716156108b6576108b689886000610bf8565b506001609955979650505050505050565b6000828152606560205260409020600101546108e38133610a29565b6105248383610b13565b60006001600283901c8116811490600484901c8116811490600585901c811614821561092d576097869055865161092b9060989060208a019061128d565b505b600082801561093d575060048951115b156109705761094d896000610d3b565b63ffffffff16905061096d896004808c516109689190611717565b610d98565b98505b603f61097d8260406116f8565b61098791906116d6565b61099390613c8c6116be565b5a10156109b357604051632508799b60e01b815260040160405180910390fd5b80156109bf57806109c1565b5a5b905081156109e057309a506000808a5160208c018d8f86f194506109f0565b6000808a5160208c018d8f86f194505b8315610a1b5760006097819055604080516020810191829052829052610a19916098919061128d565b505b505050509695505050505050565b610a338282610693565b6105a857610a4b816001600160a01b03166014610ea7565b610a56836020610ea7565b604051602001610a67929190611636565b60408051601f198184030181529082905262461bcd60e51b8252610595916004016116ab565b610a978282610693565b6105a85760008281526065602090815260408083206001600160a01b03851684529091529020805460ff19166001179055610acf3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610b1d8282610693565b156105a85760008281526065602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6105a88282610a8d565b805160205b81811015610524578083015160f81c6001820184015160601c601583018501516035840186015160558501870160008560008114610bce57600181146100f357610bda565b6000808585888a5af191505b5080610be557600080fd5b5050806055018501945050505050610b89565b604080516001600160a01b03848116602483015260448083018590528351808403909101815260649092018352602080830180516001600160e01b031663095ea7b360e01b17905283518085019094526014845273115490cc8c08185c1c1c9bdd994819985a5b195960621b90840152600092610c79929187169190611043565b805190915015610ce35780806020019051810190610c97919061150f565b610ce35760405162461bcd60e51b815260206004820152601f60248201527f4552433230206f7065726174696f6e20646964206e6f742073756363656564006044820152606401610595565b50505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261052490849061105a565b6000610d488260046116be565b83511015610d8f5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7433325f6f75744f66426f756e647360601b6044820152606401610595565b50016004015190565b606081610da681601f6116be565b1015610de55760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b6044820152606401610595565b610def82846116be565b84511015610e335760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b6044820152606401610595565b606082158015610e525760405191506000825260208201604052610e9c565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015610e8b578051835260209283019201610e73565b5050858452601f01601f1916604052505b5090505b9392505050565b60606000610eb68360026116f8565b610ec19060026116be565b67ffffffffffffffff811115610ed957610ed96117d8565b6040519080825280601f01601f191660200182016040528015610f03576020820181803683370190505b509050600360fc1b81600081518110610f1e57610f1e6117c2565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110610f4d57610f4d6117c2565b60200101906001600160f81b031916908160001a9053506000610f718460026116f8565b610f7c9060016116be565b90505b6001811115610ff4576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110610fb057610fb06117c2565b1a60f81b828281518110610fc657610fc66117c2565b60200101906001600160f81b031916908160001a90535060049490941c93610fed8161175a565b9050610f7f565b508315610ea05760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610595565b6060611052848460008561112c565b949350505050565b60006110af826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166110439092919063ffffffff16565b80519091501561052457808060200190518101906110cd919061150f565b6105245760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610595565b60608247101561118d5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610595565b843b6111db5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610595565b600080866001600160a01b031685876040516111f7919061161a565b60006040518083038185875af1925050503d8060008114611234576040519150601f19603f3d011682016040523d82523d6000602084013e611239565b606091505b5091509150611249828286611254565b979650505050505050565b60608315611263575081610ea0565b8251156112735782518084602001fd5b8160405162461bcd60e51b815260040161059591906116ab565b82805461129990611771565b90600052602060002090601f0160209004810192826112bb5760008555611301565b82601f106112d457805160ff1916838001178555611301565b82800160010185558215611301579182015b828111156113015782518255916020019190600101906112e6565b5061130d929150611311565b5090565b5b8082111561130d5760008155600101611312565b80356001600160a01b038116811461133d57600080fd5b919050565b600082601f83011261135357600080fd5b813567ffffffffffffffff8082111561136e5761136e6117d8565b604051601f8301601f19908116603f01168101908282118183101715611396576113966117d8565b816040528381528660208588010111156113af57600080fd5b836020870160208301376000602085830101528094505050505092915050565b600080600080600080600060e0888a0312156113ea57600080fd5b6113f388611326565b965061140160208901611326565b955061140f60408901611326565b9450606088013567ffffffffffffffff8082111561142c57600080fd5b6114388b838c01611342565b955060808a0135945060a08a013591508082111561145557600080fd5b506114628a828b01611342565b92505060c0880135905092959891949750929550565b60008060008060008060c0878903121561149157600080fd5b61149a87611326565b95506114a860208801611326565b9450604087013567ffffffffffffffff808211156114c557600080fd5b6114d18a838b01611342565b95506060890135945060808901359150808211156114ee57600080fd5b506114fb89828a01611342565b92505060a087013590509295509295509295565b60006020828403121561152157600080fd5b81518015158114610ea057600080fd5b60006020828403121561154357600080fd5b5035919050565b6000806040838503121561155d57600080fd5b8235915061156d60208401611326565b90509250929050565b60006020828403121561158857600080fd5b81356001600160e01b031981168114610ea057600080fd5b6000602082840312156115b257600080fd5b813567ffffffffffffffff8111156115c957600080fd5b61105284828501611342565b6000602082840312156115e757600080fd5b5051919050565b6000815180845261160681602086016020860161172e565b601f01601f19169290920160200192915050565b6000825161162c81846020870161172e565b9190910192915050565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835161166e81601785016020880161172e565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835161169f81602884016020880161172e565b01602801949350505050565b602081526000610ea060208301846115ee565b600082198211156116d1576116d16117ac565b500190565b6000826116f357634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615611712576117126117ac565b500290565b600082821015611729576117296117ac565b500390565b60005b83811015611749578181015183820152602001611731565b83811115610ce35750506000910152565b600081611769576117696117ac565b506000190190565b600181811c9082168061178557607f821691505b602082108114156117a657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfea264697066735822122058b7faf90769efd2c2556df30b0ea6a944b90010fbe673f2cdb25b71d1454a3664736f6c63430008070033
Deployed Bytecode
0x6080604052600436106100ec5760003560e01c806354fd4d501161008a57806391d148541161005957806391d1485414610269578063a217fddf14610289578063b88c998b1461029e578063d547741f146102be57600080fd5b806354fd4d50146101f85780636515e2571461020d5780638129fc1c146102415780638d80ff0a1461025657600080fd5b80632eb48491116100c65780632eb484911461017e5780632f2ff15d146101a057806336568abe146101c2578063508ab0a0146101e257600080fd5b806301ffc9a7146100f8578063248a9ca31461012d57806329e164db1461016b57600080fd5b366100f357005b600080fd5b34801561010457600080fd5b50610118610113366004611576565b6102de565b60405190151581526020015b60405180910390f35b34801561013957600080fd5b5061015d610148366004611531565b60009081526065602052604090206001015490565b604051908152602001610124565b610118610179366004611478565b610315565b34801561018a57600080fd5b50610193610470565b60405161012491906116ab565b3480156101ac57600080fd5b506101c06101bb36600461154a565b6104fe565b005b3480156101ce57600080fd5b506101c06101dd36600461154a565b610529565b3480156101ee57600080fd5b5061015d60975481565b34801561020457600080fd5b506101a761015d565b34801561021957600080fd5b5061015d7fd5a6101e940ba33e226d2395b16238ab3063d7ee83d7b3ff59cb92988b39543781565b34801561024d57600080fd5b506101c06105ac565b6101c06102643660046115a0565b61066a565b34801561027557600080fd5b5061011861028436600461154a565b610693565b34801561029557600080fd5b5061015d600081565b3480156102aa57600080fd5b506101186102b93660046113cf565b6106be565b3480156102ca57600080fd5b506101c06102d936600461154a565b6108c7565b60006001600160e01b03198216637965db0b60e01b148061030f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60006103417fd5a6101e940ba33e226d2395b16238ab3063d7ee83d7b3ff59cb92988b39543733610693565b61035e576040516388a38fa160e01b815260040160405180910390fd5b60026099541415610382576040516303cb96db60e21b815260040160405180910390fd5b60026099554761039687828887878a6108ed565b9150811580156103aa5750600185811c8116145b156103c85760405163350c20f160e01b815260040160405180910390fd5b5047801561046057604080516000808252602082019092526001600160a01b038a169083906040516103fa919061161a565b60006040518083038185875af1925050503d8060008114610437576040519150601f19603f3d011682016040523d82523d6000602084013e61043c565b606091505b505090508061045e57604051633204506f60e01b815260040160405180910390fd5b505b5060016099559695505050505050565b6098805461047d90611771565b80601f01602080910402602001604051908101604052809291908181526020018280546104a990611771565b80156104f65780601f106104cb576101008083540402835291602001916104f6565b820191906000526020600020905b8154815290600101906020018083116104d957829003601f168201915b505050505081565b60008281526065602052604090206001015461051a8133610a29565b6105248383610a8d565b505050565b6001600160a01b038116331461059e5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084015b60405180910390fd5b6105a88282610b13565b5050565b600054610100900460ff16806105c5575060005460ff16155b6106285760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610595565b600054610100900460ff1615801561064a576000805461ffff19166101011790555b610655600033610b7a565b8015610667576000805461ff00191690555b50565b30331461068a576040516324439f6760e21b815260040160405180910390fd5b61066781610b84565b60009182526065602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60006106ea7fd5a6101e940ba33e226d2395b16238ab3063d7ee83d7b3ff59cb92988b39543733610693565b610707576040516388a38fa160e01b815260040160405180910390fd5b6002609954141561072b576040516303cb96db60e21b815260040160405180910390fd5b60026099556040516370a0823160e01b81523060048201526000906001600160a01b038a16906370a082319060240160206040518083038186803b15801561077257600080fd5b505afa158015610786573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107aa91906115d5565b90506001600160a01b038716156107c6576107c6898883610bf8565b6107d58760008887878a6108ed565b6040516370a0823160e01b81523060048201529092506001600160a01b038a16906370a082319060240160206040518083038186803b15801561081757600080fd5b505afa15801561082b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061084f91906115d5565b9050811580156108635750600185811c8116145b156108815760405163350c20f160e01b815260040160405180910390fd5b801561089b5761089b6001600160a01b038a168983610ce9565b6001600160a01b038716156108b6576108b689886000610bf8565b506001609955979650505050505050565b6000828152606560205260409020600101546108e38133610a29565b6105248383610b13565b60006001600283901c8116811490600484901c8116811490600585901c811614821561092d576097869055865161092b9060989060208a019061128d565b505b600082801561093d575060048951115b156109705761094d896000610d3b565b63ffffffff16905061096d896004808c516109689190611717565b610d98565b98505b603f61097d8260406116f8565b61098791906116d6565b61099390613c8c6116be565b5a10156109b357604051632508799b60e01b815260040160405180910390fd5b80156109bf57806109c1565b5a5b905081156109e057309a506000808a5160208c018d8f86f194506109f0565b6000808a5160208c018d8f86f194505b8315610a1b5760006097819055604080516020810191829052829052610a19916098919061128d565b505b505050509695505050505050565b610a338282610693565b6105a857610a4b816001600160a01b03166014610ea7565b610a56836020610ea7565b604051602001610a67929190611636565b60408051601f198184030181529082905262461bcd60e51b8252610595916004016116ab565b610a978282610693565b6105a85760008281526065602090815260408083206001600160a01b03851684529091529020805460ff19166001179055610acf3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610b1d8282610693565b156105a85760008281526065602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6105a88282610a8d565b805160205b81811015610524578083015160f81c6001820184015160601c601583018501516035840186015160558501870160008560008114610bce57600181146100f357610bda565b6000808585888a5af191505b5080610be557600080fd5b5050806055018501945050505050610b89565b604080516001600160a01b03848116602483015260448083018590528351808403909101815260649092018352602080830180516001600160e01b031663095ea7b360e01b17905283518085019094526014845273115490cc8c08185c1c1c9bdd994819985a5b195960621b90840152600092610c79929187169190611043565b805190915015610ce35780806020019051810190610c97919061150f565b610ce35760405162461bcd60e51b815260206004820152601f60248201527f4552433230206f7065726174696f6e20646964206e6f742073756363656564006044820152606401610595565b50505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261052490849061105a565b6000610d488260046116be565b83511015610d8f5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7433325f6f75744f66426f756e647360601b6044820152606401610595565b50016004015190565b606081610da681601f6116be565b1015610de55760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b6044820152606401610595565b610def82846116be565b84511015610e335760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b6044820152606401610595565b606082158015610e525760405191506000825260208201604052610e9c565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015610e8b578051835260209283019201610e73565b5050858452601f01601f1916604052505b5090505b9392505050565b60606000610eb68360026116f8565b610ec19060026116be565b67ffffffffffffffff811115610ed957610ed96117d8565b6040519080825280601f01601f191660200182016040528015610f03576020820181803683370190505b509050600360fc1b81600081518110610f1e57610f1e6117c2565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110610f4d57610f4d6117c2565b60200101906001600160f81b031916908160001a9053506000610f718460026116f8565b610f7c9060016116be565b90505b6001811115610ff4576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110610fb057610fb06117c2565b1a60f81b828281518110610fc657610fc66117c2565b60200101906001600160f81b031916908160001a90535060049490941c93610fed8161175a565b9050610f7f565b508315610ea05760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610595565b6060611052848460008561112c565b949350505050565b60006110af826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166110439092919063ffffffff16565b80519091501561052457808060200190518101906110cd919061150f565b6105245760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610595565b60608247101561118d5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610595565b843b6111db5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610595565b600080866001600160a01b031685876040516111f7919061161a565b60006040518083038185875af1925050503d8060008114611234576040519150601f19603f3d011682016040523d82523d6000602084013e611239565b606091505b5091509150611249828286611254565b979650505050505050565b60608315611263575081610ea0565b8251156112735782518084602001fd5b8160405162461bcd60e51b815260040161059591906116ab565b82805461129990611771565b90600052602060002090601f0160209004810192826112bb5760008555611301565b82601f106112d457805160ff1916838001178555611301565b82800160010185558215611301579182015b828111156113015782518255916020019190600101906112e6565b5061130d929150611311565b5090565b5b8082111561130d5760008155600101611312565b80356001600160a01b038116811461133d57600080fd5b919050565b600082601f83011261135357600080fd5b813567ffffffffffffffff8082111561136e5761136e6117d8565b604051601f8301601f19908116603f01168101908282118183101715611396576113966117d8565b816040528381528660208588010111156113af57600080fd5b836020870160208301376000602085830101528094505050505092915050565b600080600080600080600060e0888a0312156113ea57600080fd5b6113f388611326565b965061140160208901611326565b955061140f60408901611326565b9450606088013567ffffffffffffffff8082111561142c57600080fd5b6114388b838c01611342565b955060808a0135945060a08a013591508082111561145557600080fd5b506114628a828b01611342565b92505060c0880135905092959891949750929550565b60008060008060008060c0878903121561149157600080fd5b61149a87611326565b95506114a860208801611326565b9450604087013567ffffffffffffffff808211156114c557600080fd5b6114d18a838b01611342565b95506060890135945060808901359150808211156114ee57600080fd5b506114fb89828a01611342565b92505060a087013590509295509295509295565b60006020828403121561152157600080fd5b81518015158114610ea057600080fd5b60006020828403121561154357600080fd5b5035919050565b6000806040838503121561155d57600080fd5b8235915061156d60208401611326565b90509250929050565b60006020828403121561158857600080fd5b81356001600160e01b031981168114610ea057600080fd5b6000602082840312156115b257600080fd5b813567ffffffffffffffff8111156115c957600080fd5b61105284828501611342565b6000602082840312156115e757600080fd5b5051919050565b6000815180845261160681602086016020860161172e565b601f01601f19169290920160200192915050565b6000825161162c81846020870161172e565b9190910192915050565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835161166e81601785016020880161172e565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835161169f81602884016020880161172e565b01602801949350505050565b602081526000610ea060208301846115ee565b600082198211156116d1576116d16117ac565b500190565b6000826116f357634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615611712576117126117ac565b500290565b600082821015611729576117296117ac565b500390565b60005b83811015611749578181015183820152602001611731565b83811115610ce35750506000910152565b600081611769576117696117ac565b506000190190565b600181811c9082168061178557607f821691505b602082108114156117a657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfea264697066735822122058b7faf90769efd2c2556df30b0ea6a944b90010fbe673f2cdb25b71d1454a3664736f6c63430008070033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ 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.