More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 5,738 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw | 21861608 | 6 hrs ago | IN | 0 ETH | 0.00007044 | ||||
Withdraw | 21860113 | 11 hrs ago | IN | 0 ETH | 0.00009397 | ||||
Withdraw | 21858865 | 16 hrs ago | IN | 0 ETH | 0.00005665 | ||||
Withdraw | 21852450 | 37 hrs ago | IN | 0 ETH | 0.00014876 | ||||
Withdraw | 21851586 | 40 hrs ago | IN | 0 ETH | 0.00010614 | ||||
Withdraw | 21851559 | 40 hrs ago | IN | 0 ETH | 0.00010635 | ||||
Withdraw | 21840634 | 3 days ago | IN | 0 ETH | 0.00007919 | ||||
Withdraw | 21838148 | 3 days ago | IN | 0 ETH | 0.00029404 | ||||
Withdraw | 21836635 | 3 days ago | IN | 0 ETH | 0.00011241 | ||||
Withdraw | 21830937 | 4 days ago | IN | 0 ETH | 0.00025897 | ||||
Withdraw | 21824947 | 5 days ago | IN | 0 ETH | 0.00010622 | ||||
Withdraw | 21824384 | 5 days ago | IN | 0 ETH | 0.00021243 | ||||
Withdraw | 21810923 | 7 days ago | IN | 0 ETH | 0.00007156 | ||||
Withdraw | 21802450 | 8 days ago | IN | 0 ETH | 0.0001672 | ||||
Withdraw | 21802284 | 8 days ago | IN | 0 ETH | 0.00011881 | ||||
Withdraw | 21802192 | 8 days ago | IN | 0 ETH | 0.00010437 | ||||
Withdraw | 21801968 | 8 days ago | IN | 0 ETH | 0.00012704 | ||||
Withdraw | 21800614 | 8 days ago | IN | 0 ETH | 0.00006774 | ||||
Withdraw | 21800607 | 8 days ago | IN | 0 ETH | 0.00007548 | ||||
Withdraw | 21800253 | 8 days ago | IN | 0 ETH | 0.00006083 | ||||
Withdraw | 21799670 | 8 days ago | IN | 0 ETH | 0.00010746 | ||||
Withdraw | 21789623 | 10 days ago | IN | 0 ETH | 0.00017484 | ||||
Withdraw | 21789608 | 10 days ago | IN | 0 ETH | 0.00020811 | ||||
Withdraw | 21789587 | 10 days ago | IN | 0 ETH | 0.00018832 | ||||
Withdraw | 21789425 | 10 days ago | IN | 0 ETH | 0.00024798 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
19573106 | 319 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
CyberStakingPool
Compiler Version
v0.8.14+commit.80d49f37
Optimization Enabled:
Yes with 200 runs
Other Settings:
london EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity 0.8.14; import { IERC20 } from "openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; import { SafeERC20 } from "openzeppelin-contracts/contracts/token/ERC20/utils/SafeERC20.sol"; import { AccessControl } from "openzeppelin-contracts/contracts/access/AccessControl.sol"; import { Pausable } from "openzeppelin-contracts/contracts/security/Pausable.sol"; import { EIP712 } from "openzeppelin-contracts/contracts/utils/cryptography/EIP712.sol"; import { SignatureChecker } from "openzeppelin-contracts/contracts/utils/cryptography/SignatureChecker.sol"; import { ReentrancyGuard } from "openzeppelin-contracts/contracts/security/ReentrancyGuard.sol"; import { EIP712Signature } from "../interfaces/ICyberStakingPool.sol"; import { BridgeParams } from "../interfaces/ICyberStakingPool.sol"; import { IWETH } from "../interfaces/IWETH.sol"; import { IBridge } from "../interfaces/IBridge.sol"; import { ICyberStakingPool } from "../interfaces/ICyberStakingPool.sol"; /** * @title CyberStakingPool * @author CyberConnect */ contract CyberStakingPool is ICyberStakingPool, ReentrancyGuard, AccessControl, Pausable, EIP712 { using SafeERC20 for IERC20; /*////////////////////////////////////////////////////////////// STATES //////////////////////////////////////////////////////////////*/ address public immutable weth; // asset => isWhitelisted mapping(address => bool) public assetWhitelist; // bridge => isWhitelisted mapping(address => bool) public bridgeWhitelist; // asset => user => balance mapping(address => mapping(address => uint256)) public balance; // asset => total balance mapping(address => uint256) public totalBalance; // asset owner => nonce mapping(address => uint256) public nonces; bytes32 internal constant _OPERATOR_ROLE = keccak256(bytes("OPERATOR_ROLE")); uint256 private _logId; bytes32 private constant BRIDGE_TYPEHASH = keccak256( "bridge(address bridge,address recipient,address[] assets,uint256[] amounts,uint256 deadline,uint256 nonce)" ); /*////////////////////////////////////////////////////////////// CONSTRUCTOR //////////////////////////////////////////////////////////////*/ constructor(address _weth, address owner) EIP712("CyberStakingPool", "1") { require(_weth != address(0), "ZERO_ADDRESS"); require(owner != address(0), "ZERO_ADDRESS"); weth = _weth; _grantRole(DEFAULT_ADMIN_ROLE, owner); } /*////////////////////////////////////////////////////////////// PUBLIC //////////////////////////////////////////////////////////////*/ /// @inheritdoc ICyberStakingPool function deposit( address asset, uint256 amount ) external whenNotPaused nonReentrant { require(amount != 0, "ZERO_AMOUNT"); require(assetWhitelist[asset], "ASSET_NOT_WHITELISTED"); uint256 beforeTransfer = IERC20(asset).balanceOf(address(this)); IERC20(asset).safeTransferFrom(msg.sender, address(this), amount); uint256 afterTransfer = IERC20(asset).balanceOf(address(this)); uint256 actualAmount = afterTransfer - beforeTransfer; balance[asset][msg.sender] += actualAmount; totalBalance[asset] += actualAmount; emit Deposit(_logId++, msg.sender, asset, actualAmount); } receive() external payable { depositETH(); } /// @inheritdoc ICyberStakingPool function depositETH() public payable whenNotPaused nonReentrant { require(msg.value != 0, "ZERO_AMOUNT"); balance[weth][msg.sender] += msg.value; totalBalance[weth] += msg.value; IWETH(weth).deposit{ value: msg.value }(); emit Deposit(_logId++, msg.sender, weth, msg.value); } /// @inheritdoc ICyberStakingPool function withdraw( address[] calldata assets, uint256[] calldata amounts ) external nonReentrant { require(assets.length == amounts.length, "INVALID_LENGTH"); for (uint256 i = 0; i < assets.length; i++) { address asset = assets[i]; uint256 amount = amounts[i]; require(amount != 0, "ZERO_AMOUNT"); require( balance[asset][msg.sender] >= amount, "INSUFFICIENT_BALANCE" ); balance[asset][msg.sender] -= amount; totalBalance[asset] -= amount; uint256 beforeTransfer = IERC20(asset).balanceOf(address(this)); IERC20(asset).safeTransfer(msg.sender, amount); uint256 afterTransfer = IERC20(asset).balanceOf(address(this)); require( beforeTransfer - afterTransfer == amount, "TRANSFER_FAILED" ); } emit Withdraw(_logId++, msg.sender, assets, amounts); } /// @inheritdoc ICyberStakingPool function bridge(BridgeParams calldata params) external nonReentrant { require( params.assets.length == params.amounts.length, "INVALID_LENGTH" ); require( bridgeWhitelist[params.bridgeAddress], "BRIDGE_NOT_WHITELISTED" ); require(params.recipient != address(0), "RECIPIENT_ZERO_ADDRESS"); _bridge( params.bridgeAddress, msg.sender, params.recipient, params.assets, params.amounts ); } /// @inheritdoc ICyberStakingPool function bridgeWithSig( address assetOwner, BridgeParams calldata params, EIP712Signature calldata signature ) external nonReentrant { require( params.assets.length == params.amounts.length, "INVALID_LENGTH" ); require( bridgeWhitelist[params.bridgeAddress], "BRIDGE_NOT_WHITELISTED" ); require(params.recipient != address(0), "RECIPIENT_ZERO_ADDRESS"); require(signature.deadline >= block.timestamp, "SIGNATURE_EXPIRED"); { require( SignatureChecker.isValidSignatureNow( assetOwner, _hashTypedDataV4( keccak256( abi.encode( BRIDGE_TYPEHASH, params.bridgeAddress, params.recipient, keccak256(abi.encodePacked(params.assets)), keccak256(abi.encodePacked(params.amounts)), signature.deadline, nonces[assetOwner]++ ) ) ), signature.signature ), "INVALID_SIGNATURE" ); } _bridge( params.bridgeAddress, assetOwner, params.recipient, params.assets, params.amounts ); } /*////////////////////////////////////////////////////////////// OPERATOR //////////////////////////////////////////////////////////////*/ function setAssetWhitelist( address asset, bool isWhitelisted ) external onlyRole(_OPERATOR_ROLE) { require(asset != address(0), "ZERO_ADDRESS"); require(assetWhitelist[asset] != isWhitelisted, "SAME_VALUE"); assetWhitelist[asset] = isWhitelisted; emit SetAssetWhitelist(asset, isWhitelisted); } /** * @notice Pauses deposit. */ function pause() external onlyRole(_OPERATOR_ROLE) { _pause(); } /** * @notice Unpauses deposit. */ function unpause() external onlyRole(_OPERATOR_ROLE) { _unpause(); } /*////////////////////////////////////////////////////////////// ADMIN //////////////////////////////////////////////////////////////*/ /** * @notice Set bridge whitelist. * * @param bridgeAddress The bridge address. * @param isWhitelisted The whitelist status. */ function setBridgeWhitelist( address bridgeAddress, bool isWhitelisted ) external onlyRole(DEFAULT_ADMIN_ROLE) { require(bridgeAddress != address(0), "ZERO_ADDRESS"); require(bridgeWhitelist[bridgeAddress] != isWhitelisted, "SAME_VALUE"); bridgeWhitelist[bridgeAddress] = isWhitelisted; emit SetBridgeWhitelist(bridgeAddress, isWhitelisted); } /*////////////////////////////////////////////////////////////// PRIVATE //////////////////////////////////////////////////////////////*/ function _bridge( address bridgeAddress, address assetOwner, address recipient, address[] calldata assets, uint256[] calldata amounts ) private { require(assetOwner != address(0), "ZERO_ADDRESS"); uint256[] memory beforeAmounts = new uint256[](assets.length); for (uint256 i = 0; i < assets.length; i++) { address asset = assets[i]; uint256 amount = amounts[i]; require(amount != 0, "ZERO_AMOUNT"); require( balance[asset][assetOwner] >= amount, "INSUFFICIENT_BALANCE" ); balance[asset][assetOwner] -= amount; totalBalance[asset] -= amount; bool success = IERC20(asset).approve(bridgeAddress, amount); require(success, "APPROVE_FAILED"); beforeAmounts[i] = IERC20(asset).balanceOf(address(this)); } IBridge(bridgeAddress).bridge(assetOwner, recipient, assets, amounts); for (uint256 i = 0; i < assets.length; i++) { uint256 afterAmount = IERC20(assets[i]).balanceOf(address(this)); require( beforeAmounts[i] - afterAmount == amounts[i], "BRIDGE_FAILED" ); } emit Bridge( _logId++, bridgeAddress, assetOwner, recipient, assets, amounts ); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @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 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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../extensions/draft-IERC20Permit.sol"; import "../../../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; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 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( IERC20 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( IERC20 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( IERC20 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)); } } function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @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, "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 (last updated v4.8.0) (access/AccessControl.sol) pragma solidity ^0.8.0; import "./IAccessControl.sol"; import "../utils/Context.sol"; import "../utils/Strings.sol"; import "../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: * * ``` * 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 AccessControl is Context, IAccessControl, ERC165 { 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); _; } /** * @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 override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `_msgSender()` is missing `role`. * Overriding this function changes the behavior of the {onlyRole} modifier. * * Format of the revert message is described in {_checkRole}. * * _Available since v4.6._ */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @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 virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(account), " is missing role ", Strings.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 virtual 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. * * May emit a {RoleGranted} event. */ 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. * * May emit a {RoleRevoked} event. */ 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`. * * May emit a {RoleRevoked} event. */ 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. * * May emit a {RoleGranted} event. * * [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. * * May emit a {RoleGranted} event. */ 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. * * May emit a {RoleRevoked} event. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/EIP712.sol) pragma solidity ^0.8.0; import "./ECDSA.sol"; /** * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data. * * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible, * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding * they need in their contracts using a combination of `abi.encode` and `keccak256`. * * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA * ({_hashTypedDataV4}). * * The implementation of the domain separator was designed to be as efficient as possible while still properly updating * the chain id to protect against replay attacks on an eventual fork of the chain. * * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask]. * * _Available since v3.4._ */ abstract contract EIP712 { /* solhint-disable var-name-mixedcase */ // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to // invalidate the cached domain separator if the chain id changes. bytes32 private immutable _CACHED_DOMAIN_SEPARATOR; uint256 private immutable _CACHED_CHAIN_ID; address private immutable _CACHED_THIS; bytes32 private immutable _HASHED_NAME; bytes32 private immutable _HASHED_VERSION; bytes32 private immutable _TYPE_HASH; /* solhint-enable var-name-mixedcase */ /** * @dev Initializes the domain separator and parameter caches. * * The meaning of `name` and `version` is specified in * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]: * * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol. * - `version`: the current major version of the signing domain. * * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart * contract upgrade]. */ constructor(string memory name, string memory version) { bytes32 hashedName = keccak256(bytes(name)); bytes32 hashedVersion = keccak256(bytes(version)); bytes32 typeHash = keccak256( "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)" ); _HASHED_NAME = hashedName; _HASHED_VERSION = hashedVersion; _CACHED_CHAIN_ID = block.chainid; _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion); _CACHED_THIS = address(this); _TYPE_HASH = typeHash; } /** * @dev Returns the domain separator for the current chain. */ function _domainSeparatorV4() internal view returns (bytes32) { if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) { return _CACHED_DOMAIN_SEPARATOR; } else { return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION); } } function _buildDomainSeparator( bytes32 typeHash, bytes32 nameHash, bytes32 versionHash ) private view returns (bytes32) { return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this))); } /** * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this * function returns the hash of the fully encoded EIP712 message for this domain. * * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example: * * ```solidity * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode( * keccak256("Mail(address to,string contents)"), * mailTo, * keccak256(bytes(mailContents)) * ))); * address signer = ECDSA.recover(digest, signature); * ``` */ function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) { return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/SignatureChecker.sol) pragma solidity ^0.8.0; import "./ECDSA.sol"; import "../Address.sol"; import "../../interfaces/IERC1271.sol"; /** * @dev Signature verification helper that can be used instead of `ECDSA.recover` to seamlessly support both ECDSA * signatures from externally owned accounts (EOAs) as well as ERC1271 signatures from smart contract wallets like * Argent and Gnosis Safe. * * _Available since v4.1._ */ library SignatureChecker { /** * @dev Checks if a signature is valid for a given signer and data hash. If the signer is a smart contract, the * signature is validated against that smart contract using ERC1271, otherwise it's validated using `ECDSA.recover`. * * NOTE: Unlike ECDSA signatures, contract signatures are revocable, and the outcome of this function can thus * change through time. It could return true at block N and false at block N+1 (or the opposite). */ function isValidSignatureNow( address signer, bytes32 hash, bytes memory signature ) internal view returns (bool) { (address recovered, ECDSA.RecoverError error) = ECDSA.tryRecover(hash, signature); if (error == ECDSA.RecoverError.NoError && recovered == signer) { return true; } (bool success, bytes memory result) = signer.staticcall( abi.encodeWithSelector(IERC1271.isValidSignature.selector, hash, signature) ); return (success && result.length == 32 && abi.decode(result, (bytes32)) == bytes32(IERC1271.isValidSignature.selector)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity 0.8.14; import { ICyberStakingPoolEvents } from "./ICyberStakingPoolEvents.sol"; struct EIP712Signature { uint256 deadline; bytes signature; } struct BridgeParams { address bridgeAddress; address recipient; address[] assets; uint256[] amounts; } /** * @title ICyberStakingPool * @author CyberConnect */ interface ICyberStakingPool is ICyberStakingPoolEvents { /*////////////////////////////////////////////////////////////// PUBLIC //////////////////////////////////////////////////////////////*/ /** * @notice Deposit asset. * * @param asset The asset address. * @param amount The deposit amount. */ function deposit(address asset, uint256 amount) external; /** * @notice Deposit ETH. */ function depositETH() external payable; /** * @notice Withdraw assets. * * @param assets The asset addresses. * @param amounts The withdraw amounts. */ function withdraw( address[] calldata assets, uint256[] calldata amounts ) external; /** * @notice Bridge assets. * * @param params The bridge params. */ function bridge(BridgeParams calldata params) external; /** * @notice Bridge assets with asset owner's 712 signature. * * @param assetOwner The asset owner address. * @param params The bridge params. * @param signature The 712 signature. */ function bridgeWithSig( address assetOwner, BridgeParams calldata params, EIP712Signature calldata signature ) external; }
// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity 0.8.14; interface IWETH { function deposit() external payable; }
// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity 0.8.14; /** * @title IBridge * @author CyberConnect */ interface IBridge { /** * @notice Bridges asset to Cyber L2. * * @param assetOwner The owner of the asset. * @param recipient The recipient of the asset. * @param assets The assets to bridge. * @param amounts The amounts to bridge. */ function bridge( address assetOwner, address recipient, address[] calldata assets, uint256[] calldata amounts ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol) pragma solidity ^0.8.0; /** * @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. */ 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]. */ 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 v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 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 functionCallWithValue(target, data, 0, "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"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or 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 { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) 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(errorMessage); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @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.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; import "./math/Math.sol"; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @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] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./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); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "../Strings.sol"; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV // Deprecated in v4.8 } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. /// @solidity memory-safe-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (interfaces/IERC1271.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC1271 standard signature validation method for * contracts as defined in https://eips.ethereum.org/EIPS/eip-1271[ERC-1271]. * * _Available since v4.1._ */ interface IERC1271 { /** * @dev Should return whether the signature provided is valid for the provided data * @param hash Hash of the data to be signed * @param signature Signature byte array associated with _data */ function isValidSignature(bytes32 hash, bytes memory signature) external view returns (bytes4 magicValue); }
// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity 0.8.14; /** * @title ICyberStakingPoolEvents * @author CyberConnect */ interface ICyberStakingPoolEvents { /** * @notice Emitted when a deposit has been made. * * @param logId The log id which helps to deduplicate logs. * @param assetOwner The address deposit to. * @param asset The asset address. * @param amount The deposit amount. */ event Deposit( uint256 logId, address assetOwner, address asset, uint256 amount ); /** * @notice Emitted when a withdraw has been made. * * @param logId The log id which helps to deduplicate logs. * @param assetOwner The address withdraw from. * @param assets The asset addresses. * @param amounts The withdraw amounts. */ event Withdraw( uint256 logId, address assetOwner, address[] assets, uint256[] amounts ); /** * @notice Emitted when a bridge has been made. * * @param logId The log id which helps to deduplicate logs. * @param bridge The bridge address. * @param assetOwner The address bridge from. * @param recipient The address bridge to. * @param assets The asset addresses. * @param amounts The bridge amounts. */ event Bridge( uint256 logId, address bridge, address assetOwner, address recipient, address[] assets, uint256[] amounts ); /** * @notice Emitted when a asset whitelist has been set. * * @param asset The asset address. * @param isWhitelisted The whitelist status. */ event SetAssetWhitelist(address asset, bool isWhitelisted); /** * @notice Emitted when a bridge whitelist has been set. * * @param bridge The bridge address. * @param isWhitelisted The whitelist status. */ event SetBridgeWhitelist(address bridge, bool isWhitelisted); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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 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); }
{ "remappings": [ "ds-test/=lib/forge-std/lib/ds-test/src/", "forge-std/=lib/forge-std/src/", "openzeppelin-contracts/=lib/openzeppelin-contracts/", "solmate/=lib/solmate/", "kernel/=lib/kernel/", "account-abstraction/=lib/account-abstraction/contracts/", "universal-router/=lib/uniswap/", "@openzeppelin/=lib/kernel/lib/openzeppelin-contracts/", "solady/=lib/kernel/lib/solady/", "uniswap/=lib/uniswap/contracts/" ], "optimizer": { "enabled": true, "runs": 200 }, "metadata": { "useLiteralContent": false, "bytecodeHash": "ipfs" }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "evmVersion": "london", "viaIR": false, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_weth","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"logId","type":"uint256"},{"indexed":false,"internalType":"address","name":"bridge","type":"address"},{"indexed":false,"internalType":"address","name":"assetOwner","type":"address"},{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"address[]","name":"assets","type":"address[]"},{"indexed":false,"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"Bridge","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"logId","type":"uint256"},{"indexed":false,"internalType":"address","name":"assetOwner","type":"address"},{"indexed":false,"internalType":"address","name":"asset","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"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":false,"internalType":"address","name":"asset","type":"address"},{"indexed":false,"internalType":"bool","name":"isWhitelisted","type":"bool"}],"name":"SetAssetWhitelist","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"bridge","type":"address"},{"indexed":false,"internalType":"bool","name":"isWhitelisted","type":"bool"}],"name":"SetBridgeWhitelist","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"logId","type":"uint256"},{"indexed":false,"internalType":"address","name":"assetOwner","type":"address"},{"indexed":false,"internalType":"address[]","name":"assets","type":"address[]"},{"indexed":false,"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"assetWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"balance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"bridgeAddress","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"address[]","name":"assets","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"internalType":"struct BridgeParams","name":"params","type":"tuple"}],"name":"bridge","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"bridgeWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"assetOwner","type":"address"},{"components":[{"internalType":"address","name":"bridgeAddress","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"address[]","name":"assets","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"internalType":"struct BridgeParams","name":"params","type":"tuple"},{"components":[{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct EIP712Signature","name":"signature","type":"tuple"}],"name":"bridgeWithSig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"asset","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"depositETH","outputs":[],"stateMutability":"payable","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":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"internalType":"address","name":"asset","type":"address"},{"internalType":"bool","name":"isWhitelisted","type":"bool"}],"name":"setAssetWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"bridgeAddress","type":"address"},{"internalType":"bool","name":"isWhitelisted","type":"bool"}],"name":"setBridgeWhitelist","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":"totalBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"weth","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"assets","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6101606040523480156200001257600080fd5b5060405162002fe838038062002fe8833981016040819052620000359162000280565b604080518082018252601081526f10de58995c94dd185ada5b99d41bdbdb60821b6020808301918252835180850185526001808252603160f81b918301919091526000556002805460ff191690559151902060e08190527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc66101008190524660a081815285517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818701819052818801959095526060810193909352608080840192909252308382018190528651808503909201825260c09384019096528051940193909320909252919052610120526001600160a01b038216620001705760405162461bcd60e51b815260206004820152600c60248201526b5a45524f5f4144445245535360a01b60448201526064015b60405180910390fd5b6001600160a01b038116620001b75760405162461bcd60e51b815260206004820152600c60248201526b5a45524f5f4144445245535360a01b604482015260640162000167565b6001600160a01b03821661014052620001d2600082620001da565b5050620002b8565b60008281526001602090815260408083206001600160a01b038516845290915290205460ff166200025f5760008281526001602081815260408084206001600160a01b0386168086529252808420805460ff19169093179092559051339285917f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d9190a45b5050565b80516001600160a01b03811681146200027b57600080fd5b919050565b600080604083850312156200029457600080fd5b6200029f8362000263565b9150620002af6020840162000263565b90509250929050565b60805160a05160c05160e051610100516101205161014051612cb96200032f60003960008181610273015281816104e80152818161054001528181610587015261064701526000612004015260006120530152600061202e01526000611f8701526000611fb101526000611fdb0152612cb96000f3fe6080604052600436106101445760003560e01c80637ecebe00116100b6578063b203bb991161006f578063b203bb99146103e9578063d40527e514610421578063d547741f14610441578063de6d6d9614610461578063e818ca2914610481578063f6326fb3146104a157600080fd5b80637ecebe00146103125780638456cb591461033f57806391d148541461035457806392dca90614610374578063a217fddf146103a4578063ad9d791d146103b957600080fd5b806336568abe1161010857806336568abe1461022c5780633f4ba83a1461024c5780633fc8cef31461026157806347e7ef24146102ad5780635c975abb146102cd5780636eacd398146102e557600080fd5b806301ffc9a714610158578063057963631461018d578063233e8f50146101ad578063248a9ca3146101cd5780632f2ff15d1461020c57600080fd5b36610153576101516104a5565b005b600080fd5b34801561016457600080fd5b506101786101733660046124e8565b610688565b60405190151581526020015b60405180910390f35b34801561019957600080fd5b506101516101a836600461253c565b6106bf565b3480156101b957600080fd5b506101516101c836600461258b565b6107f6565b3480156101d957600080fd5b506101fe6101e83660046125c0565b6000908152600160208190526040909120015490565b604051908152602001610184565b34801561021857600080fd5b506101516102273660046125d9565b61095a565b34801561023857600080fd5b506101516102473660046125d9565b610985565b34801561025857600080fd5b50610151610a03565b34801561026d57600080fd5b506102957f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610184565b3480156102b957600080fd5b506101516102c8366004612605565b610a5a565b3480156102d957600080fd5b5060025460ff16610178565b3480156102f157600080fd5b506101fe61030036600461262f565b60066020526000908152604090205481565b34801561031e57600080fd5b506101fe61032d36600461262f565b60076020526000908152604090205481565b34801561034b57600080fd5b50610151610cbe565b34801561036057600080fd5b5061017861036f3660046125d9565b610d15565b34801561038057600080fd5b5061017861038f36600461262f565b60046020526000908152604090205460ff1681565b3480156103b057600080fd5b506101fe600081565b3480156103c557600080fd5b506101786103d436600461262f565b60036020526000908152604090205460ff1681565b3480156103f557600080fd5b506101fe61040436600461264a565b600560209081526000928352604080842090915290825290205481565b34801561042d57600080fd5b5061015161043c36600461253c565b610d40565b34801561044d57600080fd5b5061015161045c3660046125d9565b610e2a565b34801561046d57600080fd5b5061015161047c3660046126b9565b610e50565b34801561048d57600080fd5b5061015161049c366004612725565b61116d565b6101515b6104ad6114cd565b6104b5611513565b346000036104de5760405162461bcd60e51b81526004016104d5906127a0565b60405180910390fd5b6001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000166000908152600560209081526040808320338452909152812080543492906105319084906127db565b90915550506001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000166000908152600660205260408120805434929061057e9084906127db565b925050819055507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663d0e30db0346040518263ffffffff1660e01b81526004016000604051808303818588803b1580156105e057600080fd5b505af11580156105f4573d6000803e3d6000fd5b5050600880547f2c0f148b435140de488c1b34647f1511c646f7077e87007bacf22ef9977a16d8945092509050600061062c836127f3565b90915550604080519182523360208301526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169082015234606082015260800160405180910390a16106866001600055565b565b60006001600160e01b03198216637965db0b60e01b14806106b957506301ffc9a760e01b6001600160e01b03198316145b92915050565b60408051808201909152600d81526c4f50455241544f525f524f4c4560981b6020909101527f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b92961070e8161156c565b6001600160a01b0383166107345760405162461bcd60e51b81526004016104d59061280c565b6001600160a01b03831660009081526003602052604090205482151560ff9091161515036107915760405162461bcd60e51b815260206004820152600a60248201526953414d455f56414c554560b01b60448201526064016104d5565b6001600160a01b038316600081815260036020908152604091829020805460ff19168615159081179091558251938452908301527f2b463d61ebd15caae2de0d061d3348ecb853b4efb6a399093448ec863eb315ef91015b60405180910390a1505050565b6107fe611513565b61080b6060820182612832565b905061081a6040830183612832565b9050146108395760405162461bcd60e51b81526004016104d59061287c565b6004600061084a602084018461262f565b6001600160a01b0316815260208101919091526040016000205460ff166108ac5760405162461bcd60e51b81526020600482015260166024820152751094925111d157d393d517d5d2125511531254d5115160521b60448201526064016104d5565b60006108be604083016020840161262f565b6001600160a01b03160361090d5760405162461bcd60e51b8152602060048201526016602482015275524543495049454e545f5a45524f5f4144445245535360501b60448201526064016104d5565b61094d61091d602083018361262f565b3361092e604085016020860161262f565b61093b6040860186612832565b6109486060880188612832565b611576565b6109576001600055565b50565b600082815260016020819052604090912001546109768161156c565b6109808383611a78565b505050565b6001600160a01b03811633146109f55760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084016104d5565b6109ff8282611ae3565b5050565b60408051808201909152600d81526c4f50455241544f525f524f4c4560981b6020909101527f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b929610a528161156c565b610957611b4a565b610a626114cd565b610a6a611513565b80600003610a8a5760405162461bcd60e51b81526004016104d5906127a0565b6001600160a01b03821660009081526003602052604090205460ff16610aea5760405162461bcd60e51b81526020600482015260156024820152741054d4d15517d393d517d5d2125511531254d51151605a1b60448201526064016104d5565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa158015610b31573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b5591906128a4565b9050610b6c6001600160a01b038416333085611b9c565b6040516370a0823160e01b81523060048201526000906001600160a01b038516906370a0823190602401602060405180830381865afa158015610bb3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bd791906128a4565b90506000610be583836128bd565b6001600160a01b0386166000908152600560209081526040808320338452909152812080549293508392909190610c1d9084906127db565b90915550506001600160a01b03851660009081526006602052604081208054839290610c4a9084906127db565b9091555050600880547f2c0f148b435140de488c1b34647f1511c646f7077e87007bacf22ef9977a16d8916000610c80836127f3565b90915550604080519182523360208301526001600160a01b038816908201526060810183905260800160405180910390a15050506109ff6001600055565b60408051808201909152600d81526c4f50455241544f525f524f4c4560981b6020909101527f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b929610d0d8161156c565b610957611c07565b60009182526001602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6000610d4b8161156c565b6001600160a01b038316610d715760405162461bcd60e51b81526004016104d59061280c565b6001600160a01b03831660009081526004602052604090205482151560ff909116151503610dce5760405162461bcd60e51b815260206004820152600a60248201526953414d455f56414c554560b01b60448201526064016104d5565b6001600160a01b038316600081815260046020908152604091829020805460ff19168615159081179091558251938452908301527f6717c6eff2f701e72ec3244e99f016bf3d884b5915b5fbe855e4e9fd8f2e845391016107e9565b60008281526001602081905260409091200154610e468161156c565b6109808383611ae3565b610e58611513565b828114610e775760405162461bcd60e51b81526004016104d59061287c565b60005b83811015611108576000858583818110610e9657610e966128d4565b9050602002016020810190610eab919061262f565b90506000848484818110610ec157610ec16128d4565b90506020020135905080600003610eea5760405162461bcd60e51b81526004016104d5906127a0565b6001600160a01b0382166000908152600560209081526040808320338452909152902054811115610f545760405162461bcd60e51b8152602060048201526014602482015273494e53554646494349454e545f42414c414e434560601b60448201526064016104d5565b6001600160a01b038216600090815260056020908152604080832033845290915281208054839290610f879084906128bd565b90915550506001600160a01b03821660009081526006602052604081208054839290610fb49084906128bd565b90915550506040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa158015611000573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061102491906128a4565b905061103a6001600160a01b0384163384611c44565b6040516370a0823160e01b81523060048201526000906001600160a01b038516906370a0823190602401602060405180830381865afa158015611081573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110a591906128a4565b9050826110b282846128bd565b146110f15760405162461bcd60e51b815260206004820152600f60248201526e1514905394d1915497d19052531151608a1b60448201526064016104d5565b505050508080611100906127f3565b915050610e7a565b50600880547f8d04027fcc6b389782391c87ffe1fbc8b300720c147b657fc2cd85161fcf2fe991600061113a836127f3565b91905055338686868660405161115596959493929190612967565b60405180910390a16111676001600055565b50505050565b611175611513565b6111826060830183612832565b90506111916040840184612832565b9050146111b05760405162461bcd60e51b81526004016104d59061287c565b600460006111c1602085018561262f565b6001600160a01b0316815260208101919091526040016000205460ff166112235760405162461bcd60e51b81526020600482015260166024820152751094925111d157d393d517d5d2125511531254d5115160521b60448201526064016104d5565b6000611235604084016020850161262f565b6001600160a01b0316036112845760405162461bcd60e51b8152602060048201526016602482015275524543495049454e545f5a45524f5f4144445245535360501b60448201526064016104d5565b42813510156112c95760405162461bcd60e51b815260206004820152601160248201527014d251d3905515549157d1561412549151607a1b60448201526064016104d5565b611448836114017fb254007acbb4fcd4a1fb9092a297c8775b334c561c7d92fc83fcc98fec3165966112fe602087018761262f565b61130e604088016020890161262f565b61131b6040890189612832565b60405160200161132c9291906129b2565b60408051601f19818403018152919052805160209091012061135160608a018a612832565b6040516020016113629291906129f2565b60408051601f1981840301815291815281516020928301206001600160a01b038d1660009081526007909352908220805491928b359291906113a3836127f3565b909155506040805160208101989098526001600160a01b0396871690880152949093166060860152608085019190915260a084015260c083015260e08201526101000160405160208183030381529060405280519060200120611c74565b61140e6020850185612a1e565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611cc292505050565b6114885760405162461bcd60e51b8152602060048201526011602482015270494e56414c49445f5349474e415455524560781b60448201526064016104d5565b6114c3611498602084018461262f565b846114a9604086016020870161262f565b6114b66040870187612832565b6109486060890189612832565b6109806001600055565b60025460ff16156106865760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016104d5565b6002600054036115655760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016104d5565b6002600055565b6109578133611e06565b6001600160a01b03861661159c5760405162461bcd60e51b81526004016104d59061280c565b60008367ffffffffffffffff8111156115b7576115b7612a65565b6040519080825280602002602001820160405280156115e0578160200160208202803683370190505b50905060005b8481101561187e576000868683818110611602576116026128d4565b9050602002016020810190611617919061262f565b9050600085858481811061162d5761162d6128d4565b905060200201359050806000036116565760405162461bcd60e51b81526004016104d5906127a0565b6001600160a01b038083166000908152600560209081526040808320938e16835292905220548111156116c25760405162461bcd60e51b8152602060048201526014602482015273494e53554646494349454e545f42414c414e434560601b60448201526064016104d5565b6001600160a01b038083166000908152600560209081526040808320938e16835292905290812080548392906116f99084906128bd565b90915550506001600160a01b038216600090815260066020526040812080548392906117269084906128bd565b909155505060405163095ea7b360e01b81526001600160a01b038c81166004830152602482018390526000919084169063095ea7b3906044016020604051808303816000875af115801561177e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117a29190612a7b565b9050806117e25760405162461bcd60e51b815260206004820152600e60248201526d1054141493d59157d1905253115160921b60448201526064016104d5565b6040516370a0823160e01b81523060048201526001600160a01b038416906370a0823190602401602060405180830381865afa158015611826573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061184a91906128a4565b85858151811061185c5761185c6128d4565b6020026020010181815250505050508080611876906127f3565b9150506115e6565b50604051633dfd7d5d60e11b81526001600160a01b03891690637bfafaba906118b5908a908a908a908a908a908a90600401612a98565b600060405180830381600087803b1580156118cf57600080fd5b505af11580156118e3573d6000803e3d6000fd5b5050505060005b84811015611a15576000868683818110611906576119066128d4565b905060200201602081019061191b919061262f565b6040516370a0823160e01b81523060048201526001600160a01b0391909116906370a0823190602401602060405180830381865afa158015611961573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061198591906128a4565b9050848483818110611999576119996128d4565b90506020020135818484815181106119b3576119b36128d4565b60200260200101516119c591906128bd565b14611a025760405162461bcd60e51b815260206004820152600d60248201526c1094925111d157d19052531151609a1b60448201526064016104d5565b5080611a0d816127f3565b9150506118ea565b50600880547f053bbe49c9a860acb480c8fd760bb1df9105314e295e445f156549bb27a4436d916000611a47836127f3565b9190505589898989898989604051611a66989796959493929190612ac5565b60405180910390a15050505050505050565b611a828282610d15565b6109ff5760008281526001602081815260408084206001600160a01b0386168086529252808420805460ff19169093179092559051339285917f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d9190a45050565b611aed8282610d15565b156109ff5760008281526001602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b611b52611e5f565b6002805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6040516001600160a01b03808516602483015283166044820152606481018290526111679085906323b872dd60e01b906084015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152611ea8565b611c0f6114cd565b6002805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611b7f3390565b6040516001600160a01b03831660248201526044810182905261098090849063a9059cbb60e01b90606401611bd0565b60006106b9611c81611f7a565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b6000806000611cd185856120a1565b90925090506000816004811115611cea57611cea612b22565b148015611d085750856001600160a01b0316826001600160a01b0316145b15611d1857600192505050611dff565b600080876001600160a01b0316631626ba7e60e01b8888604051602401611d40929190612b90565b60408051601f198184030181529181526020820180516001600160e01b03166001600160e01b0319909416939093179092529051611d7e9190612ba9565b600060405180830381855afa9150503d8060008114611db9576040519150601f19603f3d011682016040523d82523d6000602084013e611dbe565b606091505b5091509150818015611dd1575080516020145b8015611df857508051630b135d3f60e11b90611df690830160209081019084016128a4565b145b9450505050505b9392505050565b611e108282610d15565b6109ff57611e1d816120e6565b611e288360206120f8565b604051602001611e39929190612bc5565b60408051601f198184030181529082905262461bcd60e51b82526104d591600401612c3a565b60025460ff166106865760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016104d5565b6000611efd826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166122949092919063ffffffff16565b8051909150156109805780806020019051810190611f1b9190612a7b565b6109805760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016104d5565b6000306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016148015611fd357507f000000000000000000000000000000000000000000000000000000000000000046145b15611ffd57507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b60008082516041036120d75760208301516040840151606085015160001a6120cb878285856122ab565b945094505050506120df565b506000905060025b9250929050565b60606106b96001600160a01b03831660145b60606000612107836002612c4d565b6121129060026127db565b67ffffffffffffffff81111561212a5761212a612a65565b6040519080825280601f01601f191660200182016040528015612154576020820181803683370190505b509050600360fc1b8160008151811061216f5761216f6128d4565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061219e5761219e6128d4565b60200101906001600160f81b031916908160001a90535060006121c2846002612c4d565b6121cd9060016127db565b90505b6001811115612245576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110612201576122016128d4565b1a60f81b828281518110612217576122176128d4565b60200101906001600160f81b031916908160001a90535060049490941c9361223e81612c6c565b90506121d0565b508315611dff5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016104d5565b60606122a3848460008561236f565b949350505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156122e25750600090506003612366565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612336573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661235f57600060019250925050612366565b9150600090505b94509492505050565b6060824710156123d05760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016104d5565b600080866001600160a01b031685876040516123ec9190612ba9565b60006040518083038185875af1925050503d8060008114612429576040519150601f19603f3d011682016040523d82523d6000602084013e61242e565b606091505b509150915061243f8783838761244a565b979650505050505050565b606083156124b95782516000036124b2576001600160a01b0385163b6124b25760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016104d5565b50816122a3565b6122a383838151156124ce5781518083602001fd5b8060405162461bcd60e51b81526004016104d59190612c3a565b6000602082840312156124fa57600080fd5b81356001600160e01b031981168114611dff57600080fd5b80356001600160a01b038116811461252957600080fd5b919050565b801515811461095757600080fd5b6000806040838503121561254f57600080fd5b61255883612512565b915060208301356125688161252e565b809150509250929050565b60006080828403121561258557600080fd5b50919050565b60006020828403121561259d57600080fd5b813567ffffffffffffffff8111156125b457600080fd5b6122a384828501612573565b6000602082840312156125d257600080fd5b5035919050565b600080604083850312156125ec57600080fd5b823591506125fc60208401612512565b90509250929050565b6000806040838503121561261857600080fd5b61262183612512565b946020939093013593505050565b60006020828403121561264157600080fd5b611dff82612512565b6000806040838503121561265d57600080fd5b61266683612512565b91506125fc60208401612512565b60008083601f84011261268657600080fd5b50813567ffffffffffffffff81111561269e57600080fd5b6020830191508360208260051b85010111156120df57600080fd5b600080600080604085870312156126cf57600080fd5b843567ffffffffffffffff808211156126e757600080fd5b6126f388838901612674565b9096509450602087013591508082111561270c57600080fd5b5061271987828801612674565b95989497509550505050565b60008060006060848603121561273a57600080fd5b61274384612512565b9250602084013567ffffffffffffffff8082111561276057600080fd5b61276c87838801612573565b9350604086013591508082111561278257600080fd5b5084016040818703121561279557600080fd5b809150509250925092565b6020808252600b908201526a16915493d7d05353d5539560aa1b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156127ee576127ee6127c5565b500190565b600060018201612805576128056127c5565b5060010190565b6020808252600c908201526b5a45524f5f4144445245535360a01b604082015260600190565b6000808335601e1984360301811261284957600080fd5b83018035915067ffffffffffffffff82111561286457600080fd5b6020019150600581901b36038213156120df57600080fd5b6020808252600e908201526d0929cac82989288be988a9c8ea8960931b604082015260600190565b6000602082840312156128b657600080fd5b5051919050565b6000828210156128cf576128cf6127c5565b500390565b634e487b7160e01b600052603260045260246000fd5b8183526000602080850194508260005b85811015612926576001600160a01b0361291383612512565b16875295820195908201906001016128fa565b509495945050505050565b81835260006001600160fb1b0383111561294a57600080fd5b8260051b8083602087013760009401602001938452509192915050565b8681526001600160a01b038616602082015260806040820181905260009061299290830186886128ea565b82810360608401526129a5818587612931565b9998505050505050505050565b60008184825b858110156129e7576001600160a01b036129d183612512565b16835260209283019291909101906001016129b8565b509095945050505050565b60006001600160fb1b03831115612a0857600080fd5b8260051b80858437600092019182525092915050565b6000808335601e19843603018112612a3557600080fd5b83018035915067ffffffffffffffff821115612a5057600080fd5b6020019150368190038213156120df57600080fd5b634e487b7160e01b600052604160045260246000fd5b600060208284031215612a8d57600080fd5b8151611dff8161252e565b6001600160a01b0387811682528616602082015260806040820181905260009061299290830186886128ea565b8881526001600160a01b03888116602083015287811660408301528616606082015260c060808201819052600090612b0090830186886128ea565b82810360a0840152612b13818587612931565b9b9a5050505050505050505050565b634e487b7160e01b600052602160045260246000fd5b60005b83811015612b53578181015183820152602001612b3b565b838111156111675750506000910152565b60008151808452612b7c816020860160208601612b38565b601f01601f19169290920160200192915050565b8281526040602082015260006122a36040830184612b64565b60008251612bbb818460208701612b38565b9190910192915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351612bfd816017850160208801612b38565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351612c2e816028840160208801612b38565b01602801949350505050565b602081526000611dff6020830184612b64565b6000816000190483118215151615612c6757612c676127c5565b500290565b600081612c7b57612c7b6127c5565b50600019019056fea2646970667358221220d7007cf285e9f73ba9908de2826d24fd4db06adf18685538a2a772c533f808ae64736f6c634300080e0033000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000455db34c99a866489f3ac63fa2f068c726bc286b
Deployed Bytecode
0x6080604052600436106101445760003560e01c80637ecebe00116100b6578063b203bb991161006f578063b203bb99146103e9578063d40527e514610421578063d547741f14610441578063de6d6d9614610461578063e818ca2914610481578063f6326fb3146104a157600080fd5b80637ecebe00146103125780638456cb591461033f57806391d148541461035457806392dca90614610374578063a217fddf146103a4578063ad9d791d146103b957600080fd5b806336568abe1161010857806336568abe1461022c5780633f4ba83a1461024c5780633fc8cef31461026157806347e7ef24146102ad5780635c975abb146102cd5780636eacd398146102e557600080fd5b806301ffc9a714610158578063057963631461018d578063233e8f50146101ad578063248a9ca3146101cd5780632f2ff15d1461020c57600080fd5b36610153576101516104a5565b005b600080fd5b34801561016457600080fd5b506101786101733660046124e8565b610688565b60405190151581526020015b60405180910390f35b34801561019957600080fd5b506101516101a836600461253c565b6106bf565b3480156101b957600080fd5b506101516101c836600461258b565b6107f6565b3480156101d957600080fd5b506101fe6101e83660046125c0565b6000908152600160208190526040909120015490565b604051908152602001610184565b34801561021857600080fd5b506101516102273660046125d9565b61095a565b34801561023857600080fd5b506101516102473660046125d9565b610985565b34801561025857600080fd5b50610151610a03565b34801561026d57600080fd5b506102957f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b6040516001600160a01b039091168152602001610184565b3480156102b957600080fd5b506101516102c8366004612605565b610a5a565b3480156102d957600080fd5b5060025460ff16610178565b3480156102f157600080fd5b506101fe61030036600461262f565b60066020526000908152604090205481565b34801561031e57600080fd5b506101fe61032d36600461262f565b60076020526000908152604090205481565b34801561034b57600080fd5b50610151610cbe565b34801561036057600080fd5b5061017861036f3660046125d9565b610d15565b34801561038057600080fd5b5061017861038f36600461262f565b60046020526000908152604090205460ff1681565b3480156103b057600080fd5b506101fe600081565b3480156103c557600080fd5b506101786103d436600461262f565b60036020526000908152604090205460ff1681565b3480156103f557600080fd5b506101fe61040436600461264a565b600560209081526000928352604080842090915290825290205481565b34801561042d57600080fd5b5061015161043c36600461253c565b610d40565b34801561044d57600080fd5b5061015161045c3660046125d9565b610e2a565b34801561046d57600080fd5b5061015161047c3660046126b9565b610e50565b34801561048d57600080fd5b5061015161049c366004612725565b61116d565b6101515b6104ad6114cd565b6104b5611513565b346000036104de5760405162461bcd60e51b81526004016104d5906127a0565b60405180910390fd5b6001600160a01b037f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2166000908152600560209081526040808320338452909152812080543492906105319084906127db565b90915550506001600160a01b037f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2166000908152600660205260408120805434929061057e9084906127db565b925050819055507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b031663d0e30db0346040518263ffffffff1660e01b81526004016000604051808303818588803b1580156105e057600080fd5b505af11580156105f4573d6000803e3d6000fd5b5050600880547f2c0f148b435140de488c1b34647f1511c646f7077e87007bacf22ef9977a16d8945092509050600061062c836127f3565b90915550604080519182523360208301526001600160a01b037f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2169082015234606082015260800160405180910390a16106866001600055565b565b60006001600160e01b03198216637965db0b60e01b14806106b957506301ffc9a760e01b6001600160e01b03198316145b92915050565b60408051808201909152600d81526c4f50455241544f525f524f4c4560981b6020909101527f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b92961070e8161156c565b6001600160a01b0383166107345760405162461bcd60e51b81526004016104d59061280c565b6001600160a01b03831660009081526003602052604090205482151560ff9091161515036107915760405162461bcd60e51b815260206004820152600a60248201526953414d455f56414c554560b01b60448201526064016104d5565b6001600160a01b038316600081815260036020908152604091829020805460ff19168615159081179091558251938452908301527f2b463d61ebd15caae2de0d061d3348ecb853b4efb6a399093448ec863eb315ef91015b60405180910390a1505050565b6107fe611513565b61080b6060820182612832565b905061081a6040830183612832565b9050146108395760405162461bcd60e51b81526004016104d59061287c565b6004600061084a602084018461262f565b6001600160a01b0316815260208101919091526040016000205460ff166108ac5760405162461bcd60e51b81526020600482015260166024820152751094925111d157d393d517d5d2125511531254d5115160521b60448201526064016104d5565b60006108be604083016020840161262f565b6001600160a01b03160361090d5760405162461bcd60e51b8152602060048201526016602482015275524543495049454e545f5a45524f5f4144445245535360501b60448201526064016104d5565b61094d61091d602083018361262f565b3361092e604085016020860161262f565b61093b6040860186612832565b6109486060880188612832565b611576565b6109576001600055565b50565b600082815260016020819052604090912001546109768161156c565b6109808383611a78565b505050565b6001600160a01b03811633146109f55760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084016104d5565b6109ff8282611ae3565b5050565b60408051808201909152600d81526c4f50455241544f525f524f4c4560981b6020909101527f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b929610a528161156c565b610957611b4a565b610a626114cd565b610a6a611513565b80600003610a8a5760405162461bcd60e51b81526004016104d5906127a0565b6001600160a01b03821660009081526003602052604090205460ff16610aea5760405162461bcd60e51b81526020600482015260156024820152741054d4d15517d393d517d5d2125511531254d51151605a1b60448201526064016104d5565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa158015610b31573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b5591906128a4565b9050610b6c6001600160a01b038416333085611b9c565b6040516370a0823160e01b81523060048201526000906001600160a01b038516906370a0823190602401602060405180830381865afa158015610bb3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bd791906128a4565b90506000610be583836128bd565b6001600160a01b0386166000908152600560209081526040808320338452909152812080549293508392909190610c1d9084906127db565b90915550506001600160a01b03851660009081526006602052604081208054839290610c4a9084906127db565b9091555050600880547f2c0f148b435140de488c1b34647f1511c646f7077e87007bacf22ef9977a16d8916000610c80836127f3565b90915550604080519182523360208301526001600160a01b038816908201526060810183905260800160405180910390a15050506109ff6001600055565b60408051808201909152600d81526c4f50455241544f525f524f4c4560981b6020909101527f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b929610d0d8161156c565b610957611c07565b60009182526001602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6000610d4b8161156c565b6001600160a01b038316610d715760405162461bcd60e51b81526004016104d59061280c565b6001600160a01b03831660009081526004602052604090205482151560ff909116151503610dce5760405162461bcd60e51b815260206004820152600a60248201526953414d455f56414c554560b01b60448201526064016104d5565b6001600160a01b038316600081815260046020908152604091829020805460ff19168615159081179091558251938452908301527f6717c6eff2f701e72ec3244e99f016bf3d884b5915b5fbe855e4e9fd8f2e845391016107e9565b60008281526001602081905260409091200154610e468161156c565b6109808383611ae3565b610e58611513565b828114610e775760405162461bcd60e51b81526004016104d59061287c565b60005b83811015611108576000858583818110610e9657610e966128d4565b9050602002016020810190610eab919061262f565b90506000848484818110610ec157610ec16128d4565b90506020020135905080600003610eea5760405162461bcd60e51b81526004016104d5906127a0565b6001600160a01b0382166000908152600560209081526040808320338452909152902054811115610f545760405162461bcd60e51b8152602060048201526014602482015273494e53554646494349454e545f42414c414e434560601b60448201526064016104d5565b6001600160a01b038216600090815260056020908152604080832033845290915281208054839290610f879084906128bd565b90915550506001600160a01b03821660009081526006602052604081208054839290610fb49084906128bd565b90915550506040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa158015611000573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061102491906128a4565b905061103a6001600160a01b0384163384611c44565b6040516370a0823160e01b81523060048201526000906001600160a01b038516906370a0823190602401602060405180830381865afa158015611081573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110a591906128a4565b9050826110b282846128bd565b146110f15760405162461bcd60e51b815260206004820152600f60248201526e1514905394d1915497d19052531151608a1b60448201526064016104d5565b505050508080611100906127f3565b915050610e7a565b50600880547f8d04027fcc6b389782391c87ffe1fbc8b300720c147b657fc2cd85161fcf2fe991600061113a836127f3565b91905055338686868660405161115596959493929190612967565b60405180910390a16111676001600055565b50505050565b611175611513565b6111826060830183612832565b90506111916040840184612832565b9050146111b05760405162461bcd60e51b81526004016104d59061287c565b600460006111c1602085018561262f565b6001600160a01b0316815260208101919091526040016000205460ff166112235760405162461bcd60e51b81526020600482015260166024820152751094925111d157d393d517d5d2125511531254d5115160521b60448201526064016104d5565b6000611235604084016020850161262f565b6001600160a01b0316036112845760405162461bcd60e51b8152602060048201526016602482015275524543495049454e545f5a45524f5f4144445245535360501b60448201526064016104d5565b42813510156112c95760405162461bcd60e51b815260206004820152601160248201527014d251d3905515549157d1561412549151607a1b60448201526064016104d5565b611448836114017fb254007acbb4fcd4a1fb9092a297c8775b334c561c7d92fc83fcc98fec3165966112fe602087018761262f565b61130e604088016020890161262f565b61131b6040890189612832565b60405160200161132c9291906129b2565b60408051601f19818403018152919052805160209091012061135160608a018a612832565b6040516020016113629291906129f2565b60408051601f1981840301815291815281516020928301206001600160a01b038d1660009081526007909352908220805491928b359291906113a3836127f3565b909155506040805160208101989098526001600160a01b0396871690880152949093166060860152608085019190915260a084015260c083015260e08201526101000160405160208183030381529060405280519060200120611c74565b61140e6020850185612a1e565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611cc292505050565b6114885760405162461bcd60e51b8152602060048201526011602482015270494e56414c49445f5349474e415455524560781b60448201526064016104d5565b6114c3611498602084018461262f565b846114a9604086016020870161262f565b6114b66040870187612832565b6109486060890189612832565b6109806001600055565b60025460ff16156106865760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016104d5565b6002600054036115655760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016104d5565b6002600055565b6109578133611e06565b6001600160a01b03861661159c5760405162461bcd60e51b81526004016104d59061280c565b60008367ffffffffffffffff8111156115b7576115b7612a65565b6040519080825280602002602001820160405280156115e0578160200160208202803683370190505b50905060005b8481101561187e576000868683818110611602576116026128d4565b9050602002016020810190611617919061262f565b9050600085858481811061162d5761162d6128d4565b905060200201359050806000036116565760405162461bcd60e51b81526004016104d5906127a0565b6001600160a01b038083166000908152600560209081526040808320938e16835292905220548111156116c25760405162461bcd60e51b8152602060048201526014602482015273494e53554646494349454e545f42414c414e434560601b60448201526064016104d5565b6001600160a01b038083166000908152600560209081526040808320938e16835292905290812080548392906116f99084906128bd565b90915550506001600160a01b038216600090815260066020526040812080548392906117269084906128bd565b909155505060405163095ea7b360e01b81526001600160a01b038c81166004830152602482018390526000919084169063095ea7b3906044016020604051808303816000875af115801561177e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117a29190612a7b565b9050806117e25760405162461bcd60e51b815260206004820152600e60248201526d1054141493d59157d1905253115160921b60448201526064016104d5565b6040516370a0823160e01b81523060048201526001600160a01b038416906370a0823190602401602060405180830381865afa158015611826573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061184a91906128a4565b85858151811061185c5761185c6128d4565b6020026020010181815250505050508080611876906127f3565b9150506115e6565b50604051633dfd7d5d60e11b81526001600160a01b03891690637bfafaba906118b5908a908a908a908a908a908a90600401612a98565b600060405180830381600087803b1580156118cf57600080fd5b505af11580156118e3573d6000803e3d6000fd5b5050505060005b84811015611a15576000868683818110611906576119066128d4565b905060200201602081019061191b919061262f565b6040516370a0823160e01b81523060048201526001600160a01b0391909116906370a0823190602401602060405180830381865afa158015611961573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061198591906128a4565b9050848483818110611999576119996128d4565b90506020020135818484815181106119b3576119b36128d4565b60200260200101516119c591906128bd565b14611a025760405162461bcd60e51b815260206004820152600d60248201526c1094925111d157d19052531151609a1b60448201526064016104d5565b5080611a0d816127f3565b9150506118ea565b50600880547f053bbe49c9a860acb480c8fd760bb1df9105314e295e445f156549bb27a4436d916000611a47836127f3565b9190505589898989898989604051611a66989796959493929190612ac5565b60405180910390a15050505050505050565b611a828282610d15565b6109ff5760008281526001602081815260408084206001600160a01b0386168086529252808420805460ff19169093179092559051339285917f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d9190a45050565b611aed8282610d15565b156109ff5760008281526001602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b611b52611e5f565b6002805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6040516001600160a01b03808516602483015283166044820152606481018290526111679085906323b872dd60e01b906084015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152611ea8565b611c0f6114cd565b6002805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611b7f3390565b6040516001600160a01b03831660248201526044810182905261098090849063a9059cbb60e01b90606401611bd0565b60006106b9611c81611f7a565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b6000806000611cd185856120a1565b90925090506000816004811115611cea57611cea612b22565b148015611d085750856001600160a01b0316826001600160a01b0316145b15611d1857600192505050611dff565b600080876001600160a01b0316631626ba7e60e01b8888604051602401611d40929190612b90565b60408051601f198184030181529181526020820180516001600160e01b03166001600160e01b0319909416939093179092529051611d7e9190612ba9565b600060405180830381855afa9150503d8060008114611db9576040519150601f19603f3d011682016040523d82523d6000602084013e611dbe565b606091505b5091509150818015611dd1575080516020145b8015611df857508051630b135d3f60e11b90611df690830160209081019084016128a4565b145b9450505050505b9392505050565b611e108282610d15565b6109ff57611e1d816120e6565b611e288360206120f8565b604051602001611e39929190612bc5565b60408051601f198184030181529082905262461bcd60e51b82526104d591600401612c3a565b60025460ff166106865760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016104d5565b6000611efd826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166122949092919063ffffffff16565b8051909150156109805780806020019051810190611f1b9190612a7b565b6109805760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016104d5565b6000306001600160a01b037f00000000000000000000000018eed20f71bef84b605253c89a7576e3634134c016148015611fd357507f000000000000000000000000000000000000000000000000000000000000000146145b15611ffd57507f50b8aa4b7fb919b87a1c9fc4042507740ad84ff9a707e536e01fd38080012cb090565b50604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6020808301919091527f82a2eea815f96b0b8be5b87bc1dbeaf3b13a08a6f60561dd7c9a50868e764fe3828401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b60008082516041036120d75760208301516040840151606085015160001a6120cb878285856122ab565b945094505050506120df565b506000905060025b9250929050565b60606106b96001600160a01b03831660145b60606000612107836002612c4d565b6121129060026127db565b67ffffffffffffffff81111561212a5761212a612a65565b6040519080825280601f01601f191660200182016040528015612154576020820181803683370190505b509050600360fc1b8160008151811061216f5761216f6128d4565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061219e5761219e6128d4565b60200101906001600160f81b031916908160001a90535060006121c2846002612c4d565b6121cd9060016127db565b90505b6001811115612245576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110612201576122016128d4565b1a60f81b828281518110612217576122176128d4565b60200101906001600160f81b031916908160001a90535060049490941c9361223e81612c6c565b90506121d0565b508315611dff5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016104d5565b60606122a3848460008561236f565b949350505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156122e25750600090506003612366565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612336573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661235f57600060019250925050612366565b9150600090505b94509492505050565b6060824710156123d05760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016104d5565b600080866001600160a01b031685876040516123ec9190612ba9565b60006040518083038185875af1925050503d8060008114612429576040519150601f19603f3d011682016040523d82523d6000602084013e61242e565b606091505b509150915061243f8783838761244a565b979650505050505050565b606083156124b95782516000036124b2576001600160a01b0385163b6124b25760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016104d5565b50816122a3565b6122a383838151156124ce5781518083602001fd5b8060405162461bcd60e51b81526004016104d59190612c3a565b6000602082840312156124fa57600080fd5b81356001600160e01b031981168114611dff57600080fd5b80356001600160a01b038116811461252957600080fd5b919050565b801515811461095757600080fd5b6000806040838503121561254f57600080fd5b61255883612512565b915060208301356125688161252e565b809150509250929050565b60006080828403121561258557600080fd5b50919050565b60006020828403121561259d57600080fd5b813567ffffffffffffffff8111156125b457600080fd5b6122a384828501612573565b6000602082840312156125d257600080fd5b5035919050565b600080604083850312156125ec57600080fd5b823591506125fc60208401612512565b90509250929050565b6000806040838503121561261857600080fd5b61262183612512565b946020939093013593505050565b60006020828403121561264157600080fd5b611dff82612512565b6000806040838503121561265d57600080fd5b61266683612512565b91506125fc60208401612512565b60008083601f84011261268657600080fd5b50813567ffffffffffffffff81111561269e57600080fd5b6020830191508360208260051b85010111156120df57600080fd5b600080600080604085870312156126cf57600080fd5b843567ffffffffffffffff808211156126e757600080fd5b6126f388838901612674565b9096509450602087013591508082111561270c57600080fd5b5061271987828801612674565b95989497509550505050565b60008060006060848603121561273a57600080fd5b61274384612512565b9250602084013567ffffffffffffffff8082111561276057600080fd5b61276c87838801612573565b9350604086013591508082111561278257600080fd5b5084016040818703121561279557600080fd5b809150509250925092565b6020808252600b908201526a16915493d7d05353d5539560aa1b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156127ee576127ee6127c5565b500190565b600060018201612805576128056127c5565b5060010190565b6020808252600c908201526b5a45524f5f4144445245535360a01b604082015260600190565b6000808335601e1984360301811261284957600080fd5b83018035915067ffffffffffffffff82111561286457600080fd5b6020019150600581901b36038213156120df57600080fd5b6020808252600e908201526d0929cac82989288be988a9c8ea8960931b604082015260600190565b6000602082840312156128b657600080fd5b5051919050565b6000828210156128cf576128cf6127c5565b500390565b634e487b7160e01b600052603260045260246000fd5b8183526000602080850194508260005b85811015612926576001600160a01b0361291383612512565b16875295820195908201906001016128fa565b509495945050505050565b81835260006001600160fb1b0383111561294a57600080fd5b8260051b8083602087013760009401602001938452509192915050565b8681526001600160a01b038616602082015260806040820181905260009061299290830186886128ea565b82810360608401526129a5818587612931565b9998505050505050505050565b60008184825b858110156129e7576001600160a01b036129d183612512565b16835260209283019291909101906001016129b8565b509095945050505050565b60006001600160fb1b03831115612a0857600080fd5b8260051b80858437600092019182525092915050565b6000808335601e19843603018112612a3557600080fd5b83018035915067ffffffffffffffff821115612a5057600080fd5b6020019150368190038213156120df57600080fd5b634e487b7160e01b600052604160045260246000fd5b600060208284031215612a8d57600080fd5b8151611dff8161252e565b6001600160a01b0387811682528616602082015260806040820181905260009061299290830186886128ea565b8881526001600160a01b03888116602083015287811660408301528616606082015260c060808201819052600090612b0090830186886128ea565b82810360a0840152612b13818587612931565b9b9a5050505050505050505050565b634e487b7160e01b600052602160045260246000fd5b60005b83811015612b53578181015183820152602001612b3b565b838111156111675750506000910152565b60008151808452612b7c816020860160208601612b38565b601f01601f19169290920160200192915050565b8281526040602082015260006122a36040830184612b64565b60008251612bbb818460208701612b38565b9190910192915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351612bfd816017850160208801612b38565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351612c2e816028840160208801612b38565b01602801949350505050565b602081526000611dff6020830184612b64565b6000816000190483118215151615612c6757612c676127c5565b500290565b600081612c7b57612c7b6127c5565b50600019019056fea2646970667358221220d7007cf285e9f73ba9908de2826d24fd4db06adf18685538a2a772c533f808ae64736f6c634300080e0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000455db34c99a866489f3ac63fa2f068c726bc286b
-----Decoded View---------------
Arg [0] : _weth (address): 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2
Arg [1] : owner (address): 0x455DB34c99A866489F3ac63fa2F068c726BC286b
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Arg [1] : 000000000000000000000000455db34c99a866489f3ac63fa2f068c726bc286b
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ 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.