Overview
ETH Balance
3.02 ETH
Eth Value
$10,965.61 (@ $3,631.00/ETH)Token Holdings
More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 2,215 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Feed | 21230015 | 12 days ago | IN | 0 ETH | 0.00084436 | ||||
Feed | 20719482 | 83 days ago | IN | 0 ETH | 0.00014056 | ||||
Feed | 20685443 | 88 days ago | IN | 0 ETH | 0.00014052 | ||||
Transfer | 20435257 | 122 days ago | IN | 2.5 ETH | 0.0003037 | ||||
Feed | 20429381 | 123 days ago | IN | 0 ETH | 0.00028105 | ||||
Feed | 20429379 | 123 days ago | IN | 0 ETH | 0.00028112 | ||||
Feed | 20427591 | 124 days ago | IN | 0 ETH | 0.00168989 | ||||
Feed | 20427590 | 124 days ago | IN | 0 ETH | 0.00169012 | ||||
Transfer | 19834019 | 206 days ago | IN | 2.5 ETH | 0.00011242 | ||||
Feed | 19580669 | 242 days ago | IN | 0 ETH | 0.00089127 | ||||
Transfer | 19419873 | 265 days ago | IN | 2 ETH | 0.0018601 | ||||
Feed | 19412510 | 266 days ago | IN | 0 ETH | 0.00407629 | ||||
Feed | 19411316 | 266 days ago | IN | 0 ETH | 0.00342034 | ||||
Feed | 19385141 | 269 days ago | IN | 0 ETH | 0.00388888 | ||||
Feed | 19384905 | 269 days ago | IN | 0 ETH | 0.0046854 | ||||
Feed | 19383353 | 270 days ago | IN | 0 ETH | 0.00551514 | ||||
Feed | 19383351 | 270 days ago | IN | 0 ETH | 0.00595991 | ||||
Feed | 18834595 | 347 days ago | IN | 0 ETH | 0.00192101 | ||||
Transfer | 18834041 | 347 days ago | IN | 3 ETH | 0.00074182 | ||||
Feed | 18833130 | 347 days ago | IN | 0 ETH | 0.00299865 | ||||
Feed | 18435933 | 402 days ago | IN | 0 ETH | 0.00187416 | ||||
Transfer | 18378186 | 411 days ago | IN | 1 ETH | 0.00019377 | ||||
Transfer | 18378184 | 411 days ago | IN | 1 ETH | 0.000273 | ||||
Transfer | 18378182 | 411 days ago | IN | 1 ETH | 0.000273 | ||||
Transfer | 18378179 | 411 days ago | IN | 1 ETH | 0.000273 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
21230015 | 12 days ago | 0.5 ETH | ||||
20719482 | 83 days ago | 0.5 ETH | ||||
20685443 | 88 days ago | 0.5 ETH | ||||
20429381 | 123 days ago | 0.5 ETH | ||||
20429379 | 123 days ago | 0.5 ETH | ||||
20427591 | 124 days ago | 0.5 ETH | ||||
20427590 | 124 days ago | 0.5 ETH | ||||
19580669 | 242 days ago | 0.5 ETH | ||||
19412510 | 266 days ago | 0.5 ETH | ||||
19411316 | 266 days ago | 0.5 ETH | ||||
19385141 | 269 days ago | 0.5 ETH | ||||
19384905 | 269 days ago | 0.5 ETH | ||||
19383353 | 270 days ago | 0.5 ETH | ||||
19383351 | 270 days ago | 0.5 ETH | ||||
18834595 | 347 days ago | 0.5 ETH | ||||
18833130 | 347 days ago | 0.5 ETH | ||||
18435933 | 402 days ago | 0.5 ETH | ||||
18373128 | 411 days ago | 0.5 ETH | ||||
18371637 | 411 days ago | 0.5 ETH | ||||
17843758 | 485 days ago | 0.5 ETH | ||||
17815138 | 489 days ago | 0.5 ETH | ||||
17813644 | 490 days ago | 0.5 ETH | ||||
17794284 | 492 days ago | 0.5 ETH | ||||
17429437 | 544 days ago | 0.5 ETH | ||||
17387497 | 549 days ago | 0.5 ETH |
Loading...
Loading
Contract Name:
GasMother
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-03-02 */ // Dependency file: @openzeppelin/contracts/access/IAccessControl.sol // 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; } // Dependency file: @openzeppelin/contracts/access/IAccessControlEnumerable.sol // OpenZeppelin Contracts v4.4.1 (access/IAccessControlEnumerable.sol) // pragma solidity ^0.8.0; // import "@openzeppelin/contracts/access/IAccessControl.sol"; /** * @dev External interface of AccessControlEnumerable declared to support ERC165 detection. */ interface IAccessControlEnumerable is IAccessControl { /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) external view returns (address); /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) external view returns (uint256); } // Dependency file: @openzeppelin/contracts/utils/Context.sol // 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; } } // Dependency file: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) // pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_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) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @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); } } // Dependency file: @openzeppelin/contracts/utils/introspection/IERC165.sol // 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); } // Dependency file: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) // pragma solidity ^0.8.0; // import "@openzeppelin/contracts/utils/introspection/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; } } // Dependency file: @openzeppelin/contracts/access/AccessControl.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/AccessControl.sol) // pragma solidity ^0.8.0; // import "@openzeppelin/contracts/access/IAccessControl.sol"; // import "@openzeppelin/contracts/utils/Context.sol"; // import "@openzeppelin/contracts/utils/Strings.sol"; // import "@openzeppelin/contracts/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(uint160(account), 20), " 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()); } } } // Dependency file: @openzeppelin/contracts/utils/structs/EnumerableSet.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/structs/EnumerableSet.sol) // pragma solidity ^0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. * * [WARNING] * ==== * Trying to delete such a structure from storage will likely result in data corruption, rendering the structure unusable. * See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info. * * In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an array of EnumerableSet. * ==== */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; if (lastIndex != toDeleteIndex) { bytes32 lastValue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastValue; // Update the index for the moved value set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex } // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { return _values(set._inner); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } } // Dependency file: @openzeppelin/contracts/access/AccessControlEnumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControlEnumerable.sol) // pragma solidity ^0.8.0; // import "@openzeppelin/contracts/access/IAccessControlEnumerable.sol"; // import "@openzeppelin/contracts/access/AccessControl.sol"; // import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol"; /** * @dev Extension of {AccessControl} that allows enumerating the members of each role. */ abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl { using EnumerableSet for EnumerableSet.AddressSet; mapping(bytes32 => EnumerableSet.AddressSet) private _roleMembers; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControlEnumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) public view virtual override returns (address) { return _roleMembers[role].at(index); } /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) public view virtual override returns (uint256) { return _roleMembers[role].length(); } /** * @dev Overload {_grantRole} to track enumerable memberships */ function _grantRole(bytes32 role, address account) internal virtual override { super._grantRole(role, account); _roleMembers[role].add(account); } /** * @dev Overload {_revokeRole} to track enumerable memberships */ function _revokeRole(bytes32 role, address account) internal virtual override { super._revokeRole(role, account); _roleMembers[role].remove(account); } } // Root file: contracts/GasMother.sol pragma solidity 0.8.17; // import {AccessControlEnumerable} from "@openzeppelin/contracts/access/AccessControlEnumerable.sol"; contract GasMother is AccessControlEnumerable { bytes32 public constant CHILD_ROLE = keccak256("CHILD_ROLE"); uint256 public amount; uint256 public threshold; uint256 public cooldown; mapping(address => uint256) public lastFeedTime; event ChildFed(address child, uint256 amount); event Configured(uint256 amount, uint256 threshold, uint256 cooldown); event Rugpulled(address admin, uint256 amount); constructor(uint256 _amount, uint256 _threshold, uint256 _cooldown) { _grantRole(DEFAULT_ADMIN_ROLE, msg.sender); configure(_amount, _threshold, _cooldown); } function canFeed(address child) public view returns (bool) { return child.balance < threshold && block.timestamp > lastFeedTime[child] + cooldown; } function feed(address child) external { _checkRole(CHILD_ROLE, child); require(canFeed(child), "GasMother: Cannot feed child"); lastFeedTime[child] = block.timestamp; emit ChildFed(child, amount); _transferEth(child, amount); } function configure(uint256 _amount, uint256 _threshold, uint256 _cooldown) public { _checkRole(DEFAULT_ADMIN_ROLE); amount = _amount; threshold = _threshold; cooldown = _cooldown; emit Configured(_amount, _threshold, _cooldown); } function rugpull() external { _checkRole(DEFAULT_ADMIN_ROLE); uint256 thisBalance = address(this).balance; emit Rugpulled(msg.sender, thisBalance); _transferEth(msg.sender, thisBalance); } function _transferEth(address to, uint256 _amount) internal { (bool sent, ) = to.call{value: _amount}(""); require(sent, "Failed to send Ether"); } receive() external payable {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_threshold","type":"uint256"},{"internalType":"uint256","name":"_cooldown","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"child","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ChildFed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"threshold","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"cooldown","type":"uint256"}],"name":"Configured","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":"admin","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Rugpulled","type":"event"},{"inputs":[],"name":"CHILD_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"child","type":"address"}],"name":"canFeed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_threshold","type":"uint256"},{"internalType":"uint256","name":"_cooldown","type":"uint256"}],"name":"configure","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cooldown","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"child","type":"address"}],"name":"feed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"lastFeedTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"rugpull","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":[],"name":"threshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620015343803806200153483398101604081905262000034916200047a565b6200004160003362000057565b6200004e8383836200009a565b50505062000609565b6200006e8282620000fb60201b620006c71760201c565b6000828152600160209081526040909120620000959183906200074b6200019c821b17901c565b505050565b620000a66000620001bc565b60028390556003829055600481905560408051848152602081018490529081018290527f0ba31b8aa01604da9e792013cbb790899e203d496cae57a3b0d224e26be452ae9060600160405180910390a1505050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff1662000198576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055620001573390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000620001b3836001600160a01b038416620001cb565b90505b92915050565b620001c881336200021d565b50565b60008181526001830160205260408120546200021457508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155620001b6565b506000620001b6565b6000828152602081815260408083206001600160a01b038516845290915290205460ff16620001985762000267816001600160a01b03166014620002c160201b620007601760201c565b6200027d83602062000760620002c1821b17811c565b60405160200162000290929190620004cf565b60408051601f198184030181529082905262461bcd60e51b8252620002b89160040162000548565b60405180910390fd5b60606000620002d283600262000593565b620002df906002620005ad565b6001600160401b03811115620002f957620002f9620005c3565b6040519080825280601f01601f19166020018201604052801562000324576020820181803683370190505b509050600360fc1b81600081518110620003425762000342620005d9565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110620003745762000374620005d9565b60200101906001600160f81b031916908160001a90535060006200039a84600262000593565b620003a7906001620005ad565b90505b600181111562000429576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110620003df57620003df620005d9565b1a60f81b828281518110620003f857620003f8620005d9565b60200101906001600160f81b031916908160001a90535060049490941c936200042181620005ef565b9050620003aa565b508315620001b35760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401620002b8565b6000806000606084860312156200049057600080fd5b8351925060208401519150604084015190509250925092565b60005b83811015620004c6578181015183820152602001620004ac565b50506000910152565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835162000509816017850160208801620004a9565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516200053c816028840160208801620004a9565b01602801949350505050565b602081526000825180602084015262000569816040850160208701620004a9565b601f01601f19169190910160400192915050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620001b657620001b66200057d565b80820180821115620001b657620001b66200057d565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6000816200060157620006016200057d565b506000190190565b610f1b80620006196000396000f3fe60806040526004361061010d5760003560e01c806391d1485411610095578063ca15c87311610064578063ca15c873146102ea578063d547741f1461030a578063dd8c7d2b1461032a578063e2664e491461034a578063f264a6691461035f57600080fd5b806391d148541461027f578063a217fddf1461029f578063aa8c217c146102b4578063c6a5877a146102ca57600080fd5b80632f2ff15d116100dc5780632f2ff15d146101d957806336568abe146101fb57806342cde4e81461021b578063787a08a6146102315780639010d07c1461024757600080fd5b806301ffc9a71461011957806309af55441461014e5780630fd3d9ee14610189578063248a9ca3146101a957600080fd5b3661011457005b600080fd5b34801561012557600080fd5b50610139610134366004610c79565b610393565b60405190151581526020015b60405180910390f35b34801561015a57600080fd5b5061017b610169366004610cbf565b60056020526000908152604090205481565b604051908152602001610145565b34801561019557600080fd5b506101396101a4366004610cbf565b6103be565b3480156101b557600080fd5b5061017b6101c4366004610cda565b60009081526020819052604090206001015490565b3480156101e557600080fd5b506101f96101f4366004610cf3565b610404565b005b34801561020757600080fd5b506101f9610216366004610cf3565b61042e565b34801561022757600080fd5b5061017b60035481565b34801561023d57600080fd5b5061017b60045481565b34801561025357600080fd5b50610267610262366004610d1f565b6104b1565b6040516001600160a01b039091168152602001610145565b34801561028b57600080fd5b5061013961029a366004610cf3565b6104d0565b3480156102ab57600080fd5b5061017b600081565b3480156102c057600080fd5b5061017b60025481565b3480156102d657600080fd5b506101f96102e5366004610cbf565b6104f9565b3480156102f657600080fd5b5061017b610305366004610cda565b6105dd565b34801561031657600080fd5b506101f9610325366004610cf3565b6105f4565b34801561033657600080fd5b506101f9610345366004610d41565b610619565b34801561035657600080fd5b506101f9610678565b34801561036b57600080fd5b5061017b7f1259e29d9bae6d985de2aa88464bb648989ed5ed903940f680996ff13d0578bf81565b60006001600160e01b03198216635a05180f60e01b14806103b857506103b8826108fc565b92915050565b6000600354826001600160a01b0316311080156103b857506004546001600160a01b0383166000908152600560205260409020546103fc9190610d83565b421192915050565b60008281526020819052604090206001015461041f81610931565b610429838361093b565b505050565b6001600160a01b03811633146104a35760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084015b60405180910390fd5b6104ad828261095d565b5050565b60008281526001602052604081206104c9908361097f565b9392505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b6105237f1259e29d9bae6d985de2aa88464bb648989ed5ed903940f680996ff13d0578bf8261098b565b61052c816103be565b6105785760405162461bcd60e51b815260206004820152601c60248201527f4761734d6f746865723a2043616e6e6f742066656564206368696c6400000000604482015260640161049a565b6001600160a01b0381166000818152600560209081526040918290204290556002548251938452908301527f47a70aae748f43baf81234c0cafff4d7672283248f68a58f1c4584a813fcccd8910160405180910390a16105da816002546109ef565b50565b60008181526001602052604081206103b890610a89565b60008281526020819052604090206001015461060f81610931565b610429838361095d565b6106236000610931565b60028390556003829055600481905560408051848152602081018490529081018290527f0ba31b8aa01604da9e792013cbb790899e203d496cae57a3b0d224e26be452ae9060600160405180910390a1505050565b6106826000610931565b604080513381524760208201819052917f735ea32889cdbd158f1567b0cd7aa78f33720b6b26688dab1bda3aee339dd70e910160405180910390a16105da33826109ef565b6106d182826104d0565b6104ad576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556107073390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60006104c9836001600160a01b038416610a93565b6060600061076f836002610d96565b61077a906002610d83565b67ffffffffffffffff81111561079257610792610dad565b6040519080825280601f01601f1916602001820160405280156107bc576020820181803683370190505b509050600360fc1b816000815181106107d7576107d7610dc3565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061080657610806610dc3565b60200101906001600160f81b031916908160001a905350600061082a846002610d96565b610835906001610d83565b90505b60018111156108ad576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061086957610869610dc3565b1a60f81b82828151811061087f5761087f610dc3565b60200101906001600160f81b031916908160001a90535060049490941c936108a681610dd9565b9050610838565b5083156104c95760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161049a565b60006001600160e01b03198216637965db0b60e01b14806103b857506301ffc9a760e01b6001600160e01b03198316146103b8565b6105da813361098b565b61094582826106c7565b6000828152600160205260409020610429908261074b565b6109678282610ae2565b60008281526001602052604090206104299082610b47565b60006104c98383610b5c565b61099582826104d0565b6104ad576109ad816001600160a01b03166014610760565b6109b8836020610760565b6040516020016109c9929190610e14565b60408051601f198184030181529082905262461bcd60e51b825261049a91600401610e89565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114610a3c576040519150601f19603f3d011682016040523d82523d6000602084013e610a41565b606091505b50509050806104295760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321022ba3432b960611b604482015260640161049a565b60006103b8825490565b6000818152600183016020526040812054610ada575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556103b8565b5060006103b8565b610aec82826104d0565b156104ad576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60006104c9836001600160a01b038416610b86565b6000826000018281548110610b7357610b73610dc3565b9060005260206000200154905092915050565b60008181526001830160205260408120548015610c6f576000610baa600183610ebc565b8554909150600090610bbe90600190610ebc565b9050818114610c23576000866000018281548110610bde57610bde610dc3565b9060005260206000200154905080876000018481548110610c0157610c01610dc3565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080610c3457610c34610ecf565b6001900381819060005260206000200160009055905585600101600086815260200190815260200160002060009055600193505050506103b8565b60009150506103b8565b600060208284031215610c8b57600080fd5b81356001600160e01b0319811681146104c957600080fd5b80356001600160a01b0381168114610cba57600080fd5b919050565b600060208284031215610cd157600080fd5b6104c982610ca3565b600060208284031215610cec57600080fd5b5035919050565b60008060408385031215610d0657600080fd5b82359150610d1660208401610ca3565b90509250929050565b60008060408385031215610d3257600080fd5b50508035926020909101359150565b600080600060608486031215610d5657600080fd5b505081359360208301359350604090920135919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156103b8576103b8610d6d565b80820281158282048414176103b8576103b8610d6d565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b600081610de857610de8610d6d565b506000190190565b60005b83811015610e0b578181015183820152602001610df3565b50506000910152565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351610e4c816017850160208801610df0565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351610e7d816028840160208801610df0565b01602801949350505050565b6020815260008251806020840152610ea8816040850160208701610df0565b601f01601f19169190910160400192915050565b818103818111156103b8576103b8610d6d565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220e4e7ee9494378ac86f7c0de22e3edd3ccf7d21b3894cd7fa19b16ceedb6f646b64736f6c634300081100330000000000000000000000000000000000000000000000000de0b6b3a76400000000000000000000000000000000000000000000000000001bc16d674ec800000000000000000000000000000000000000000000000000000000000000003840
Deployed Bytecode
0x60806040526004361061010d5760003560e01c806391d1485411610095578063ca15c87311610064578063ca15c873146102ea578063d547741f1461030a578063dd8c7d2b1461032a578063e2664e491461034a578063f264a6691461035f57600080fd5b806391d148541461027f578063a217fddf1461029f578063aa8c217c146102b4578063c6a5877a146102ca57600080fd5b80632f2ff15d116100dc5780632f2ff15d146101d957806336568abe146101fb57806342cde4e81461021b578063787a08a6146102315780639010d07c1461024757600080fd5b806301ffc9a71461011957806309af55441461014e5780630fd3d9ee14610189578063248a9ca3146101a957600080fd5b3661011457005b600080fd5b34801561012557600080fd5b50610139610134366004610c79565b610393565b60405190151581526020015b60405180910390f35b34801561015a57600080fd5b5061017b610169366004610cbf565b60056020526000908152604090205481565b604051908152602001610145565b34801561019557600080fd5b506101396101a4366004610cbf565b6103be565b3480156101b557600080fd5b5061017b6101c4366004610cda565b60009081526020819052604090206001015490565b3480156101e557600080fd5b506101f96101f4366004610cf3565b610404565b005b34801561020757600080fd5b506101f9610216366004610cf3565b61042e565b34801561022757600080fd5b5061017b60035481565b34801561023d57600080fd5b5061017b60045481565b34801561025357600080fd5b50610267610262366004610d1f565b6104b1565b6040516001600160a01b039091168152602001610145565b34801561028b57600080fd5b5061013961029a366004610cf3565b6104d0565b3480156102ab57600080fd5b5061017b600081565b3480156102c057600080fd5b5061017b60025481565b3480156102d657600080fd5b506101f96102e5366004610cbf565b6104f9565b3480156102f657600080fd5b5061017b610305366004610cda565b6105dd565b34801561031657600080fd5b506101f9610325366004610cf3565b6105f4565b34801561033657600080fd5b506101f9610345366004610d41565b610619565b34801561035657600080fd5b506101f9610678565b34801561036b57600080fd5b5061017b7f1259e29d9bae6d985de2aa88464bb648989ed5ed903940f680996ff13d0578bf81565b60006001600160e01b03198216635a05180f60e01b14806103b857506103b8826108fc565b92915050565b6000600354826001600160a01b0316311080156103b857506004546001600160a01b0383166000908152600560205260409020546103fc9190610d83565b421192915050565b60008281526020819052604090206001015461041f81610931565b610429838361093b565b505050565b6001600160a01b03811633146104a35760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084015b60405180910390fd5b6104ad828261095d565b5050565b60008281526001602052604081206104c9908361097f565b9392505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b6105237f1259e29d9bae6d985de2aa88464bb648989ed5ed903940f680996ff13d0578bf8261098b565b61052c816103be565b6105785760405162461bcd60e51b815260206004820152601c60248201527f4761734d6f746865723a2043616e6e6f742066656564206368696c6400000000604482015260640161049a565b6001600160a01b0381166000818152600560209081526040918290204290556002548251938452908301527f47a70aae748f43baf81234c0cafff4d7672283248f68a58f1c4584a813fcccd8910160405180910390a16105da816002546109ef565b50565b60008181526001602052604081206103b890610a89565b60008281526020819052604090206001015461060f81610931565b610429838361095d565b6106236000610931565b60028390556003829055600481905560408051848152602081018490529081018290527f0ba31b8aa01604da9e792013cbb790899e203d496cae57a3b0d224e26be452ae9060600160405180910390a1505050565b6106826000610931565b604080513381524760208201819052917f735ea32889cdbd158f1567b0cd7aa78f33720b6b26688dab1bda3aee339dd70e910160405180910390a16105da33826109ef565b6106d182826104d0565b6104ad576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556107073390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60006104c9836001600160a01b038416610a93565b6060600061076f836002610d96565b61077a906002610d83565b67ffffffffffffffff81111561079257610792610dad565b6040519080825280601f01601f1916602001820160405280156107bc576020820181803683370190505b509050600360fc1b816000815181106107d7576107d7610dc3565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061080657610806610dc3565b60200101906001600160f81b031916908160001a905350600061082a846002610d96565b610835906001610d83565b90505b60018111156108ad576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061086957610869610dc3565b1a60f81b82828151811061087f5761087f610dc3565b60200101906001600160f81b031916908160001a90535060049490941c936108a681610dd9565b9050610838565b5083156104c95760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161049a565b60006001600160e01b03198216637965db0b60e01b14806103b857506301ffc9a760e01b6001600160e01b03198316146103b8565b6105da813361098b565b61094582826106c7565b6000828152600160205260409020610429908261074b565b6109678282610ae2565b60008281526001602052604090206104299082610b47565b60006104c98383610b5c565b61099582826104d0565b6104ad576109ad816001600160a01b03166014610760565b6109b8836020610760565b6040516020016109c9929190610e14565b60408051601f198184030181529082905262461bcd60e51b825261049a91600401610e89565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114610a3c576040519150601f19603f3d011682016040523d82523d6000602084013e610a41565b606091505b50509050806104295760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321022ba3432b960611b604482015260640161049a565b60006103b8825490565b6000818152600183016020526040812054610ada575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556103b8565b5060006103b8565b610aec82826104d0565b156104ad576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60006104c9836001600160a01b038416610b86565b6000826000018281548110610b7357610b73610dc3565b9060005260206000200154905092915050565b60008181526001830160205260408120548015610c6f576000610baa600183610ebc565b8554909150600090610bbe90600190610ebc565b9050818114610c23576000866000018281548110610bde57610bde610dc3565b9060005260206000200154905080876000018481548110610c0157610c01610dc3565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080610c3457610c34610ecf565b6001900381819060005260206000200160009055905585600101600086815260200190815260200160002060009055600193505050506103b8565b60009150506103b8565b600060208284031215610c8b57600080fd5b81356001600160e01b0319811681146104c957600080fd5b80356001600160a01b0381168114610cba57600080fd5b919050565b600060208284031215610cd157600080fd5b6104c982610ca3565b600060208284031215610cec57600080fd5b5035919050565b60008060408385031215610d0657600080fd5b82359150610d1660208401610ca3565b90509250929050565b60008060408385031215610d3257600080fd5b50508035926020909101359150565b600080600060608486031215610d5657600080fd5b505081359360208301359350604090920135919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156103b8576103b8610d6d565b80820281158282048414176103b8576103b8610d6d565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b600081610de857610de8610d6d565b506000190190565b60005b83811015610e0b578181015183820152602001610df3565b50506000910152565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351610e4c816017850160208801610df0565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351610e7d816028840160208801610df0565b01602801949350505050565b6020815260008251806020840152610ea8816040850160208701610df0565b601f01601f19169190910160400192915050565b818103818111156103b8576103b8610d6d565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220e4e7ee9494378ac86f7c0de22e3edd3ccf7d21b3894cd7fa19b16ceedb6f646b64736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000de0b6b3a76400000000000000000000000000000000000000000000000000001bc16d674ec800000000000000000000000000000000000000000000000000000000000000003840
-----Decoded View---------------
Arg [0] : _amount (uint256): 1000000000000000000
Arg [1] : _threshold (uint256): 2000000000000000000
Arg [2] : _cooldown (uint256): 14400
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000de0b6b3a7640000
Arg [1] : 0000000000000000000000000000000000000000000000001bc16d674ec80000
Arg [2] : 0000000000000000000000000000000000000000000000000000000000003840
Deployed Bytecode Sourcemap
34302:1839:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32307:214;;;;;;;;;;-1:-1:-1;32307:214:0;;;;;:::i;:::-;;:::i;:::-;;;470:14:1;;463:22;445:41;;433:2;418:18;32307:214:0;;;;;;;;34513:47;;;;;;;;;;-1:-1:-1;34513:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;1012:25:1;;;1000:2;985:18;34513:47:0;866:177:1;34941:162:0;;;;;;;;;;-1:-1:-1;34941:162:0;;;;;:::i;:::-;;:::i;14562:131::-;;;;;;;;;;-1:-1:-1;14562:131:0;;;;;:::i;:::-;14636:7;14663:12;;;;;;;;;;:22;;;;14562:131;15003:147;;;;;;;;;;-1:-1:-1;15003:147:0;;;;;:::i;:::-;;:::i;:::-;;16147:218;;;;;;;;;;-1:-1:-1;16147:218:0;;;;;:::i;:::-;;:::i;34452:24::-;;;;;;;;;;;;;;;;34483:23;;;;;;;;;;;;;;;;33120:153;;;;;;;;;;-1:-1:-1;33120:153:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2091:32:1;;;2073:51;;2061:2;2046:18;33120:153:0;1927:203:1;13022:147:0;;;;;;;;;;-1:-1:-1;13022:147:0;;;;;:::i;:::-;;:::i;12127:49::-;;;;;;;;;;-1:-1:-1;12127:49:0;12172:4;12127:49;;34424:21;;;;;;;;;;;;;;;;35111:281;;;;;;;;;;-1:-1:-1;35111:281:0;;;;;:::i;:::-;;:::i;33447:142::-;;;;;;;;;;-1:-1:-1;33447:142:0;;;;;:::i;:::-;;:::i;15443:149::-;;;;;;;;;;-1:-1:-1;15443:149:0;;;;;:::i;:::-;;:::i;35400:282::-;;;;;;;;;;-1:-1:-1;35400:282:0;;;;;:::i;:::-;;:::i;35690:233::-;;;;;;;;;;;;;:::i;34355:60::-;;;;;;;;;;;;34392:23;34355:60;;32307:214;32392:4;-1:-1:-1;;;;;;32416:57:0;;-1:-1:-1;;;32416:57:0;;:97;;;32477:36;32501:11;32477:23;:36::i;:::-;32409:104;32307:214;-1:-1:-1;;32307:214:0:o;34941:162::-;34994:4;35034:9;;35018:5;-1:-1:-1;;;;;35018:13:0;;:25;:77;;;;-1:-1:-1;35087:8:0;;-1:-1:-1;;;;;35065:19:0;;;;;;:12;:19;;;;;;:30;;35087:8;35065:30;:::i;:::-;35047:15;:48;35011:84;34941:162;-1:-1:-1;;34941:162:0:o;15003:147::-;14636:7;14663:12;;;;;;;;;;:22;;;12618:16;12629:4;12618:10;:16::i;:::-;15117:25:::1;15128:4;15134:7;15117:10;:25::i;:::-;15003:147:::0;;;:::o;16147:218::-;-1:-1:-1;;;;;16243:23:0;;5207:10;16243:23;16235:83;;;;-1:-1:-1;;;16235:83:0;;2920:2:1;16235:83:0;;;2902:21:1;2959:2;2939:18;;;2932:30;2998:34;2978:18;;;2971:62;-1:-1:-1;;;3049:18:1;;;3042:45;3104:19;;16235:83:0;;;;;;;;;16331:26;16343:4;16349:7;16331:11;:26::i;:::-;16147:218;;:::o;33120:153::-;33210:7;33237:18;;;:12;:18;;;;;:28;;33259:5;33237:21;:28::i;:::-;33230:35;33120:153;-1:-1:-1;;;33120:153:0:o;13022:147::-;13108:4;13132:12;;;;;;;;;;;-1:-1:-1;;;;;13132:29:0;;;;;;;;;;;;;;;13022:147::o;35111:281::-;35160:29;34392:23;35183:5;35160:10;:29::i;:::-;35208:14;35216:5;35208:7;:14::i;:::-;35200:55;;;;-1:-1:-1;;;35200:55:0;;3336:2:1;35200:55:0;;;3318:21:1;3375:2;3355:18;;;3348:30;3414;3394:18;;;3387:58;3462:18;;35200:55:0;3134:352:1;35200:55:0;-1:-1:-1;;;;;35268:19:0;;;;;;:12;:19;;;;;;;;;35290:15;35268:37;;35337:6;;35321:23;;3665:51:1;;;3732:18;;;3725:34;35321:23:0;;3638:18:1;35321:23:0;;;;;;;35357:27;35370:5;35377:6;;35357:12;:27::i;:::-;35111:281;:::o;33447:142::-;33527:7;33554:18;;;:12;:18;;;;;:27;;:25;:27::i;15443:149::-;14636:7;14663:12;;;;;;;;;;:22;;;12618:16;12629:4;12618:10;:16::i;:::-;15558:26:::1;15570:4;15576:7;15558:11;:26::i;35400:282::-:0;35493:30;12172:4;35493:10;:30::i;:::-;35536:6;:16;;;35563:9;:22;;;35596:8;:20;;;35632:42;;;3972:25:1;;;4028:2;4013:18;;4006:34;;;4056:18;;;4049:34;;;35632:42:0;;3960:2:1;3945:18;35632:42:0;;;;;;;35400:282;;;:::o;35690:233::-;35729:30;12172:4;35729:10;:30::i;:::-;35831:34;;;35841:10;3665:51:1;;35794:21:0;3747:2:1;3732:18;;3725:34;;;35794:21:0;35831:34;;3638:18:1;35831:34:0;;;;;;;35878:37;35891:10;35903:11;35878:12;:37::i;17744:238::-;17828:22;17836:4;17842:7;17828;:22::i;:::-;17823:152;;17867:6;:12;;;;;;;;;;;-1:-1:-1;;;;;17867:29:0;;;;;;;;;:36;;-1:-1:-1;;17867:36:0;17899:4;17867:36;;;17950:12;5207:10;;5127:98;17950:12;-1:-1:-1;;;;;17923:40:0;17941:7;-1:-1:-1;;;;;17923:40:0;17935:4;17923:40;;;;;;;;;;17744:238;;:::o;26718:152::-;26788:4;26812:50;26817:3;-1:-1:-1;;;;;26837:23:0;;26812:4;:50::i;7086:451::-;7161:13;7187:19;7219:10;7223:6;7219:1;:10;:::i;:::-;:14;;7232:1;7219:14;:::i;:::-;7209:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7209:25:0;;7187:47;;-1:-1:-1;;;7245:6:0;7252:1;7245:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;7245:15:0;;;;;;;;;-1:-1:-1;;;7271:6:0;7278:1;7271:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;7271:15:0;;;;;;;;-1:-1:-1;7302:9:0;7314:10;7318:6;7314:1;:10;:::i;:::-;:14;;7327:1;7314:14;:::i;:::-;7302:26;;7297:135;7334:1;7330;:5;7297:135;;;-1:-1:-1;;;7382:5:0;7390:3;7382:11;7369:25;;;;;;;:::i;:::-;;;;7357:6;7364:1;7357:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;7357:37:0;;;;;;;;-1:-1:-1;7419:1:0;7409:11;;;;;7337:3;;;:::i;:::-;;;7297:135;;;-1:-1:-1;7450:10:0;;7442:55;;;;-1:-1:-1;;;7442:55:0;;4874:2:1;7442:55:0;;;4856:21:1;;;4893:18;;;4886:30;4952:34;4932:18;;;4925:62;5004:18;;7442:55:0;4672:356:1;12726:204:0;12811:4;-1:-1:-1;;;;;;12835:47:0;;-1:-1:-1;;;12835:47:0;;:87;;-1:-1:-1;;;;;;;;;;9841:40:0;;;12886:36;9732:157;13473:105;13540:30;13551:4;5207:10;13540;:30::i;33682:169::-;33770:31;33787:4;33793:7;33770:16;:31::i;:::-;33812:18;;;;:12;:18;;;;;:31;;33835:7;33812:22;:31::i;33945:174::-;34034:32;34052:4;34058:7;34034:17;:32::i;:::-;34077:18;;;;:12;:18;;;;;:34;;34103:7;34077:25;:34::i;28014:158::-;28088:7;28139:22;28143:3;28155:5;28139:3;:22::i;13868:505::-;13957:22;13965:4;13971:7;13957;:22::i;:::-;13952:414;;14145:41;14173:7;-1:-1:-1;;;;;14145:41:0;14183:2;14145:19;:41::i;:::-;14259:38;14287:4;14294:2;14259:19;:38::i;:::-;14050:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;14050:270:0;;;;;;;;;;-1:-1:-1;;;13996:358:0;;;;;;;:::i;35931:170::-;36003:9;36018:2;-1:-1:-1;;;;;36018:7:0;36033;36018:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36002:43;;;36064:4;36056:37;;;;-1:-1:-1;;;36056:37:0;;6918:2:1;36056:37:0;;;6900:21:1;6957:2;6937:18;;;6930:30;-1:-1:-1;;;6976:18:1;;;6969:50;7036:18;;36056:37:0;6716:344:1;27543:117:0;27606:7;27633:19;27641:3;23027:18;;22944:109;20633:414;20696:4;22826:19;;;:12;;;:19;;;;;;20713:327;;-1:-1:-1;20756:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;20939:18;;20917:19;;;:12;;;:19;;;;;;:40;;;;20972:11;;20713:327;-1:-1:-1;21023:5:0;21016:12;;18162:239;18246:22;18254:4;18260:7;18246;:22::i;:::-;18242:152;;;18317:5;18285:12;;;;;;;;;;;-1:-1:-1;;;;;18285:29:0;;;;;;;;;;:37;;-1:-1:-1;;18285:37:0;;;18342:40;5207:10;;18285:12;;18342:40;;18317:5;18342:40;18162:239;;:::o;27046:158::-;27119:4;27143:53;27151:3;-1:-1:-1;;;;;27171:23:0;;27143:7;:53::i;23407:120::-;23474:7;23501:3;:11;;23513:5;23501:18;;;;;;;;:::i;:::-;;;;;;;;;23494:25;;23407:120;;;;:::o;21223:1420::-;21289:4;21428:19;;;:12;;;:19;;;;;;21464:15;;21460:1176;;21839:21;21863:14;21876:1;21863:10;:14;:::i;:::-;21912:18;;21839:38;;-1:-1:-1;21892:17:0;;21912:22;;21933:1;;21912:22;:::i;:::-;21892:42;;21968:13;21955:9;:26;21951:405;;22002:17;22022:3;:11;;22034:9;22022:22;;;;;;;;:::i;:::-;;;;;;;;;22002:42;;22176:9;22147:3;:11;;22159:13;22147:26;;;;;;;;:::i;:::-;;;;;;;;;;;;:38;;;;22261:23;;;:12;;;:23;;;;;:36;;;21951:405;22437:17;;:3;;:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;22532:3;:12;;:19;22545:5;22532:19;;;;;;;;;;;22525:26;;;22575:4;22568:11;;;;;;;21460:1176;22619:5;22612:12;;;;;14:286:1;72:6;125:2;113:9;104:7;100:23;96:32;93:52;;;141:1;138;131:12;93:52;167:23;;-1:-1:-1;;;;;;219:32:1;;209:43;;199:71;;266:1;263;256:12;497:173;565:20;;-1:-1:-1;;;;;614:31:1;;604:42;;594:70;;660:1;657;650:12;594:70;497:173;;;:::o;675:186::-;734:6;787:2;775:9;766:7;762:23;758:32;755:52;;;803:1;800;793:12;755:52;826:29;845:9;826:29;:::i;1048:180::-;1107:6;1160:2;1148:9;1139:7;1135:23;1131:32;1128:52;;;1176:1;1173;1166:12;1128:52;-1:-1:-1;1199:23:1;;1048:180;-1:-1:-1;1048:180:1:o;1415:254::-;1483:6;1491;1544:2;1532:9;1523:7;1519:23;1515:32;1512:52;;;1560:1;1557;1550:12;1512:52;1596:9;1583:23;1573:33;;1625:38;1659:2;1648:9;1644:18;1625:38;:::i;:::-;1615:48;;1415:254;;;;;:::o;1674:248::-;1742:6;1750;1803:2;1791:9;1782:7;1778:23;1774:32;1771:52;;;1819:1;1816;1809:12;1771:52;-1:-1:-1;;1842:23:1;;;1912:2;1897:18;;;1884:32;;-1:-1:-1;1674:248:1:o;2135:316::-;2212:6;2220;2228;2281:2;2269:9;2260:7;2256:23;2252:32;2249:52;;;2297:1;2294;2287:12;2249:52;-1:-1:-1;;2320:23:1;;;2390:2;2375:18;;2362:32;;-1:-1:-1;2441:2:1;2426:18;;;2413:32;;2135:316;-1:-1:-1;2135:316:1:o;2456:127::-;2517:10;2512:3;2508:20;2505:1;2498:31;2548:4;2545:1;2538:15;2572:4;2569:1;2562:15;2588:125;2653:9;;;2674:10;;;2671:36;;;2687:18;;:::i;4094:168::-;4167:9;;;4198;;4215:15;;;4209:22;;4195:37;4185:71;;4236:18;;:::i;4267:127::-;4328:10;4323:3;4319:20;4316:1;4309:31;4359:4;4356:1;4349:15;4383:4;4380:1;4373:15;4399:127;4460:10;4455:3;4451:20;4448:1;4441:31;4491:4;4488:1;4481:15;4515:4;4512:1;4505:15;4531:136;4570:3;4598:5;4588:39;;4607:18;;:::i;:::-;-1:-1:-1;;;4643:18:1;;4531:136::o;5033:250::-;5118:1;5128:113;5142:6;5139:1;5136:13;5128:113;;;5218:11;;;5212:18;5199:11;;;5192:39;5164:2;5157:10;5128:113;;;-1:-1:-1;;5275:1:1;5257:16;;5250:27;5033:250::o;5288:812::-;5699:25;5694:3;5687:38;5669:3;5754:6;5748:13;5770:75;5838:6;5833:2;5828:3;5824:12;5817:4;5809:6;5805:17;5770:75;:::i;:::-;-1:-1:-1;;;5904:2:1;5864:16;;;5896:11;;;5889:40;5954:13;;5976:76;5954:13;6038:2;6030:11;;6023:4;6011:17;;5976:76;:::i;:::-;6072:17;6091:2;6068:26;;5288:812;-1:-1:-1;;;;5288:812:1:o;6105:396::-;6254:2;6243:9;6236:21;6217:4;6286:6;6280:13;6329:6;6324:2;6313:9;6309:18;6302:34;6345:79;6417:6;6412:2;6401:9;6397:18;6392:2;6384:6;6380:15;6345:79;:::i;:::-;6485:2;6464:15;-1:-1:-1;;6460:29:1;6445:45;;;;6492:2;6441:54;;6105:396;-1:-1:-1;;6105:396:1:o;7065:128::-;7132:9;;;7153:11;;;7150:37;;;7167:18;;:::i;7198:127::-;7259:10;7254:3;7250:20;7247:1;7240:31;7290:4;7287:1;7280:15;7314:4;7311:1;7304:15
Swarm Source
ipfs://e4e7ee9494378ac86f7c0de22e3edd3ccf7d21b3894cd7fa19b16ceedb6f646b
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 29 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | Ether (ETH) | 100.00% | $3,631 | 3.02 | $10,965.61 |
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.