More Info
Private Name Tags
ContractCreator
Latest 5 from a total of 5 transactions
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
Treasury
Compiler Version
v0.7.0+commit.9e61f92b
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.7.0; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "./Permissions.sol"; contract Treasury is Permissions { constructor() public Permissions() { } receive () external payable { } function withdrawETH(address payable receipient, uint amount) external onlyGovernor { receipient.transfer(amount); } function withdrawToken(address token, address receipient, uint amount) external onlyGovernor { IERC20(token).transfer(receipient, amount); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT pragma solidity ^0.7.0; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/access/AccessControl.sol"; import "./interface/IPermissions.sol"; /// @title IPermissions implementation contract Permissions is IPermissions, AccessControl { bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); bytes32 public constant GOVERN_ROLE = keccak256("GOVERN_ROLE"); bytes32 public constant REVOKE_ROLE = keccak256("REVOKE_ROLE"); constructor() public { _setupGovernor(msg.sender); _setRoleAdmin(MINTER_ROLE, GOVERN_ROLE); _setRoleAdmin(GOVERN_ROLE, GOVERN_ROLE); _setRoleAdmin(REVOKE_ROLE, GOVERN_ROLE); } modifier onlyGovernor() { require(isGovernor(msg.sender), "Caller is not a governor"); _; } modifier onlyRevoker() { require(isRevoker(msg.sender), "Caller is not a revoker"); _; } modifier onlyMinter() { require(isMinter(msg.sender), "Caller is not a minter"); _; } function createRole(bytes32 role, bytes32 adminRole) external override onlyGovernor { _setRoleAdmin(role, adminRole); } function grantMinter(address minter) external override onlyGovernor { grantRole(MINTER_ROLE, minter); } function grantGovernor(address governor) external override onlyGovernor { grantRole(GOVERN_ROLE, governor); } function grantRevoker(address revoker) external override onlyGovernor { grantRole(REVOKE_ROLE, revoker); } function revokeMinter(address minter) external override onlyGovernor { revokeRole(MINTER_ROLE, minter); } function revokeGovernor(address governor) external override onlyGovernor { revokeRole(GOVERN_ROLE, governor); } function revokeRevoker(address revoker) external override onlyGovernor { revokeRole(REVOKE_ROLE, revoker); } function revokeOverride(bytes32 role, address account) external override onlyRevoker { this.revokeRole(role, account); } function isMinter(address _address) public override view returns (bool) { return hasRole(MINTER_ROLE, _address); } // only virtual for testing mock override function isGovernor(address _address) public override view virtual returns (bool) { return hasRole(GOVERN_ROLE, _address); } function isRevoker(address _address) public override view returns (bool) { return hasRole(REVOKE_ROLE, _address); } function _setupGovernor(address governor) internal { _setupRole(GOVERN_ROLE, governor); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; import "../utils/EnumerableSet.sol"; import "../utils/Address.sol"; import "../utils/Context.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. * * 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 { using EnumerableSet for EnumerableSet.AddressSet; using Address for address; struct RoleData { EnumerableSet.AddressSet members; bytes32 adminRole; } mapping (bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @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 {_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) public view returns (bool) { return _roles[role].members.contains(account); } /** * @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 returns (uint256) { return _roles[role].members.length(); } /** * @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 returns (address) { return _roles[role].members.at(index); } /** * @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 returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual { require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant"); _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual { require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke"); _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 granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== */ 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 { emit RoleAdminChanged(role, _roles[role].adminRole, adminRole); _roles[role].adminRole = adminRole; } function _grantRole(bytes32 role, address account) private { if (_roles[role].members.add(account)) { emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (_roles[role].members.remove(account)) { emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.7.0; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; interface IPermissions { // Governor only state changing api /// @notice creates a new role to be maintained /// @param role the new role id /// @param adminRole the admin role id for `role` /// @dev can also be used to update admin of existing role function createRole(bytes32 role, bytes32 adminRole) external; /// @notice grants minter role to address /// @param minter new minter function grantMinter(address minter) external; /// @notice grants governor role to address /// @param governor new governor function grantGovernor(address governor) external; /// @notice grants revoker role to address /// @param revoker new revoker function grantRevoker(address revoker) external; /// @notice revokes minter role from address /// @param minter ex minter function revokeMinter(address minter) external; /// @notice revokes governor role from address /// @param governor ex governor function revokeGovernor(address governor) external; /// @notice revokes revoker role from address /// @param revoker ex revoker function revokeRevoker(address revoker) external; // Revoker only state changing api /// @notice revokes a role from address /// @param role the role to revoke /// @param account the address to revoke the role from function revokeOverride(bytes32 role, address account) external; // Getters /// @notice checks if address is a minter /// @param _address address to check /// @return true _address is a minter function isMinter(address _address) external view returns (bool); /// @notice checks if address is a governor /// @param _address address to check /// @return true _address is a governor function isGovernor(address _address) external view returns (bool); /// @notice checks if address is a revoker /// @param _address address to check /// @return true _address is a revoker function isRevoker(address _address) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <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. */ 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; // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. 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] = toDeleteIndex + 1; // All indexes are 1-based // 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) { require(set._values.length > index, "EnumerableSet: index out of bounds"); return set._values[index]; } // 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); } // 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)))); } // 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)); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.2 <0.8.0; /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(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) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <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 GSN 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 payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GOVERN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REVOKE_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"bytes32","name":"adminRole","type":"bytes32"}],"name":"createRole","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":"address","name":"governor","type":"address"}],"name":"grantGovernor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"grantMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"revoker","type":"address"}],"name":"grantRevoker","outputs":[],"stateMutability":"nonpayable","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":"_address","type":"address"}],"name":"isGovernor","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isRevoker","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":"address","name":"governor","type":"address"}],"name":"revokeGovernor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"revokeMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeOverride","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"revoker","type":"address"}],"name":"revokeRevoker","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 payable","name":"receipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"receipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040523480156200001157600080fd5b506200001d33620000b4565b620000587f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a660008051602062001383833981519152620000d2565b620000736000805160206200138383398151915280620000d2565b620000ae7f5297e68f3a27f04914f2c6db0ad63b5e5c8173cebcc1a5341df045cf6dad7adc60008051602062001383833981519152620000d2565b62000238565b620000cf600080516020620013838339815191528262000124565b50565b600082815260208190526040808220600201549051839285917fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff9190a460009182526020829052604090912060020155565b62000130828262000134565b5050565b6000828152602081815260409091206200015991839062000cc7620001ad821b17901c565b15620001305762000169620001cd565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000620001c4836001600160a01b038416620001d1565b90505b92915050565b3390565b6000620001df838362000220565b6200021757508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155620001c7565b506000620001c7565b60009081526001919091016020526040902054151590565b61113b80620002486000396000f3fe60806040526004361061014f5760003560e01c80638b38b514116100b6578063cfbd48851161006f578063cfbd4885146104f1578063d539139314610524578063d547741f14610539578063e43581b814610572578063e6eb982f146105a5578063f6c4b01f146105d857610156565b80638b38b514146103d15780639010d07c146103e657806391d1485414610432578063a217fddf1461047f578063aa271e1a14610494578063ca15c873146104c757610156565b806336568abe1161010857806336568abe146102b457806338b7f446146102ed578063395c62e8146103025780634782f779146103355780634c9f93841461036e5780635f3977b01461039e57610156565b806301e336671461015b578063080bf57c146101a05780630c39930b146101d9578063248a9ca31461020c578063261707fa146102485780632f2ff15d1461027b57610156565b3661015657005b600080fd5b34801561016757600080fd5b5061019e6004803603606081101561017e57600080fd5b506001600160a01b0381358116916020810135909116906040013561060b565b005b3480156101ac57600080fd5b5061019e600480360360408110156101c357600080fd5b50803590602001356001600160a01b03166106db565b3480156101e557600080fd5b5061019e600480360360208110156101fc57600080fd5b50356001600160a01b031661079f565b34801561021857600080fd5b506102366004803603602081101561022f57600080fd5b5035610802565b60408051918252519081900360200190f35b34801561025457600080fd5b5061019e6004803603602081101561026b57600080fd5b50356001600160a01b0316610817565b34801561028757600080fd5b5061019e6004803603604081101561029e57600080fd5b50803590602001356001600160a01b0316610873565b3480156102c057600080fd5b5061019e600480360360408110156102d757600080fd5b50803590602001356001600160a01b03166108df565b3480156102f957600080fd5b50610236610940565b34801561030e57600080fd5b5061019e6004803603602081101561032557600080fd5b50356001600160a01b0316610952565b34801561034157600080fd5b5061019e6004803603604081101561035857600080fd5b506001600160a01b0381351690602001356109b2565b34801561037a57600080fd5b5061019e6004803603604081101561039157600080fd5b5080359060200135610a35565b3480156103aa57600080fd5b5061019e600480360360208110156103c157600080fd5b50356001600160a01b0316610a87565b3480156103dd57600080fd5b50610236610ae7565b3480156103f257600080fd5b506104166004803603604081101561040957600080fd5b5080359060200135610af9565b604080516001600160a01b039092168252519081900360200190f35b34801561043e57600080fd5b5061046b6004803603604081101561045557600080fd5b50803590602001356001600160a01b0316610b1a565b604080519115158252519081900360200190f35b34801561048b57600080fd5b50610236610b32565b3480156104a057600080fd5b5061046b600480360360208110156104b757600080fd5b50356001600160a01b0316610b37565b3480156104d357600080fd5b50610236600480360360208110156104ea57600080fd5b5035610b51565b3480156104fd57600080fd5b5061019e6004803603602081101561051457600080fd5b50356001600160a01b0316610b68565b34801561053057600080fd5b50610236610bc8565b34801561054557600080fd5b5061019e6004803603604081101561055c57600080fd5b50803590602001356001600160a01b0316610bda565b34801561057e57600080fd5b5061046b6004803603602081101561059557600080fd5b50356001600160a01b0316610c33565b3480156105b157600080fd5b5061019e600480360360208110156105c857600080fd5b50356001600160a01b0316610c4d565b3480156105e457600080fd5b5061046b600480360360208110156105fb57600080fd5b50356001600160a01b0316610cad565b61061433610c33565b610653576040805162461bcd60e51b81526020600482015260186024820152600080516020611047833981519152604482015290519081900360640190fd5b826001600160a01b031663a9059cbb83836040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b1580156106aa57600080fd5b505af11580156106be573d6000803e3d6000fd5b505050506040513d60208110156106d457600080fd5b5050505050565b6106e433610cad565b610735576040805162461bcd60e51b815260206004820152601760248201527f43616c6c6572206973206e6f742061207265766f6b6572000000000000000000604482015290519081900360640190fd5b6040805163d547741f60e01b8152600481018490526001600160a01b03831660248201529051309163d547741f91604480830192600092919082900301818387803b15801561078357600080fd5b505af1158015610797573d6000803e3d6000fd5b505050505050565b6107a833610c33565b6107e7576040805162461bcd60e51b81526020600482015260186024820152600080516020611047833981519152604482015290519081900360640190fd5b6107ff60008051602061102783398151915282610bda565b50565b60009081526020819052604090206002015490565b61082033610c33565b61085f576040805162461bcd60e51b81526020600482015260186024820152600080516020611047833981519152604482015290519081900360640190fd5b6107ff6000805160206110b7833981519152825b60008281526020819052604090206002015461089690610891610cdc565b610b1a565b6108d15760405162461bcd60e51b815260040180806020018281038252602f815260200180610ff8602f913960400191505060405180910390fd5b6108db8282610ce0565b5050565b6108e7610cdc565b6001600160a01b0316816001600160a01b0316146109365760405162461bcd60e51b815260040180806020018281038252602f8152602001806110d7602f913960400191505060405180910390fd5b6108db8282610d49565b60008051602061106783398151915281565b61095b33610c33565b61099a576040805162461bcd60e51b81526020600482015260186024820152600080516020611047833981519152604482015290519081900360640190fd5b6107ff60008051602061106783398151915282610873565b6109bb33610c33565b6109fa576040805162461bcd60e51b81526020600482015260186024820152600080516020611047833981519152604482015290519081900360640190fd5b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610a30573d6000803e3d6000fd5b505050565b610a3e33610c33565b610a7d576040805162461bcd60e51b81526020600482015260186024820152600080516020611047833981519152604482015290519081900360640190fd5b6108db8282610db2565b610a9033610c33565b610acf576040805162461bcd60e51b81526020600482015260186024820152600080516020611047833981519152604482015290519081900360640190fd5b6107ff60008051602061102783398151915282610873565b60008051602061102783398151915281565b6000828152602081905260408120610b119083610e04565b90505b92915050565b6000828152602081905260408120610b119083610e10565b600081565b6000610b146000805160206110b783398151915283610b1a565b6000818152602081905260408120610b1490610e25565b610b7133610c33565b610bb0576040805162461bcd60e51b81526020600482015260186024820152600080516020611047833981519152604482015290519081900360640190fd5b6107ff6000805160206110b783398151915282610bda565b6000805160206110b783398151915281565b600082815260208190526040902060020154610bf890610891610cdc565b6109365760405162461bcd60e51b81526004018080602001828103825260308152602001806110876030913960400191505060405180910390fd5b6000610b1460008051602061106783398151915283610b1a565b610c5633610c33565b610c95576040805162461bcd60e51b81526020600482015260186024820152600080516020611047833981519152604482015290519081900360640190fd5b6107ff60008051602061106783398151915282610bda565b6000610b1460008051602061102783398151915283610b1a565b6000610b11836001600160a01b038416610e30565b3390565b6000828152602081905260409020610cf89082610cc7565b156108db57610d05610cdc565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000828152602081905260409020610d619082610e7a565b156108db57610d6e610cdc565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b600082815260208190526040808220600201549051839285917fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff9190a460009182526020829052604090912060020155565b6000610b118383610e8f565b6000610b11836001600160a01b038416610ef3565b6000610b1482610f0b565b6000610e3c8383610ef3565b610e7257508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610b14565b506000610b14565b6000610b11836001600160a01b038416610f0f565b81546000908210610ed15760405162461bcd60e51b8152600401808060200182810382526022815260200180610fd66022913960400191505060405180910390fd5b826000018281548110610ee057fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b5490565b60008181526001830160205260408120548015610fcb5783546000198083019190810190600090879083908110610f4257fe5b9060005260206000200154905080876000018481548110610f5f57fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080610f8f57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610b14565b6000915050610b1456fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e6473416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e745297e68f3a27f04914f2c6db0ad63b5e5c8173cebcc1a5341df045cf6dad7adc43616c6c6572206973206e6f74206120676f7665726e6f720000000000000000899bd46557473cb80307a9dabc297131ced39608330a2d29b2d52b660c03923e416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b659f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a264697066735822122079e9cab21e3d5cfe958e40a9371caed467d039ee09dc323b684c64945a335d3964736f6c63430007000033899bd46557473cb80307a9dabc297131ced39608330a2d29b2d52b660c03923e
Deployed Bytecode
0x60806040526004361061014f5760003560e01c80638b38b514116100b6578063cfbd48851161006f578063cfbd4885146104f1578063d539139314610524578063d547741f14610539578063e43581b814610572578063e6eb982f146105a5578063f6c4b01f146105d857610156565b80638b38b514146103d15780639010d07c146103e657806391d1485414610432578063a217fddf1461047f578063aa271e1a14610494578063ca15c873146104c757610156565b806336568abe1161010857806336568abe146102b457806338b7f446146102ed578063395c62e8146103025780634782f779146103355780634c9f93841461036e5780635f3977b01461039e57610156565b806301e336671461015b578063080bf57c146101a05780630c39930b146101d9578063248a9ca31461020c578063261707fa146102485780632f2ff15d1461027b57610156565b3661015657005b600080fd5b34801561016757600080fd5b5061019e6004803603606081101561017e57600080fd5b506001600160a01b0381358116916020810135909116906040013561060b565b005b3480156101ac57600080fd5b5061019e600480360360408110156101c357600080fd5b50803590602001356001600160a01b03166106db565b3480156101e557600080fd5b5061019e600480360360208110156101fc57600080fd5b50356001600160a01b031661079f565b34801561021857600080fd5b506102366004803603602081101561022f57600080fd5b5035610802565b60408051918252519081900360200190f35b34801561025457600080fd5b5061019e6004803603602081101561026b57600080fd5b50356001600160a01b0316610817565b34801561028757600080fd5b5061019e6004803603604081101561029e57600080fd5b50803590602001356001600160a01b0316610873565b3480156102c057600080fd5b5061019e600480360360408110156102d757600080fd5b50803590602001356001600160a01b03166108df565b3480156102f957600080fd5b50610236610940565b34801561030e57600080fd5b5061019e6004803603602081101561032557600080fd5b50356001600160a01b0316610952565b34801561034157600080fd5b5061019e6004803603604081101561035857600080fd5b506001600160a01b0381351690602001356109b2565b34801561037a57600080fd5b5061019e6004803603604081101561039157600080fd5b5080359060200135610a35565b3480156103aa57600080fd5b5061019e600480360360208110156103c157600080fd5b50356001600160a01b0316610a87565b3480156103dd57600080fd5b50610236610ae7565b3480156103f257600080fd5b506104166004803603604081101561040957600080fd5b5080359060200135610af9565b604080516001600160a01b039092168252519081900360200190f35b34801561043e57600080fd5b5061046b6004803603604081101561045557600080fd5b50803590602001356001600160a01b0316610b1a565b604080519115158252519081900360200190f35b34801561048b57600080fd5b50610236610b32565b3480156104a057600080fd5b5061046b600480360360208110156104b757600080fd5b50356001600160a01b0316610b37565b3480156104d357600080fd5b50610236600480360360208110156104ea57600080fd5b5035610b51565b3480156104fd57600080fd5b5061019e6004803603602081101561051457600080fd5b50356001600160a01b0316610b68565b34801561053057600080fd5b50610236610bc8565b34801561054557600080fd5b5061019e6004803603604081101561055c57600080fd5b50803590602001356001600160a01b0316610bda565b34801561057e57600080fd5b5061046b6004803603602081101561059557600080fd5b50356001600160a01b0316610c33565b3480156105b157600080fd5b5061019e600480360360208110156105c857600080fd5b50356001600160a01b0316610c4d565b3480156105e457600080fd5b5061046b600480360360208110156105fb57600080fd5b50356001600160a01b0316610cad565b61061433610c33565b610653576040805162461bcd60e51b81526020600482015260186024820152600080516020611047833981519152604482015290519081900360640190fd5b826001600160a01b031663a9059cbb83836040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b1580156106aa57600080fd5b505af11580156106be573d6000803e3d6000fd5b505050506040513d60208110156106d457600080fd5b5050505050565b6106e433610cad565b610735576040805162461bcd60e51b815260206004820152601760248201527f43616c6c6572206973206e6f742061207265766f6b6572000000000000000000604482015290519081900360640190fd5b6040805163d547741f60e01b8152600481018490526001600160a01b03831660248201529051309163d547741f91604480830192600092919082900301818387803b15801561078357600080fd5b505af1158015610797573d6000803e3d6000fd5b505050505050565b6107a833610c33565b6107e7576040805162461bcd60e51b81526020600482015260186024820152600080516020611047833981519152604482015290519081900360640190fd5b6107ff60008051602061102783398151915282610bda565b50565b60009081526020819052604090206002015490565b61082033610c33565b61085f576040805162461bcd60e51b81526020600482015260186024820152600080516020611047833981519152604482015290519081900360640190fd5b6107ff6000805160206110b7833981519152825b60008281526020819052604090206002015461089690610891610cdc565b610b1a565b6108d15760405162461bcd60e51b815260040180806020018281038252602f815260200180610ff8602f913960400191505060405180910390fd5b6108db8282610ce0565b5050565b6108e7610cdc565b6001600160a01b0316816001600160a01b0316146109365760405162461bcd60e51b815260040180806020018281038252602f8152602001806110d7602f913960400191505060405180910390fd5b6108db8282610d49565b60008051602061106783398151915281565b61095b33610c33565b61099a576040805162461bcd60e51b81526020600482015260186024820152600080516020611047833981519152604482015290519081900360640190fd5b6107ff60008051602061106783398151915282610873565b6109bb33610c33565b6109fa576040805162461bcd60e51b81526020600482015260186024820152600080516020611047833981519152604482015290519081900360640190fd5b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610a30573d6000803e3d6000fd5b505050565b610a3e33610c33565b610a7d576040805162461bcd60e51b81526020600482015260186024820152600080516020611047833981519152604482015290519081900360640190fd5b6108db8282610db2565b610a9033610c33565b610acf576040805162461bcd60e51b81526020600482015260186024820152600080516020611047833981519152604482015290519081900360640190fd5b6107ff60008051602061102783398151915282610873565b60008051602061102783398151915281565b6000828152602081905260408120610b119083610e04565b90505b92915050565b6000828152602081905260408120610b119083610e10565b600081565b6000610b146000805160206110b783398151915283610b1a565b6000818152602081905260408120610b1490610e25565b610b7133610c33565b610bb0576040805162461bcd60e51b81526020600482015260186024820152600080516020611047833981519152604482015290519081900360640190fd5b6107ff6000805160206110b783398151915282610bda565b6000805160206110b783398151915281565b600082815260208190526040902060020154610bf890610891610cdc565b6109365760405162461bcd60e51b81526004018080602001828103825260308152602001806110876030913960400191505060405180910390fd5b6000610b1460008051602061106783398151915283610b1a565b610c5633610c33565b610c95576040805162461bcd60e51b81526020600482015260186024820152600080516020611047833981519152604482015290519081900360640190fd5b6107ff60008051602061106783398151915282610bda565b6000610b1460008051602061102783398151915283610b1a565b6000610b11836001600160a01b038416610e30565b3390565b6000828152602081905260409020610cf89082610cc7565b156108db57610d05610cdc565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000828152602081905260409020610d619082610e7a565b156108db57610d6e610cdc565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b600082815260208190526040808220600201549051839285917fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff9190a460009182526020829052604090912060020155565b6000610b118383610e8f565b6000610b11836001600160a01b038416610ef3565b6000610b1482610f0b565b6000610e3c8383610ef3565b610e7257508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610b14565b506000610b14565b6000610b11836001600160a01b038416610f0f565b81546000908210610ed15760405162461bcd60e51b8152600401808060200182810382526022815260200180610fd66022913960400191505060405180910390fd5b826000018281548110610ee057fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b5490565b60008181526001830160205260408120548015610fcb5783546000198083019190810190600090879083908110610f4257fe5b9060005260206000200154905080876000018481548110610f5f57fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080610f8f57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610b14565b6000915050610b1456fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e6473416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e745297e68f3a27f04914f2c6db0ad63b5e5c8173cebcc1a5341df045cf6dad7adc43616c6c6572206973206e6f74206120676f7665726e6f720000000000000000899bd46557473cb80307a9dabc297131ced39608330a2d29b2d52b660c03923e416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b659f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a264697066735822122079e9cab21e3d5cfe958e40a9371caed467d039ee09dc323b684c64945a335d3964736f6c63430007000033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
POL | 100.00% | $100,975 | 0.00000799 | $0.8067 |
Loading...
Loading
[ 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.