Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 7 from a total of 7 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Renounce Role | 13574474 | 1192 days ago | IN | 0 ETH | 0.00383423 | ||||
Set Admin | 13574458 | 1192 days ago | IN | 0 ETH | 0.00539855 | ||||
Set Burn Asset R... | 11658224 | 1490 days ago | IN | 0 ETH | 0.00329665 | ||||
Set Issue Asset ... | 11658224 | 1490 days ago | IN | 0 ETH | 0.00329859 | ||||
Set Debt System ... | 11494454 | 1515 days ago | IN | 0 ETH | 0.0041829 | ||||
Set Burn Asset R... | 11494454 | 1515 days ago | IN | 0 ETH | 0.0041809 | ||||
Set Issue Asset ... | 11494454 | 1515 days ago | IN | 0 ETH | 0.00418295 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
LnAccessControl
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-12-21 */ // 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); } 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); } } } } /** * @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(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(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(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(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)); } } /* * @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; } } /** * @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()); } } } // example: //LnAccessControl accessCtrl = LnAccessControl(addressStorage.getAddress("LnAccessControl")); //require(accessCtrl.hasRole(accessCtrl.DEBT_SYSTEM(), _address), "Need debt system access role"); // contract access control contract LnAccessControl is AccessControl { using Address for address; // ------------------------------------------------------- // role type bytes32 public constant ISSUE_ASSET_ROLE = ("ISSUE_ASSET"); //keccak256 bytes32 public constant BURN_ASSET_ROLE = ("BURN_ASSET"); bytes32 public constant DEBT_SYSTEM = ("LnDebtSystem"); // ------------------------------------------------------- constructor(address admin) public { _setupRole(DEFAULT_ADMIN_ROLE, admin); } function IsAdmin(address _address) public view returns (bool) { return hasRole(DEFAULT_ADMIN_ROLE, _address); } function SetAdmin(address _address) public returns (bool) { require(IsAdmin(msg.sender), "Only admin"); _setupRole(DEFAULT_ADMIN_ROLE, _address); } // ------------------------------------------------------- // this func need admin role. grantRole and revokeRole need admin role function SetRoles( bytes32 roleType, address[] calldata addresses, bool[] calldata setTo ) external { require(IsAdmin(msg.sender), "Only admin"); _setRoles(roleType, addresses, setTo); } function _setRoles( bytes32 roleType, address[] calldata addresses, bool[] calldata setTo ) private { require(addresses.length == setTo.length, "parameter address length not eq"); for (uint256 i = 0; i < addresses.length; i++) { //require(addresses[i].isContract(), "Role address need contract only"); if (setTo[i]) { grantRole(roleType, addresses[i]); } else { revokeRole(roleType, addresses[i]); } } } // function SetRoles(bytes32 roleType, address[] calldata addresses, bool[] calldata setTo) public { // _setRoles(roleType, addresses, setTo); // } // Issue burn function SetIssueAssetRole(address[] calldata issuer, bool[] calldata setTo) public { _setRoles(ISSUE_ASSET_ROLE, issuer, setTo); } function SetBurnAssetRole(address[] calldata burner, bool[] calldata setTo) public { _setRoles(BURN_ASSET_ROLE, burner, setTo); } // function SetDebtSystemRole(address[] calldata _address, bool[] calldata _setTo) public { _setRoles(DEBT_SYSTEM, _address, _setTo); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"admin","type":"address"}],"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":"BURN_ASSET_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEBT_SYSTEM","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":"ISSUE_ASSET_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"IsAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"SetAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"burner","type":"address[]"},{"internalType":"bool[]","name":"setTo","type":"bool[]"}],"name":"SetBurnAssetRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_address","type":"address[]"},{"internalType":"bool[]","name":"_setTo","type":"bool[]"}],"name":"SetDebtSystemRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"issuer","type":"address[]"},{"internalType":"bool[]","name":"setTo","type":"bool[]"}],"name":"SetIssueAssetRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"roleType","type":"bytes32"},{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"bool[]","name":"setTo","type":"bool[]"}],"name":"SetRoles","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":"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"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200110038038062001100833981810160405260208110156200003757600080fd5b5051620000466000826200004d565b5062000161565b6200005982826200005d565b5050565b6000828152602081815260409091206200008291839062000a50620000d6821b17901c565b15620000595762000092620000f6565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000620000ed836001600160a01b038416620000fa565b90505b92915050565b3390565b600062000108838362000149565b6200014057508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155620000f0565b506000620000f0565b60009081526001919091016020526040902054151590565b610f8f80620001716000396000f3fe608060405234801561001057600080fd5b506004361061011b5760003560e01c80635a272403116100b2578063a217fddf11610081578063ca15c87311610066578063ca15c8731461052f578063d547741f1461054c578063f0f57a19146105855761011b565b8063a217fddf146104f4578063b11e3c1a146104fc5761011b565b80635a27240314610366578063631036ad146103ad5780639010d07c1461046f57806391d14854146104bb5761011b565b806336568abe116100ee57806336568abe1461025b57806340c1b47814610294578063435e60ae1461029c578063550f1a91146102a45761011b565b80630a36dc4c14610120578063248a9ca31461013a5780632f2ff15d1461015757806335a4103414610192575b600080fd5b610128610647565b60408051918252519081900360200190f35b6101286004803603602081101561015057600080fd5b503561066b565b6101906004803603604081101561016d57600080fd5b508035906020013573ffffffffffffffffffffffffffffffffffffffff16610683565b005b610190600480360360608110156101a857600080fd5b813591908101906040810160208201356401000000008111156101ca57600080fd5b8201836020820111156101dc57600080fd5b803590602001918460208302840111640100000000831117156101fe57600080fd5b91939092909160208101903564010000000081111561021c57600080fd5b82018360208201111561022e57600080fd5b8035906020019184602083028401116401000000008311171561025057600080fd5b509092509050610709565b6101906004803603604081101561027157600080fd5b508035906020013573ffffffffffffffffffffffffffffffffffffffff16610791565b610128610826565b61012861084a565b610190600480360360408110156102ba57600080fd5b8101906020810181356401000000008111156102d557600080fd5b8201836020820111156102e757600080fd5b8035906020019184602083028401116401000000008311171561030957600080fd5b91939092909160208101903564010000000081111561032757600080fd5b82018360208201111561033957600080fd5b8035906020019184602083028401116401000000008311171561035b57600080fd5b50909250905061086e565b6103996004803603602081101561037c57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166108a1565b604080519115158252519081900360200190f35b610190600480360360408110156103c357600080fd5b8101906020810181356401000000008111156103de57600080fd5b8201836020820111156103f057600080fd5b8035906020019184602083028401116401000000008311171561041257600080fd5b91939092909160208101903564010000000081111561043057600080fd5b82018360208201111561044257600080fd5b8035906020019184602083028401116401000000008311171561046457600080fd5b509092509050610922565b6104926004803603604081101561048557600080fd5b508035906020013561094f565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b610399600480360360408110156104d157600080fd5b508035906020013573ffffffffffffffffffffffffffffffffffffffff16610970565b610128610988565b6103996004803603602081101561051257600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661098d565b6101286004803603602081101561054557600080fd5b5035610999565b6101906004803603604081101561056257600080fd5b508035906020013573ffffffffffffffffffffffffffffffffffffffff166109b0565b6101906004803603604081101561059b57600080fd5b8101906020810181356401000000008111156105b657600080fd5b8201836020820111156105c857600080fd5b803590602001918460208302840111640100000000831117156105ea57600080fd5b91939092909160208101903564010000000081111561060857600080fd5b82018360208201111561061a57600080fd5b8035906020019184602083028401116401000000008311171561063c57600080fd5b509092509050610a23565b7f49535355455f415353455400000000000000000000000000000000000000000081565b6000818152602081905260409020600201545b919050565b6000828152602081905260409020600201546106a6906106a1610a72565b610970565b6106fb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180610ecc602f913960400191505060405180910390fd5b6107058282610a76565b5050565b6107123361098d565b61077d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f4f6e6c792061646d696e00000000000000000000000000000000000000000000604482015290519081900360640190fd5b61078a8585858585610af9565b5050505050565b610799610a72565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461081c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180610f2b602f913960400191505060405180910390fd5b6107058282610c03565b7f4255524e5f41535345540000000000000000000000000000000000000000000081565b7f4c6e4465627453797374656d000000000000000000000000000000000000000081565b61089b7f49535355455f415353455400000000000000000000000000000000000000000085858585610af9565b50505050565b60006108ac3361098d565b61091757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f4f6e6c792061646d696e00000000000000000000000000000000000000000000604482015290519081900360640190fd5b61067e6000836106fb565b61089b7f4255524e5f41535345540000000000000000000000000000000000000000000085858585610af9565b60008281526020819052604081206109679083610c86565b90505b92915050565b60008281526020819052604081206109679083610c92565b600081565b600061096a8183610970565b600081815260208190526040812061096a90610cb4565b6000828152602081905260409020600201546109ce906106a1610a72565b61081c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180610efb6030913960400191505060405180910390fd5b61089b7f4c6e4465627453797374656d000000000000000000000000000000000000000085858585610af9565b60006109678373ffffffffffffffffffffffffffffffffffffffff8416610cbf565b3390565b6000828152602081905260409020610a8e9082610a50565b1561070557610a9b610a72565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b828114610b6757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f706172616d657465722061646472657373206c656e677468206e6f7420657100604482015290519081900360640190fd5b60005b83811015610bfb57828282818110610b7e57fe5b9050602002013515610bc157610bbc86868684818110610b9a57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff16610683565b610bf3565b610bf386868684818110610bd157fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff166109b0565b600101610b6a565b505050505050565b6000828152602081905260409020610c1b9082610d09565b1561070557610c28610a72565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b60006109678383610d2b565b60006109678373ffffffffffffffffffffffffffffffffffffffff8416610da9565b600061096a82610dc1565b6000610ccb8383610da9565b610d015750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561096a565b50600061096a565b60006109678373ffffffffffffffffffffffffffffffffffffffff8416610dc5565b81546000908210610d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180610eaa6022913960400191505060405180910390fd5b826000018281548110610d9657fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b5490565b60008181526001830160205260408120548015610e9f5783547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8083019190810190600090879083908110610e1657fe5b9060005260206000200154905080876000018481548110610e3357fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080610e6357fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061096a565b600091505061096a56fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e6473416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e74416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b65416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a2646970667358221220b66af004edda0af362e69d30e74b8693d679ef17a340b78d1d6b1ba8b702fd5b64736f6c634300060c00330000000000000000000000009ffde95ad5f740fb7843a420b2432f77641e28e8
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061011b5760003560e01c80635a272403116100b2578063a217fddf11610081578063ca15c87311610066578063ca15c8731461052f578063d547741f1461054c578063f0f57a19146105855761011b565b8063a217fddf146104f4578063b11e3c1a146104fc5761011b565b80635a27240314610366578063631036ad146103ad5780639010d07c1461046f57806391d14854146104bb5761011b565b806336568abe116100ee57806336568abe1461025b57806340c1b47814610294578063435e60ae1461029c578063550f1a91146102a45761011b565b80630a36dc4c14610120578063248a9ca31461013a5780632f2ff15d1461015757806335a4103414610192575b600080fd5b610128610647565b60408051918252519081900360200190f35b6101286004803603602081101561015057600080fd5b503561066b565b6101906004803603604081101561016d57600080fd5b508035906020013573ffffffffffffffffffffffffffffffffffffffff16610683565b005b610190600480360360608110156101a857600080fd5b813591908101906040810160208201356401000000008111156101ca57600080fd5b8201836020820111156101dc57600080fd5b803590602001918460208302840111640100000000831117156101fe57600080fd5b91939092909160208101903564010000000081111561021c57600080fd5b82018360208201111561022e57600080fd5b8035906020019184602083028401116401000000008311171561025057600080fd5b509092509050610709565b6101906004803603604081101561027157600080fd5b508035906020013573ffffffffffffffffffffffffffffffffffffffff16610791565b610128610826565b61012861084a565b610190600480360360408110156102ba57600080fd5b8101906020810181356401000000008111156102d557600080fd5b8201836020820111156102e757600080fd5b8035906020019184602083028401116401000000008311171561030957600080fd5b91939092909160208101903564010000000081111561032757600080fd5b82018360208201111561033957600080fd5b8035906020019184602083028401116401000000008311171561035b57600080fd5b50909250905061086e565b6103996004803603602081101561037c57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166108a1565b604080519115158252519081900360200190f35b610190600480360360408110156103c357600080fd5b8101906020810181356401000000008111156103de57600080fd5b8201836020820111156103f057600080fd5b8035906020019184602083028401116401000000008311171561041257600080fd5b91939092909160208101903564010000000081111561043057600080fd5b82018360208201111561044257600080fd5b8035906020019184602083028401116401000000008311171561046457600080fd5b509092509050610922565b6104926004803603604081101561048557600080fd5b508035906020013561094f565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b610399600480360360408110156104d157600080fd5b508035906020013573ffffffffffffffffffffffffffffffffffffffff16610970565b610128610988565b6103996004803603602081101561051257600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661098d565b6101286004803603602081101561054557600080fd5b5035610999565b6101906004803603604081101561056257600080fd5b508035906020013573ffffffffffffffffffffffffffffffffffffffff166109b0565b6101906004803603604081101561059b57600080fd5b8101906020810181356401000000008111156105b657600080fd5b8201836020820111156105c857600080fd5b803590602001918460208302840111640100000000831117156105ea57600080fd5b91939092909160208101903564010000000081111561060857600080fd5b82018360208201111561061a57600080fd5b8035906020019184602083028401116401000000008311171561063c57600080fd5b509092509050610a23565b7f49535355455f415353455400000000000000000000000000000000000000000081565b6000818152602081905260409020600201545b919050565b6000828152602081905260409020600201546106a6906106a1610a72565b610970565b6106fb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180610ecc602f913960400191505060405180910390fd5b6107058282610a76565b5050565b6107123361098d565b61077d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f4f6e6c792061646d696e00000000000000000000000000000000000000000000604482015290519081900360640190fd5b61078a8585858585610af9565b5050505050565b610799610a72565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461081c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180610f2b602f913960400191505060405180910390fd5b6107058282610c03565b7f4255524e5f41535345540000000000000000000000000000000000000000000081565b7f4c6e4465627453797374656d000000000000000000000000000000000000000081565b61089b7f49535355455f415353455400000000000000000000000000000000000000000085858585610af9565b50505050565b60006108ac3361098d565b61091757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f4f6e6c792061646d696e00000000000000000000000000000000000000000000604482015290519081900360640190fd5b61067e6000836106fb565b61089b7f4255524e5f41535345540000000000000000000000000000000000000000000085858585610af9565b60008281526020819052604081206109679083610c86565b90505b92915050565b60008281526020819052604081206109679083610c92565b600081565b600061096a8183610970565b600081815260208190526040812061096a90610cb4565b6000828152602081905260409020600201546109ce906106a1610a72565b61081c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180610efb6030913960400191505060405180910390fd5b61089b7f4c6e4465627453797374656d000000000000000000000000000000000000000085858585610af9565b60006109678373ffffffffffffffffffffffffffffffffffffffff8416610cbf565b3390565b6000828152602081905260409020610a8e9082610a50565b1561070557610a9b610a72565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b828114610b6757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f706172616d657465722061646472657373206c656e677468206e6f7420657100604482015290519081900360640190fd5b60005b83811015610bfb57828282818110610b7e57fe5b9050602002013515610bc157610bbc86868684818110610b9a57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff16610683565b610bf3565b610bf386868684818110610bd157fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff166109b0565b600101610b6a565b505050505050565b6000828152602081905260409020610c1b9082610d09565b1561070557610c28610a72565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b60006109678383610d2b565b60006109678373ffffffffffffffffffffffffffffffffffffffff8416610da9565b600061096a82610dc1565b6000610ccb8383610da9565b610d015750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561096a565b50600061096a565b60006109678373ffffffffffffffffffffffffffffffffffffffff8416610dc5565b81546000908210610d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180610eaa6022913960400191505060405180910390fd5b826000018281548110610d9657fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b5490565b60008181526001830160205260408120548015610e9f5783547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8083019190810190600090879083908110610e1657fe5b9060005260206000200154905080876000018481548110610e3357fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080610e6357fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061096a565b600091505061096a56fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e6473416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e74416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b65416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a2646970667358221220b66af004edda0af362e69d30e74b8693d679ef17a340b78d1d6b1ba8b702fd5b64736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000009ffde95ad5f740fb7843a420b2432f77641e28e8
-----Decoded View---------------
Arg [0] : admin (address): 0x9FfDe95AD5f740fb7843A420B2432F77641e28E8
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000009ffde95ad5f740fb7843a420b2432f77641e28e8
Deployed Bytecode Sourcemap
25420:2448:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25585:58;;;:::i;:::-;;;;;;;;;;;;;;;;21959:114;;;;;;;;;;;;;;;;-1:-1:-1;21959:114:0;;:::i;22335:227::-;;;;;;;;;;;;;;;;-1:-1:-1;22335:227:0;;;;;;;;;:::i;:::-;;26405:243;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26405:243:0;;-1:-1:-1;26405:243:0;-1:-1:-1;26405:243:0;:::i;23544:209::-;;;;;;;;;;;;;;;;-1:-1:-1;23544:209:0;;;;;;;;;:::i;25662:56::-;;;:::i;25727:54::-;;;:::i;27407:145::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27407:145:0;;-1:-1:-1;27407:145:0;-1:-1:-1;27407:145:0;:::i;26085:172::-;;;;;;;;;;;;;;;;-1:-1:-1;26085:172:0;;;;:::i;:::-;;;;;;;;;;;;;;;;;;27560:143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27560:143:0;;-1:-1:-1;27560:143:0;-1:-1:-1;27560:143:0;:::i;21632:138::-;;;;;;;;;;;;;;;;-1:-1:-1;21632:138:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20593:139;;;;;;;;;;;;;;;;-1:-1:-1;20593:139:0;;;;;;;;;:::i;19338:49::-;;;:::i;25952:125::-;;;;;;;;;;;;;;;;-1:-1:-1;25952:125:0;;;;:::i;20906:127::-;;;;;;;;;;;;;;;;-1:-1:-1;20906:127:0;;:::i;22807:230::-;;;;;;;;;;;;;;;;-1:-1:-1;22807:230:0;;;;;;;;;:::i;27719:146::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27719:146:0;;-1:-1:-1;27719:146:0;-1:-1:-1;27719:146:0;:::i;25585:58::-;;;:::o;21959:114::-;22016:7;22043:12;;;;;;;;;;:22;;;21959:114;;;;:::o;22335:227::-;22427:6;:12;;;;;;;;;;:22;;;22419:45;;22451:12;:10;:12::i;:::-;22419:7;:45::i;:::-;22411:105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22529:25;22540:4;22546:7;22529:10;:25::i;:::-;22335:227;;:::o;26405:243::-;26556:19;26564:10;26556:7;:19::i;:::-;26548:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26603:37;26613:8;26623:9;;26634:5;;26603:9;:37::i;:::-;26405:243;;;;;:::o;23544:209::-;23642:12;:10;:12::i;:::-;23631:23;;:7;:23;;;23623:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23719:26;23731:4;23737:7;23719:11;:26::i;25662:56::-;;;:::o;25727:54::-;;;:::o;27407:145::-;27502:42;27512:16;27530:6;;27538:5;;27502:9;:42::i;:::-;27407:145;;;;:::o;26085:172::-;26137:4;26162:19;26170:10;26162:7;:19::i;:::-;26154:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26209:40;19383:4;26240:8;26209:10;:40::i;27560:143::-;27654:41;27664:15;27681:6;;27689:5;;27654:9;:41::i;21632:138::-;21705:7;21732:12;;;;;;;;;;:30;;21756:5;21732:23;:30::i;:::-;21725:37;;21632:138;;;;;:::o;20593:139::-;20662:4;20686:12;;;;;;;;;;:38;;20716:7;20686:29;:38::i;19338:49::-;19383:4;19338:49;:::o;25952:125::-;26008:4;26032:37;26008:4;26060:8;26032:7;:37::i;20906:127::-;20969:7;20996:12;;;;;;;;;;:29;;:27;:29::i;22807:230::-;22900:6;:12;;;;;;;;;;:22;;;22892:45;;22924:12;:10;:12::i;22892:45::-;22884:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27719:146;27817:40;27827:11;27840:8;;27850:6;;27817:9;:40::i;13795:143::-;13865:4;13889:41;13894:3;13914:14;;;13889:4;:41::i;17378:106::-;17466:10;17378:106;:::o;24787:188::-;24861:6;:12;;;;;;;;;;:33;;24886:7;24861:24;:33::i;:::-;24857:111;;;24943:12;:10;:12::i;:::-;24916:40;;24934:7;24916:40;;24928:4;24916:40;;;;;;;;;;24787:188;;:::o;26656:555::-;26807:32;;;26799:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26893:9;26888:316;26908:20;;;26888:316;;;27040:5;;27046:1;27040:8;;;;;;;;;;;;;;27036:157;;27069:33;27079:8;27089:9;;27099:1;27089:12;;;;;;;;;;;;;;;27069:9;:33::i;:::-;27036:157;;;27143:34;27154:8;27164:9;;27174:1;27164:12;;;;;;;;;;;;;;;27143:10;:34::i;:::-;26930:3;;26888:316;;;;26656:555;;;;;:::o;24983:192::-;25058:6;:12;;;;;;;;;;:36;;25086:7;25058:27;:36::i;:::-;25054:114;;;25143:12;:10;:12::i;:::-;25116:40;;25134:7;25116:40;;25128:4;25116:40;;;;;;;;;;24983:192;;:::o;15064:149::-;15138:7;15181:22;15185:3;15197:5;15181:3;:22::i;14349:158::-;14429:4;14453:46;14463:3;14483:14;;;14453:9;:46::i;14593:117::-;14656:7;14683:19;14691:3;14683:7;:19::i;8826:414::-;8889:4;8911:21;8921:3;8926:5;8911:9;:21::i;:::-;8906:327;;-1:-1:-1;8949:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;9132:18;;9110:19;;;:12;;;:19;;;;;;:40;;;;9165:11;;8906:327;-1:-1:-1;9216:5:0;9209:12;;14114:149;14187:4;14211:44;14219:3;14239:14;;;14211:7;:44::i;11737:204::-;11832:18;;11804:7;;11832:26;-1:-1:-1;11824:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11915:3;:11;;11927:5;11915:18;;;;;;;;;;;;;;;;11908:25;;11737:204;;;;:::o;11059:129::-;11132:4;11156:19;;;:12;;;;;:19;;;;;;:24;;;11059:129::o;11274:109::-;11357:18;;11274:109::o;9416:1557::-;9482:4;9621:19;;;:12;;;:19;;;;;;9657:15;;9653:1313;;10105:18;;10056:14;;;;;10105:22;;;;10032:21;;10105:3;;:22;;10392;;;;;;;;;;;;;;10372:42;;10538:9;10509:3;:11;;10521:13;10509:26;;;;;;;;;;;;;;;;;;;:38;;;;10615:23;;;10657:1;10615:12;;;:23;;;;;;10641:17;;;10615:43;;10767:17;;10615:3;;10767:17;;;;;;;;;;;;;;;;;;;;;;10862:3;:12;;:19;10875:5;10862:19;;;;;;;;;;;10855:26;;;10905:4;10898:11;;;;;;;;9653:1313;10949:5;10942:12;;;;
Swarm Source
ipfs://b66af004edda0af362e69d30e74b8693d679ef17a340b78d1d6b1ba8b702fd5b
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.