Overview
S Balance
S Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 11 from a total of 11 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Execute | 5918845 | 24 days ago | IN | 0 S | 0.00338926 | ||||
Schedule | 5918824 | 24 days ago | IN | 0 S | 0.0030085 | ||||
Grant Role | 5918657 | 24 days ago | IN | 0 S | 0.00283294 | ||||
Execute | 5917079 | 24 days ago | IN | 0 S | 0.00298193 | ||||
Schedule | 5917073 | 24 days ago | IN | 0 S | 0.00298507 | ||||
Execute | 5916813 | 24 days ago | IN | 0 S | 0.0026884 | ||||
Schedule | 5916797 | 24 days ago | IN | 0 S | 0.00298507 | ||||
Execute | 5916785 | 24 days ago | IN | 0 S | 0.0026884 | ||||
Schedule | 5916778 | 24 days ago | IN | 0 S | 0.00298507 | ||||
Execute | 5916737 | 24 days ago | IN | 0 S | 0.0026884 | ||||
Schedule | 5916635 | 24 days ago | IN | 0 S | 0.00298507 |
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x94869D50...28Fc288Da The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
Timelock
Compiler Version
v0.8.28+commit.7893614a
Optimization Enabled:
Yes with 100 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
12345678910111213141516171819202122232425// SPDX-License-Identifier: MITpragma solidity ^0.8.0;/*** @title Angles Timelock Contract* @author Angles*/import "@openzeppelin/contracts/governance/TimelockController.sol";interface CapitalPausable {function changeCapitalDisabled(bool) external;}contract Timelock is TimelockController {constructor(uint256 minDelay, address[] memory proposers, address[] memory executors) TimelockController(minDelay, proposers, executors, msg.sender) {}function pauseCapital(address target) external {require(hasRole(TIMELOCK_ADMIN_ROLE, msg.sender),"Timelock::pauseCapital: Call must come from admin.");CapitalPausable(target).changeCapitalDisabled(true);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (access/AccessControl.sol)pragma solidity ^0.8.0;import "./IAccessControl.sol";import "../utils/Context.sol";import "../utils/Strings.sol";import "../utils/introspection/ERC165.sol";/*** @dev Contract module that allows children to implement role-based access* control mechanisms. This is a lightweight version that doesn't allow enumerating role* members except through off-chain means by accessing the contract event logs. Some* applications may benefit from on-chain enumerability, for those cases see* {AccessControlEnumerable}.** Roles are referred to by their `bytes32` identifier. These should be exposed* in the external API and be unique. The best way to achieve this is by* using `public constant` hash digests:** ```solidity* bytes32 public constant MY_ROLE = keccak256("MY_ROLE");* ```** Roles can be used to represent a set of permissions. To restrict access to a
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)pragma solidity ^0.8.0;/*** @dev External interface of AccessControl declared to support ERC165 detection.*/interface IAccessControl {/*** @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`** `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite* {RoleAdminChanged} not being emitted signaling this.** _Available since v3.1._*/event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);/*** @dev Emitted when `account` is granted `role`.** `sender` is the account that originated the contract call, an admin role* bearer except when using {AccessControl-_setupRole}.*/event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (governance/TimelockController.sol)pragma solidity ^0.8.0;import "../access/AccessControl.sol";import "../token/ERC721/IERC721Receiver.sol";import "../token/ERC1155/IERC1155Receiver.sol";/*** @dev Contract module which acts as a timelocked controller. When set as the* owner of an `Ownable` smart contract, it enforces a timelock on all* `onlyOwner` maintenance operations. This gives time for users of the* controlled contract to exit before a potentially dangerous maintenance* operation is applied.** By default, this contract is self administered, meaning administration tasks* have to go through the timelock process. The proposer (resp executor) role* is in charge of proposing (resp executing) operations. A common use case is* to position this {TimelockController} as the owner of a smart contract, with* a multisig or a DAO as the sole proposer.** _Available since v3.3._*/contract TimelockController is AccessControl, IERC721Receiver, IERC1155Receiver {bytes32 public constant TIMELOCK_ADMIN_ROLE = keccak256("TIMELOCK_ADMIN_ROLE");
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)pragma solidity ^0.8.0;import "../../utils/introspection/IERC165.sol";/*** @dev _Available since v3.1._*/interface IERC1155Receiver is IERC165 {/*** @dev Handles the receipt of a single ERC1155 token type. This function is* called at the end of a `safeTransferFrom` after the balance has been updated.** NOTE: To accept the transfer, this must return* `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`* (i.e. 0xf23a6e61, or its own function selector).** @param operator The address which initiated the transfer (i.e. msg.sender)* @param from The address which previously owned the token* @param id The ID of the token being transferred* @param value The amount of tokens being transferred* @param data Additional data with no specified format* @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed*/
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)pragma solidity ^0.8.0;/*** @title ERC721 token receiver interface* @dev Interface for any contract that wants to support safeTransfers* from ERC721 asset contracts.*/interface IERC721Receiver {/*** @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}* by `operator` from `from`, this function is called.** It must return its Solidity selector to confirm the token transfer.* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.** The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.*/function onERC721Received(address operator,address from,uint256 tokenId,bytes calldata data) external returns (bytes4);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)pragma solidity ^0.8.0;/*** @dev Provides information about the current execution context, including the* sender of the transaction and its data. While these are generally available* via msg.sender and msg.data, they should not be accessed in such a direct* manner, since when dealing with meta-transactions the account sending and* paying for execution may not be the actual sender (as far as an application* is concerned).** This contract is only required for intermediate, library-like contracts.*/abstract contract Context {function _msgSender() internal view virtual returns (address) {return msg.sender;}function _msgData() internal view virtual returns (bytes calldata) {return msg.data;}function _contextSuffixLength() internal view virtual returns (uint256) {return 0;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)pragma solidity ^0.8.0;import "./IERC165.sol";/*** @dev Implementation of the {IERC165} interface.** Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check* for the additional interface id that will be supported. For example:** ```solidity* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);* }* ```** Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.*/abstract contract ERC165 is IERC165 {/*** @dev See {IERC165-supportsInterface}.*/function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
12345678910111213141516171819202122232425// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)pragma solidity ^0.8.0;/*** @dev Interface of the ERC165 standard, as defined in the* https://eips.ethereum.org/EIPS/eip-165[EIP].** Implementers can declare support of contract interfaces, which can then be* queried by others ({ERC165Checker}).** For an implementation, see {ERC165}.*/interface IERC165 {/*** @dev Returns true if this contract implements the interface defined by* `interfaceId`. See the corresponding* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]* to learn more about how these ids are created.** This function call must use less than 30 000 gas.*/function supportsInterface(bytes4 interfaceId) external view returns (bool);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)pragma solidity ^0.8.0;/*** @dev Standard math utilities missing in the Solidity language.*/library Math {enum Rounding {Down, // Toward negative infinityUp, // Toward infinityZero // Toward zero}/*** @dev Returns the largest of two numbers.*/function max(uint256 a, uint256 b) internal pure returns (uint256) {return a > b ? a : b;}/*** @dev Returns the smallest of two numbers.*/function min(uint256 a, uint256 b) internal pure returns (uint256) {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)pragma solidity ^0.8.0;/*** @dev Standard signed math utilities missing in the Solidity language.*/library SignedMath {/*** @dev Returns the largest of two signed numbers.*/function max(int256 a, int256 b) internal pure returns (int256) {return a > b ? a : b;}/*** @dev Returns the smallest of two signed numbers.*/function min(int256 a, int256 b) internal pure returns (int256) {return a < b ? a : b;}/*** @dev Returns the average of two signed numbers without overflow.* The result is rounded towards zero.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)pragma solidity ^0.8.0;import "./math/Math.sol";import "./math/SignedMath.sol";/*** @dev String operations.*/library Strings {bytes16 private constant _SYMBOLS = "0123456789abcdef";uint8 private constant _ADDRESS_LENGTH = 20;/*** @dev Converts a `uint256` to its ASCII `string` decimal representation.*/function toString(uint256 value) internal pure returns (string memory) {unchecked {uint256 length = Math.log10(value) + 1;string memory buffer = new string(length);uint256 ptr;/// @solidity memory-safe-assemblyassembly {ptr := add(buffer, add(32, length))
1234567891011121314151617181920{"optimizer": {"enabled": true,"runs": 100},"evmVersion": "paris","outputSelection": {"*": {"*": ["evm.bytecode","evm.deployedBytecode","devdoc","userdoc","metadata","abi"]}},"libraries": {}}
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"minDelay","type":"uint256"},{"internalType":"address[]","name":"proposers","type":"address[]"},{"internalType":"address[]","name":"executors","type":"address[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"id","type":"bytes32"},{"indexed":true,"internalType":"uint256","name":"index","type":"uint256"},{"indexed":false,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"CallExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"id","type":"bytes32"},{"indexed":false,"internalType":"bytes32","name":"salt","type":"bytes32"}],"name":"CallSalt","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"id","type":"bytes32"},{"indexed":true,"internalType":"uint256","name":"index","type":"uint256"},{"indexed":false,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"},{"indexed":false,"internalType":"bytes32","name":"predecessor","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"delay","type":"uint256"}],"name":"CallScheduled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"Cancelled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldDuration","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newDuration","type":"uint256"}],"name":"MinDelayChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"inputs":[],"name":"CANCELLER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EXECUTOR_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROPOSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TIMELOCK_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"cancel","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"payload","type":"bytes"},{"internalType":"bytes32","name":"predecessor","type":"bytes32"},{"internalType":"bytes32","name":"salt","type":"bytes32"}],"name":"execute","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"payloads","type":"bytes[]"},{"internalType":"bytes32","name":"predecessor","type":"bytes32"},{"internalType":"bytes32","name":"salt","type":"bytes32"}],"name":"executeBatch","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"getMinDelay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"id","type":"bytes32"}],"name":"getTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"bytes32","name":"predecessor","type":"bytes32"},{"internalType":"bytes32","name":"salt","type":"bytes32"}],"name":"hashOperation","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"payloads","type":"bytes[]"},{"internalType":"bytes32","name":"predecessor","type":"bytes32"},{"internalType":"bytes32","name":"salt","type":"bytes32"}],"name":"hashOperationBatch","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"isOperation","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"isOperationDone","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"isOperationPending","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"isOperationReady","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155BatchReceived","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"pauseCapital","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"bytes32","name":"predecessor","type":"bytes32"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256","name":"delay","type":"uint256"}],"name":"schedule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"payloads","type":"bytes[]"},{"internalType":"bytes32","name":"predecessor","type":"bytes32"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256","name":"delay","type":"uint256"}],"name":"scheduleBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"unpauseCapital","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newDelay","type":"uint256"}],"name":"updateDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Deployed Bytecode
0x6080604052600436106101915760003560e01c80638065657f116100d7578063b1c5f42711610085578063b1c5f427146104c9578063bc197c81146104e9578063c4d252f514610515578063d45c443514610535578063d547741f14610562578063e38335e514610582578063f23a6e6114610595578063f27a0c92146105c157600080fd5b80638065657f146103de5780638a0eb002146103fe5780638f2a0bb01461041e5780638f61f4f51461043e57806391d1485414610460578063a217fddf14610480578063b08e51c01461049557600080fd5b8063150b7a021161013f578063150b7a0214610299578063248a9ca3146102dd5780632ab0f5291461030d5780632f2ff15d1461033e57806331d507501461035e57806336568abe1461037e578063584b153e1461039e57806364d62353146103be57600080fd5b806301d5062a1461019d57806301ffc9a7146101bf57806307bd0265146101f45780630d3cf6fc146102245780630e4d473114610246578063134008d31461026657806313bc9f201461027957600080fd5b3661019857005b600080fd5b3480156101a957600080fd5b506101bd6101b8366004611550565b6105d6565b005b3480156101cb57600080fd5b506101df6101da3660046115c4565b61069a565b60405190151581526020015b60405180910390f35b34801561020057600080fd5b50610216600080516020611f3283398151915281565b6040519081526020016101eb565b34801561023057600080fd5b50610216600080516020611ef283398151915281565b34801561025257600080fd5b506101bd6102613660046115ee565b6106c5565b6101bd610274366004611609565b6107a7565b34801561028557600080fd5b506101df610294366004611674565b61084a565b3480156102a557600080fd5b506102c46102b4366004611742565b630a85bd0160e11b949350505050565b6040516001600160e01b031990911681526020016101eb565b3480156102e957600080fd5b506102166102f8366004611674565b60009081526020819052604090206001015490565b34801561031957600080fd5b506101df610328366004611674565b6000908152600160208190526040909120541490565b34801561034a57600080fd5b506101bd6103593660046117a9565b610870565b34801561036a57600080fd5b506101df610379366004611674565b61089a565b34801561038a57600080fd5b506101bd6103993660046117a9565b6108b3565b3480156103aa57600080fd5b506101df6103b9366004611674565b610931565b3480156103ca57600080fd5b506101bd6103d9366004611674565b610947565b3480156103ea57600080fd5b506102166103f9366004611609565b6109eb565b34801561040a57600080fd5b506101bd6104193660046115ee565b610a2a565b34801561042a57600080fd5b506101bd610439366004611819565b610ad8565b34801561044a57600080fd5b50610216600080516020611f1283398151915281565b34801561046c57600080fd5b506101df61047b3660046117a9565b610c51565b34801561048c57600080fd5b50610216600081565b3480156104a157600080fd5b506102167ffd643c72710c63c0180259aba6b2d05451e3591a24e58b62239378085726f78381565b3480156104d557600080fd5b506102166104e43660046118d4565b610c7a565b3480156104f557600080fd5b506102c4610504366004611a08565b63bc197c8160e01b95945050505050565b34801561052157600080fd5b506101bd610530366004611674565b610cbf565b34801561054157600080fd5b50610216610550366004611674565b60009081526001602052604090205490565b34801561056e57600080fd5b506101bd61057d3660046117a9565b610d94565b6101bd6105903660046118d4565b610db9565b3480156105a157600080fd5b506102c46105b0366004611abb565b63f23a6e6160e01b95945050505050565b3480156105cd57600080fd5b50600254610216565b600080516020611f128339815191526105ee81610f2b565b60006105fe8989898989896109eb565b905061060a8184610f38565b6000817f4cf4410cc57040e44862ef0f45f3dd5a5e02db8eb8add648d4b0e236f1d07dca8b8b8b8b8b8a60405161064696959493929190611b3c565b60405180910390a3831561068f57807f20fda5fd27a1ea7bf5b9567f143ac5470bb059374a27e8f67cb44f946f6d03878560405161068691815260200190565b60405180910390a25b505050505050505050565b60006001600160e01b03198216630271189760e51b14806106bf57506106bf82611027565b92915050565b6106dd600080516020611ef283398151915233610c51565b6107495760405162461bcd60e51b815260206004820152603260248201527f54696d656c6f636b3a3a70617573654361706974616c3a2043616c6c206d75736044820152713a1031b7b6b290333937b69030b236b4b71760711b60648201526084015b60405180910390fd5b60405163da94ec2b60e01b8152600160048201526001600160a01b0382169063da94ec2b906024015b600060405180830381600087803b15801561078c57600080fd5b505af11580156107a0573d6000803e3d6000fd5b5050505050565b600080516020611f328339815191526107c1816000610c51565b6107cf576107cf813361105c565b60006107df8888888888886109eb565b90506107eb81856110b5565b6107f788888888611151565b6000817fc2617efa69bab66782fa219543714338489c4e9e178271560a91b82c3f612b588a8a8a8a60405161082f9493929190611b79565b60405180910390a36108408161121d565b5050505050505050565b6000818152600160205260408120546001811180156108695750428111155b9392505050565b60008281526020819052604090206001015461088b81610f2b565b6108958383611256565b505050565b60008181526001602052604081205481905b1192915050565b6001600160a01b03811633146109235760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610740565b61092d82826112da565b5050565b60008181526001602081905260408220546108ac565b3330146109aa5760405162461bcd60e51b815260206004820152602b60248201527f54696d656c6f636b436f6e74726f6c6c65723a2063616c6c6572206d7573742060448201526a62652074696d656c6f636b60a81b6064820152608401610740565b60025460408051918252602082018390527f11c24f4ead16507c69ac467fbd5e4eed5fb5c699626d2cc6d66421df253886d5910160405180910390a1600255565b6000868686868686604051602001610a0896959493929190611b3c565b6040516020818303038152906040528051906020012090509695505050505050565b610a42600080516020611ef283398151915233610c51565b610aab5760405162461bcd60e51b815260206004820152603460248201527f54696d656c6f636b3a3a756e70617573654361706974616c3a2043616c6c206d6044820152733ab9ba1031b7b6b290333937b69030b236b4b71760611b6064820152608401610740565b60405163da94ec2b60e01b8152600060048201526001600160a01b0382169063da94ec2b90602401610772565b600080516020611f12833981519152610af081610f2b565b888714610b0f5760405162461bcd60e51b815260040161074090611ba1565b888514610b2e5760405162461bcd60e51b815260040161074090611ba1565b6000610b408b8b8b8b8b8b8b8b610c7a565b9050610b4c8184610f38565b60005b8a811015610c025780827f4cf4410cc57040e44862ef0f45f3dd5a5e02db8eb8add648d4b0e236f1d07dca8e8e85818110610b8c57610b8c611be4565b9050602002016020810190610ba191906115ee565b8d8d86818110610bb357610bb3611be4565b905060200201358c8c87818110610bcc57610bcc611be4565b9050602002810190610bde9190611bfa565b8c8b604051610bf296959493929190611b3c565b60405180910390a3600101610b4f565b508315610c4457807f20fda5fd27a1ea7bf5b9567f143ac5470bb059374a27e8f67cb44f946f6d038785604051610c3b91815260200190565b60405180910390a25b5050505050505050505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b60008888888888888888604051602001610c9b989796959493929190611cd9565b60405160208183030381529060405280519060200120905098975050505050505050565b7ffd643c72710c63c0180259aba6b2d05451e3591a24e58b62239378085726f783610ce981610f2b565b610cf282610931565b610d585760405162461bcd60e51b815260206004820152603160248201527f54696d656c6f636b436f6e74726f6c6c65723a206f7065726174696f6e2063616044820152701b9b9bdd0818994818d85b98d95b1b1959607a1b6064820152608401610740565b6000828152600160205260408082208290555183917fbaa1eb22f2a492ba1a5fea61b8df4d27c6c8b5f3971e63bb58fa14ff72eedb7091a25050565b600082815260208190526040902060010154610daf81610f2b565b61089583836112da565b600080516020611f32833981519152610dd3816000610c51565b610de157610de1813361105c565b878614610e005760405162461bcd60e51b815260040161074090611ba1565b878414610e1f5760405162461bcd60e51b815260040161074090611ba1565b6000610e318a8a8a8a8a8a8a8a610c7a565b9050610e3d81856110b5565b60005b89811015610f155760008b8b83818110610e5c57610e5c611be4565b9050602002016020810190610e7191906115ee565b905060008a8a84818110610e8757610e87611be4565b9050602002013590503660008a8a86818110610ea557610ea5611be4565b9050602002810190610eb79190611bfa565b91509150610ec784848484611151565b84867fc2617efa69bab66782fa219543714338489c4e9e178271560a91b82c3f612b5886868686604051610efe9493929190611b79565b60405180910390a350505050806001019050610e40565b50610f1f8161121d565b50505050505050505050565b610f35813361105c565b50565b610f418261089a565b15610fa65760405162461bcd60e51b815260206004820152602f60248201527f54696d656c6f636b436f6e74726f6c6c65723a206f7065726174696f6e20616c60448201526e1c9958591e481cd8da19591d5b1959608a1b6064820152608401610740565b6002548110156110075760405162461bcd60e51b815260206004820152602660248201527f54696d656c6f636b436f6e74726f6c6c65723a20696e73756666696369656e746044820152652064656c617960d01b6064820152608401610740565b6110118142611d90565b6000928352600160205260409092209190915550565b60006001600160e01b03198216637965db0b60e01b14806106bf57506301ffc9a760e01b6001600160e01b03198316146106bf565b6110668282610c51565b61092d576110738161133f565b61107e836020611351565b60405160200161108f929190611dc7565b60408051601f198184030181529082905262461bcd60e51b825261074091600401611e36565b6110be8261084a565b6110da5760405162461bcd60e51b815260040161074090611e69565b8015806110f65750600081815260016020819052604090912054145b61092d5760405162461bcd60e51b815260206004820152602660248201527f54696d656c6f636b436f6e74726f6c6c65723a206d697373696e6720646570656044820152656e64656e637960d01b6064820152608401610740565b6000846001600160a01b031684848460405161116e929190611eb3565b60006040518083038185875af1925050503d80600081146111ab576040519150601f19603f3d011682016040523d82523d6000602084013e6111b0565b606091505b50509050806107a05760405162461bcd60e51b815260206004820152603360248201527f54696d656c6f636b436f6e74726f6c6c65723a20756e6465726c79696e6720746044820152721c985b9cd858dd1a5bdb881c995d995c9d1959606a1b6064820152608401610740565b6112268161084a565b6112425760405162461bcd60e51b815260040161074090611e69565b600090815260016020819052604090912055565b6112608282610c51565b61092d576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556112963390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6112e48282610c51565b1561092d576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60606106bf6001600160a01b03831660145b60606000611360836002611ec3565b61136b906002611d90565b6001600160401b038111156113825761138261168d565b6040519080825280601f01601f1916602001820160405280156113ac576020820181803683370190505b509050600360fc1b816000815181106113c7576113c7611be4565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106113f6576113f6611be4565b60200101906001600160f81b031916908160001a905350600061141a846002611ec3565b611425906001611d90565b90505b600181111561149d576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061145957611459611be4565b1a60f81b82828151811061146f5761146f611be4565b60200101906001600160f81b031916908160001a90535060049490941c9361149681611eda565b9050611428565b5083156108695760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610740565b80356001600160a01b038116811461150357600080fd5b919050565b60008083601f84011261151a57600080fd5b5081356001600160401b0381111561153157600080fd5b60208301915083602082850101111561154957600080fd5b9250929050565b600080600080600080600060c0888a03121561156b57600080fd5b611574886114ec565b96506020880135955060408801356001600160401b0381111561159657600080fd5b6115a28a828b01611508565b989b979a50986060810135976080820135975060a09091013595509350505050565b6000602082840312156115d657600080fd5b81356001600160e01b03198116811461086957600080fd5b60006020828403121561160057600080fd5b610869826114ec565b60008060008060008060a0878903121561162257600080fd5b61162b876114ec565b95506020870135945060408701356001600160401b0381111561164d57600080fd5b61165989828a01611508565b979a9699509760608101359660809091013595509350505050565b60006020828403121561168657600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156116cb576116cb61168d565b604052919050565b600082601f8301126116e457600080fd5b81356001600160401b038111156116fd576116fd61168d565b611710601f8201601f19166020016116a3565b81815284602083860101111561172557600080fd5b816020850160208301376000918101602001919091529392505050565b6000806000806080858703121561175857600080fd5b611761856114ec565b935061176f602086016114ec565b92506040850135915060608501356001600160401b0381111561179157600080fd5b61179d878288016116d3565b91505092959194509250565b600080604083850312156117bc57600080fd5b823591506117cc602084016114ec565b90509250929050565b60008083601f8401126117e757600080fd5b5081356001600160401b038111156117fe57600080fd5b6020830191508360208260051b850101111561154957600080fd5b600080600080600080600080600060c08a8c03121561183757600080fd5b89356001600160401b0381111561184d57600080fd5b6118598c828d016117d5565b909a5098505060208a01356001600160401b0381111561187857600080fd5b6118848c828d016117d5565b90985096505060408a01356001600160401b038111156118a357600080fd5b6118af8c828d016117d5565b9a9d999c50979a969997986060880135976080810135975060a0013595509350505050565b60008060008060008060008060a0898b0312156118f057600080fd5b88356001600160401b0381111561190657600080fd5b6119128b828c016117d5565b90995097505060208901356001600160401b0381111561193157600080fd5b61193d8b828c016117d5565b90975095505060408901356001600160401b0381111561195c57600080fd5b6119688b828c016117d5565b999c989b509699959896976060870135966080013595509350505050565b600082601f83011261199757600080fd5b81356001600160401b038111156119b0576119b061168d565b8060051b6119c0602082016116a3565b918252602081850181019290810190868411156119dc57600080fd5b6020860192505b838310156119fe5782358252602092830192909101906119e3565b9695505050505050565b600080600080600060a08688031215611a2057600080fd5b611a29866114ec565b9450611a37602087016114ec565b935060408601356001600160401b03811115611a5257600080fd5b611a5e88828901611986565b93505060608601356001600160401b03811115611a7a57600080fd5b611a8688828901611986565b92505060808601356001600160401b03811115611aa257600080fd5b611aae888289016116d3565b9150509295509295909350565b600080600080600060a08688031215611ad357600080fd5b611adc866114ec565b9450611aea602087016114ec565b9350604086013592506060860135915060808601356001600160401b03811115611aa257600080fd5b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b60018060a01b038716815285602082015260a060408201526000611b6460a083018688611b13565b60608301949094525060800152949350505050565b60018060a01b03851681528360208201526060604082015260006119fe606083018486611b13565b60208082526023908201527f54696d656c6f636b436f6e74726f6c6c65723a206c656e677468206d69736d616040820152620e8c6d60eb1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6000808335601e19843603018112611c1157600080fd5b8301803591506001600160401b03821115611c2b57600080fd5b60200191503681900382131561154957600080fd5b60008383855260208501945060208460051b8201018360005b86811015611ccd57838303601f19018852813536879003601e19018112611c7f57600080fd5b86016020810190356001600160401b03811115611c9b57600080fd5b803603821315611caa57600080fd5b611cb5858284611b13565b60209a8b019a90955093909301925050600101611c59565b50909695505050505050565b60a0808252810188905260008960c08301825b8b811015611d1a576001600160a01b03611d05846114ec565b16825260209283019290910190600101611cec565b5083810360208501528881526001600160fb1b03891115611d3a57600080fd5b8860051b9150818a60208301370182810360209081016040850152611d629082018789611c40565b60608401959095525050608001529695505050505050565b634e487b7160e01b600052601160045260246000fd5b808201808211156106bf576106bf611d7a565b60005b83811015611dbe578181015183820152602001611da6565b50506000910152565b76020b1b1b2b9b9a1b7b73a3937b61d1030b1b1b7bab73a1604d1b815260008351611df9816017850160208801611da3565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351611e2a816028840160208801611da3565b01602801949350505050565b6020815260008251806020840152611e55816040850160208701611da3565b601f01601f19169190910160400192915050565b6020808252602a908201527f54696d656c6f636b436f6e74726f6c6c65723a206f7065726174696f6e206973604082015269206e6f7420726561647960b01b606082015260800190565b8183823760009101908152919050565b80820281158282048414176106bf576106bf611d7a565b600081611ee957611ee9611d7a565b50600019019056fe5f58e3a2316349923ce3780f8d587db2d72378aed66a8261c916544fa6846ca5b09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc1d8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e63a2646970667358221220fe54b9574b5f50e806b1293e1b56f846e20ccdbef9e86d9cdbc14ed9ea25299a64736f6c634300081c0033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.