Overview
APE Balance
APE Value
$0.00More Info
Private Name Tags
ContractCreator
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x0f5E09c2...57361dE23 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
GTokenLockedDepositNft
Compiler Version
v0.8.23+commit.f704f362
Optimization Enabled:
Yes with 800 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity 0.8.23;import {ERC721, ERC721Enumerable} from "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";import {IERC20Metadata} from "@openzeppelin/contracts/interfaces/IERC20Metadata.sol";import {IERC4626} from "@openzeppelin/contracts/interfaces/IERC4626.sol";import "../interfaces/IGTokenLockedDepositNft.sol";/*** @dev Receipt NFT for a gToken locked deposits*/contract GTokenLockedDepositNft is ERC721Enumerable, IGTokenLockedDepositNft {address public immutable gToken;IGTokenLockedDepositNftDesign public design;uint8 public designDecimals;constructor(string memory name,string memory symbol,address _gToken,IGTokenLockedDepositNftDesign _design,uint8 _designDecimals) ERC721(name, symbol) {gToken = _gToken;
123456// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (interfaces/IERC20Metadata.sol)pragma solidity ^0.8.0;import "../token/ERC20/extensions/IERC20Metadata.sol";
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC4626.sol)pragma solidity ^0.8.0;import "../token/ERC20/IERC20.sol";import "../token/ERC20/extensions/IERC20Metadata.sol";/*** @dev Interface of the ERC4626 "Tokenized Vault Standard", as defined in* https://eips.ethereum.org/EIPS/eip-4626[ERC-4626].** _Available since v4.7._*/interface IERC4626 is IERC20, IERC20Metadata {event Deposit(address indexed sender, address indexed owner, uint256 assets, uint256 shares);event Withdraw(address indexed sender,address indexed receiver,address indexed owner,uint256 assets,uint256 shares);/**
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)pragma solidity ^0.8.0;import "../IERC20.sol";/*** @dev Interface for the optional metadata functions from the ERC20 standard.** _Available since v4.1._*/interface IERC20Metadata is IERC20 {/*** @dev Returns the name of the token.*/function name() external view returns (string memory);/*** @dev Returns the symbol of the token.*/function symbol() external view returns (string memory);/*** @dev Returns the decimals places of the token.*/
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)pragma solidity ^0.8.0;/*** @dev Interface of the ERC20 standard as defined in the EIP.*/interface IERC20 {/*** @dev Emitted when `value` tokens are moved from one account (`from`) to* another (`to`).** Note that `value` may be zero.*/event Transfer(address indexed from, address indexed to, uint256 value);/*** @dev Emitted when the allowance of a `spender` for an `owner` is set by* a call to {approve}. `value` is the new allowance.*/event Approval(address indexed owner, address indexed spender, uint256 value);/*** @dev Returns the amount of tokens in existence.*/
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/ERC721.sol)pragma solidity ^0.8.0;import "./IERC721.sol";import "./IERC721Receiver.sol";import "./extensions/IERC721Metadata.sol";import "../../utils/Address.sol";import "../../utils/Context.sol";import "../../utils/Strings.sol";import "../../utils/introspection/ERC165.sol";/*** @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including* the Metadata extension, but not including the Enumerable extension, which is available separately as* {ERC721Enumerable}.*/contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {using Address for address;using Strings for uint256;// Token namestring private _name;// Token symbol
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Enumerable.sol)pragma solidity ^0.8.0;import "../ERC721.sol";import "./IERC721Enumerable.sol";/*** @dev This implements an optional extension of {ERC721} defined in the EIP that adds* enumerability of all the token ids in the contract as well as all token ids owned by each* account.*/abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {// Mapping from owner to list of owned token IDsmapping(address => mapping(uint256 => uint256)) private _ownedTokens;// Mapping from token ID to index of the owner tokens listmapping(uint256 => uint256) private _ownedTokensIndex;// Array with all token ids, used for enumerationuint256[] private _allTokens;// Mapping from token id to position in the allTokens arraymapping(uint256 => uint256) private _allTokensIndex;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)pragma solidity ^0.8.0;import "../IERC721.sol";/*** @title ERC-721 Non-Fungible Token Standard, optional enumeration extension* @dev See https://eips.ethereum.org/EIPS/eip-721*/interface IERC721Enumerable is IERC721 {/*** @dev Returns the total amount of tokens stored by the contract.*/function totalSupply() external view returns (uint256);/*** @dev Returns a token ID owned by `owner` at a given `index` of its token list.* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.*/function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);/*** @dev Returns a token ID at a given `index` of all the tokens stored by the contract.* Use along with {totalSupply} to enumerate all tokens.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)pragma solidity ^0.8.0;import "../IERC721.sol";/*** @title ERC-721 Non-Fungible Token Standard, optional metadata extension* @dev See https://eips.ethereum.org/EIPS/eip-721*/interface IERC721Metadata is IERC721 {/*** @dev Returns the token collection name.*/function name() external view returns (string memory);/*** @dev Returns the token collection symbol.*/function symbol() external view returns (string memory);/*** @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.*/function tokenURI(uint256 tokenId) external view returns (string memory);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/IERC721.sol)pragma solidity ^0.8.0;import "../../utils/introspection/IERC165.sol";/*** @dev Required interface of an ERC721 compliant contract.*/interface IERC721 is IERC165 {/*** @dev Emitted when `tokenId` token is transferred from `from` to `to`.*/event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);/*** @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.*/event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);/*** @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.*/event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
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.0) (utils/Address.sol)pragma solidity ^0.8.1;/*** @dev Collection of functions related to the address type*/library Address {/*** @dev Returns true if `account` is a contract.** [IMPORTANT]* ====* It is unsafe to assume that an address for which this function returns* false is an externally-owned account (EOA) and not a contract.** Among others, `isContract` will return false for the following* types of addresses:** - an externally-owned account* - a contract in construction* - an address where a contract will be created* - an address where a contract lived, but was destroyed** Furthermore, `isContract` will also return true if the target contract within
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))
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity 0.8.23;/*** @dev Interface for GToken contract*/interface IGToken {struct GnsPriceProvider {address addr;bytes signature;}struct LockedDeposit {address owner;uint256 shares; // collateralConfig.precisionuint256 assetsDeposited; // collateralConfig.precisionuint256 assetsDiscount; // collateralConfig.precisionuint256 atTimestamp; // timestampuint256 lockDuration; // timestamp}struct ContractAddresses {address asset;address owner; // 2-week timelock contractaddress manager; // 3-day timelock contractaddress admin; // bypasses timelock, access to emergency functions
123456789101112131415161718// SPDX-License-Identifier: MITpragma solidity 0.8.23;import {IERC721} from "@openzeppelin/contracts/token/ERC721/IERC721.sol";import "./IGTokenLockedDepositNftDesign.sol";/*** @dev Interface for GTokenLockedDepositNft contract*/interface IGTokenLockedDepositNft is IERC721 {function mint(address to, uint256 tokenId) external;function burn(uint256 tokenId) external;event DesignUpdated(IGTokenLockedDepositNftDesign newValue);event DesignDecimalsUpdated(uint8 newValue);}
123456789101112131415161718// SPDX-License-Identifier: MITpragma solidity 0.8.23;import "./IGToken.sol";/*** @dev Interface for GTokenLockedDepositNftDesign contract*/interface IGTokenLockedDepositNftDesign {function buildTokenURI(uint256 tokenId,IGToken.LockedDeposit memory lockedDeposit,string memory gTokenSymbol,string memory assetSymbol,uint8 numberInputDecimals,uint8 numberOutputDecimals) external pure returns (string memory);}
1234567891011121314151617181920{"optimizer": {"enabled": true,"runs": 800},"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":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"address","name":"_gToken","type":"address"},{"internalType":"contract IGTokenLockedDepositNftDesign","name":"_design","type":"address"},{"internalType":"uint8","name":"_designDecimals","type":"uint8"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"newValue","type":"uint8"}],"name":"DesignDecimalsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"contract IGTokenLockedDepositNftDesign","name":"newValue","type":"address"}],"name":"DesignUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"design","outputs":[{"internalType":"contract IGTokenLockedDepositNftDesign","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"designDecimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"gToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IGTokenLockedDepositNftDesign","name":"newValue","type":"address"}],"name":"updateDesign","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"newValue","type":"uint8"}],"name":"updateDesignDecimals","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061018d5760003560e01c80636352211e116100e357806395d89b411161008c578063b88d4fde11610066578063b88d4fde1461035a578063c87b56dd1461036d578063e985e9c51461038057600080fd5b806395d89b411461032c5780639c44b4d214610334578063a22cb4651461034757600080fd5b806370a08231116100bd57806370a08231146102df57806376ffb9bd146102f257806393f502061461031957600080fd5b80636352211e146102935780636c8aabb4146102a6578063701a71de146102b957600080fd5b806323b872dd1161014557806342842e0e1161011f57806342842e0e1461025a57806342966c681461026d5780634f6ccce71461028057600080fd5b806323b872dd146102215780632f745c591461023457806340c10f191461024757600080fd5b8063081812fc11610176578063081812fc146101cf578063095ea7b3146101fa57806318160ddd1461020f57600080fd5b806301ffc9a71461019257806306fdde03146101ba575b600080fd5b6101a56101a0366004611b5b565b6103bc565b60405190151581526020015b60405180910390f35b6101c26103e7565b6040516101b19190611bcf565b6101e26101dd366004611be2565b610479565b6040516001600160a01b0390911681526020016101b1565b61020d610208366004611c10565b6104a0565b005b6008545b6040519081526020016101b1565b61020d61022f366004611c3c565b6105ba565b610213610242366004611c10565b610631565b61020d610255366004611c10565b6106d9565b61020d610268366004611c3c565b61074d565b61020d61027b366004611be2565b610768565b61021361028e366004611be2565b6107da565b6101e26102a1366004611be2565b61087e565b61020d6102b4366004611c8c565b6108e3565b600a546102cd90600160a01b900460ff1681565b60405160ff90911681526020016101b1565b6102136102ed366004611ca9565b610a24565b6101e27f000000000000000000000000fc801e0d13ce9903d84137f3116c03cb9b3caf4081565b600a546101e2906001600160a01b031681565b6101c2610abe565b61020d610342366004611ca9565b610acd565b61020d610355366004611cc6565b610bec565b61020d610368366004611d73565b610bf7565b6101c261037b366004611be2565b610c75565b6101a561038e366004611e22565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60006001600160e01b0319821663780e9d6360e01b14806103e157506103e182610f7f565b92915050565b6060600080546103f690611e50565b80601f016020809104026020016040519081016040528092919081815260200182805461042290611e50565b801561046f5780601f106104445761010080835404028352916020019161046f565b820191906000526020600020905b81548152906001019060200180831161045257829003601f168201915b5050505050905090565b600061048482610fcf565b506000908152600460205260409020546001600160a01b031690565b60006104ab8261087e565b9050806001600160a01b0316836001600160a01b03160361051d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806105395750610539813361038e565b6105ab5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610514565b6105b58383611033565b505050565b6105c433826110a1565b6106265760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526c1c881bdc88185c1c1c9bdd9959609a1b6064820152608401610514565b6105b5838383611120565b600061063c83610a24565b82106106b05760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610514565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b336001600160a01b037f000000000000000000000000fc801e0d13ce9903d84137f3116c03cb9b3caf40161461073f5760405162461bcd60e51b815260206004820152600b60248201526a27a7262cafa3aa27a5a2a760a91b6044820152606401610514565b610749828261130d565b5050565b6105b583838360405180602001604052806000815250610bf7565b336001600160a01b037f000000000000000000000000fc801e0d13ce9903d84137f3116c03cb9b3caf4016146107ce5760405162461bcd60e51b815260206004820152600b60248201526a27a7262cafa3aa27a5a2a760a91b6044820152606401610514565b6107d781611327565b50565b60006107e560085490565b82106108595760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610514565b6008828154811061086c5761086c611e8a565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806103e15760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610514565b7f000000000000000000000000fc801e0d13ce9903d84137f3116c03cb9b3caf406001600160a01b031663481c6a756040518163ffffffff1660e01b8152600401602060405180830381865afa158015610941573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109659190611ea0565b6001600160a01b0316336001600160a01b0316146109b45760405162461bcd60e51b815260206004820152600c60248201526b27a7262cafa6a0a720a3a2a960a11b6044820152606401610514565b600a80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16600160a01b60ff8416908102919091179091556040519081527f602fad026c51bcd4203318336b0f271603ba04f58124783860753c61a94dc945906020015b60405180910390a150565b60006001600160a01b038216610aa25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160448201527f6c6964206f776e657200000000000000000000000000000000000000000000006064820152608401610514565b506001600160a01b031660009081526003602052604090205490565b6060600180546103f690611e50565b7f000000000000000000000000fc801e0d13ce9903d84137f3116c03cb9b3caf406001600160a01b031663481c6a756040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b2b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b4f9190611ea0565b6001600160a01b0316336001600160a01b031614610b9e5760405162461bcd60e51b815260206004820152600c60248201526b27a7262cafa6a0a720a3a2a960a11b6044820152606401610514565b600a80546001600160a01b0319166001600160a01b0383169081179091556040519081527f01df2dcc4e8485942a83320fe627e437aba6c78bdadd3051ff80e902ec7d041d90602001610a19565b6107493383836113ca565b610c0133836110a1565b610c635760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526c1c881bdc88185c1c1c9bdd9959609a1b6064820152608401610514565b610c6f84848484611498565b50505050565b6060610c8082610fcf565b600a546040516373c1cb3b60e11b8152600481018490526001600160a01b039182169163750863339185917f000000000000000000000000fc801e0d13ce9903d84137f3116c03cb9b3caf40169063e78396769060240160c060405180830381865afa158015610cf4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d189190611ebd565b7f000000000000000000000000fc801e0d13ce9903d84137f3116c03cb9b3caf406001600160a01b03166395d89b416040518163ffffffff1660e01b8152600401600060405180830381865afa158015610d76573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610d9e9190810190611f40565b7f000000000000000000000000fc801e0d13ce9903d84137f3116c03cb9b3caf406001600160a01b03166338d52e0f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610dfc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e209190611ea0565b6001600160a01b03166395d89b416040518163ffffffff1660e01b8152600401600060405180830381865afa158015610e5d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610e859190810190611f40565b7f000000000000000000000000fc801e0d13ce9903d84137f3116c03cb9b3caf406001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ee3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f079190611fb7565b600a5460405160e088901b6001600160e01b0319168152610f3a969594939291600160a01b900460ff1690600401611fd4565b600060405180830381865afa158015610f57573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526103e19190810190611f40565b60006001600160e01b031982166380ac58cd60e01b1480610fb057506001600160e01b03198216635b5e139f60e01b145b806103e157506301ffc9a760e01b6001600160e01b03198316146103e1565b6000818152600260205260409020546001600160a01b03166107d75760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610514565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906110688261087e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806110ad8361087e565b9050806001600160a01b0316846001600160a01b031614806110f457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806111185750836001600160a01b031661110d84610479565b6001600160a01b0316145b949350505050565b826001600160a01b03166111338261087e565b6001600160a01b0316146111975760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610514565b6001600160a01b0382166111f95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610514565b6112068383836001611516565b826001600160a01b03166112198261087e565b6001600160a01b03161461127d5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610514565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610749828260405180602001604052806000815250611652565b60006113328261087e565b9050611342816000846001611516565b61134b8261087e565b600083815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0385168085526003845282852080546000190190558785526002909352818420805490911690555192935084927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b816001600160a01b0316836001600160a01b03160361142b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610514565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6114a3848484611120565b6114af848484846116d0565b610c6f5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610514565b600181111561158d5760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e736563757469766520747260448201527f616e7366657273206e6f7420737570706f7274656400000000000000000000006064820152608401610514565b816001600160a01b0385166115e9576115e481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61160c565b836001600160a01b0316856001600160a01b03161461160c5761160c858261181c565b6001600160a01b03841661162857611623816118b9565b61164b565b846001600160a01b0316846001600160a01b03161461164b5761164b8482611968565b5050505050565b61165c83836119ac565b61166960008484846116d0565b6105b55760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610514565b60006001600160a01b0384163b1561181157604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061171490339089908890889060040161206d565b6020604051808303816000875af192505050801561174f575060408051601f3d908101601f1916820190925261174c918101906120a9565b60015b6117f7573d80801561177d576040519150601f19603f3d011682016040523d82523d6000602084013e611782565b606091505b5080516000036117ef5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610514565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611118565b506001949350505050565b6000600161182984610a24565b61183391906120c6565b600083815260076020526040902054909150808214611886576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906118cb906001906120c6565b600083815260096020526040812054600880549394509092849081106118f3576118f3611e8a565b90600052602060002001549050806008838154811061191457611914611e8a565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061194c5761194c6120e7565b6001900381819060005260206000200160009055905550505050565b600061197383610a24565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611a025760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610514565b6000818152600260205260409020546001600160a01b031615611a675760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610514565b611a75600083836001611516565b6000818152600260205260409020546001600160a01b031615611ada5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610514565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b0319811681146107d757600080fd5b600060208284031215611b6d57600080fd5b8135611b7881611b45565b9392505050565b60005b83811015611b9a578181015183820152602001611b82565b50506000910152565b60008151808452611bbb816020860160208601611b7f565b601f01601f19169290920160200192915050565b602081526000611b786020830184611ba3565b600060208284031215611bf457600080fd5b5035919050565b6001600160a01b03811681146107d757600080fd5b60008060408385031215611c2357600080fd5b8235611c2e81611bfb565b946020939093013593505050565b600080600060608486031215611c5157600080fd5b8335611c5c81611bfb565b92506020840135611c6c81611bfb565b929592945050506040919091013590565b60ff811681146107d757600080fd5b600060208284031215611c9e57600080fd5b8135611b7881611c7d565b600060208284031215611cbb57600080fd5b8135611b7881611bfb565b60008060408385031215611cd957600080fd5b8235611ce481611bfb565b915060208301358015158114611cf957600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611d4357611d43611d04565b604052919050565b600067ffffffffffffffff821115611d6557611d65611d04565b50601f01601f191660200190565b60008060008060808587031215611d8957600080fd5b8435611d9481611bfb565b93506020850135611da481611bfb565b925060408501359150606085013567ffffffffffffffff811115611dc757600080fd5b8501601f81018713611dd857600080fd5b8035611deb611de682611d4b565b611d1a565b818152886020838501011115611e0057600080fd5b8160208401602083013760006020838301015280935050505092959194509250565b60008060408385031215611e3557600080fd5b8235611e4081611bfb565b91506020830135611cf981611bfb565b600181811c90821680611e6457607f821691505b602082108103611e8457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611eb257600080fd5b8151611b7881611bfb565b600060c08284031215611ecf57600080fd5b60405160c0810181811067ffffffffffffffff82111715611ef257611ef2611d04565b6040528251611f0081611bfb565b808252506020830151602082015260408301516040820152606083015160608201526080830151608082015260a083015160a08201528091505092915050565b600060208284031215611f5257600080fd5b815167ffffffffffffffff811115611f6957600080fd5b8201601f81018413611f7a57600080fd5b8051611f88611de682611d4b565b818152856020838501011115611f9d57600080fd5b611fae826020830160208601611b7f565b95945050505050565b600060208284031215611fc957600080fd5b8151611b7881611c7d565b60006101608883526001600160a01b038851166020840152602088015160408401526040880151606084015260608801516080840152608088015160a084015260a088015160c08401528060e084015261203081840188611ba3565b90508281036101008401526120458187611ba3565b91505061205861012083018560ff169052565b60ff8316610140830152979650505050505050565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261209f6080830184611ba3565b9695505050505050565b6000602082840312156120bb57600080fd5b8151611b7881611b45565b818103818111156103e157634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fdfea26469706673582212209e3c830715a29080cfd1bafaf6ec6d97be92b7fae583f359286246151f9dc37864736f6c63430008170033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.