More Info
Private Name Tags
ContractCreator
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | Age | From | To | Amount | |
---|---|---|---|---|---|---|
4804016 | 2 hrs ago | 0.002 ETH | ||||
4804016 | 2 hrs ago | 0.002 ETH | ||||
4795414 | 4 hrs ago | 0.002 ETH | ||||
4795414 | 4 hrs ago | 0.002 ETH | ||||
4794622 | 4 hrs ago | 0.001 ETH | ||||
4794622 | 4 hrs ago | 0.001 ETH | ||||
4792963 | 5 hrs ago | 0.002 ETH | ||||
4792963 | 5 hrs ago | 0.002 ETH | ||||
4792555 | 5 hrs ago | 0.001 ETH | ||||
4792555 | 5 hrs ago | 0.001 ETH | ||||
4790173 | 5 hrs ago | 0.001 ETH | ||||
4790173 | 5 hrs ago | 0.001 ETH | ||||
4785824 | 7 hrs ago | 0.001 ETH | ||||
4785824 | 7 hrs ago | 0.001 ETH | ||||
4785263 | 7 hrs ago | 0.015 ETH | ||||
4785263 | 7 hrs ago | 0.015 ETH | ||||
4785170 | 7 hrs ago | 0.015 ETH | ||||
4785170 | 7 hrs ago | 0.015 ETH | ||||
4785086 | 7 hrs ago | 0.015 ETH | ||||
4785086 | 7 hrs ago | 0.015 ETH | ||||
4785010 | 7 hrs ago | 0.015 ETH | ||||
4785010 | 7 hrs ago | 0.015 ETH | ||||
4784835 | 7 hrs ago | 0.015 ETH | ||||
4784835 | 7 hrs ago | 0.015 ETH | ||||
4784786 | 7 hrs ago | 0.015 ETH |
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0xAcb35C2D...B5296641B The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
TransparentUpgradeableProxy
Compiler Version
v0.8.22+commit.4fc1097e
ZkSolc Version
v1.5.7
Optimization Enabled:
Yes with Mode 3
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.2.0) (proxy/transparent/TransparentUpgradeableProxy.sol)pragma solidity ^0.8.22;import {ERC1967Utils} from "../ERC1967/ERC1967Utils.sol";import {ERC1967Proxy} from "../ERC1967/ERC1967Proxy.sol";import {IERC1967} from "../../interfaces/IERC1967.sol";import {ProxyAdmin} from "./ProxyAdmin.sol";/*** @dev Interface for {TransparentUpgradeableProxy}. In order to implement transparency, {TransparentUpgradeableProxy}* does not implement this interface directly, and its upgradeability mechanism is implemented by an internal dispatch* mechanism. The compiler is unaware that these functions are implemented by {TransparentUpgradeableProxy} and will not* include them in the ABI so this interface must be used to interact with it.*/interface ITransparentUpgradeableProxy is IERC1967 {/// @dev See {UUPSUpgradeable-upgradeToAndCall}function upgradeToAndCall(address newImplementation, bytes calldata data) external payable;}/*** @dev This contract implements a proxy that is upgradeable through an associated {ProxyAdmin} instance.** To avoid https://medium.com/nomic-labs-blog/malicious-backdoors-in-ethereum-proxies-62629adf3357[proxy selector* clashing], which can potentially be used in an attack, this contract uses the
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.2.0) (proxy/ERC1967/ERC1967Utils.sol)pragma solidity ^0.8.22;import {IBeacon} from "../beacon/IBeacon.sol";import {IERC1967} from "../../interfaces/IERC1967.sol";import {Address} from "../../utils/Address.sol";import {StorageSlot} from "../../utils/StorageSlot.sol";/*** @dev This library provides getters and event emitting update functions for* https://eips.ethereum.org/EIPS/eip-1967[ERC-1967] slots.*/library ERC1967Utils {/*** @dev Storage slot with the address of the current implementation.* This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1.*/// solhint-disable-next-line private-vars-leading-underscorebytes32 internal constant IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;/*** @dev The `implementation` of the proxy is invalid.*/error ERC1967InvalidImplementation(address implementation);
123456789101112131415161718192021222324// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC1967.sol)pragma solidity ^0.8.20;/*** @dev ERC-1967: Proxy Storage Slots. This interface contains the events defined in the ERC.*/interface IERC1967 {/*** @dev Emitted when the implementation is upgraded.*/event Upgraded(address indexed implementation);/*** @dev Emitted when the admin account has changed.*/event AdminChanged(address previousAdmin, address newAdmin);/*** @dev Emitted when the beacon is changed.*/event BeaconUpgraded(address indexed beacon);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.2.0) (proxy/ERC1967/ERC1967Proxy.sol)pragma solidity ^0.8.22;import {Proxy} from "../Proxy.sol";import {ERC1967Utils} from "./ERC1967Utils.sol";/*** @dev This contract implements an upgradeable proxy. It is upgradeable because calls are delegated to an* implementation address that can be changed. This address is stored in storage in the location specified by* https://eips.ethereum.org/EIPS/eip-1967[ERC-1967], so that it doesn't conflict with the storage layout of the* implementation behind the proxy.*/contract ERC1967Proxy is Proxy {/*** @dev Initializes the upgradeable proxy with an initial implementation specified by `implementation`.** If `_data` is nonempty, it's used as data in a delegate call to `implementation`. This will typically be an* encoded function call, and allows initializing the storage of the proxy like a Solidity constructor.** Requirements:** - If `data` is empty, `msg.value` must be zero.*/constructor(address implementation, bytes memory _data) payable {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.2.0) (proxy/transparent/ProxyAdmin.sol)pragma solidity ^0.8.22;import {ITransparentUpgradeableProxy} from "./TransparentUpgradeableProxy.sol";import {Ownable} from "../../access/Ownable.sol";/*** @dev This is an auxiliary contract meant to be assigned as the admin of a {TransparentUpgradeableProxy}. For an* explanation of why you would want to use this see the documentation for {TransparentUpgradeableProxy}.*/contract ProxyAdmin is Ownable {/*** @dev The version of the upgrade interface of the contract. If this getter is missing, both `upgrade(address,address)`* and `upgradeAndCall(address,address,bytes)` are present, and `upgrade` must be used if no function should be called,* while `upgradeAndCall` will invoke the `receive` function if the third argument is the empty byte string.* If the getter returns `"5.0.0"`, only `upgradeAndCall(address,address,bytes)` is present, and the third argument must* be the empty byte string if no function should be called, making it impossible to invoke the `receive` function* during an upgrade.*/string public constant UPGRADE_INTERFACE_VERSION = "5.0.0";/*** @dev Sets the initial owner who can perform upgrades.*/
12345678910111213141516// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (proxy/beacon/IBeacon.sol)pragma solidity ^0.8.20;/*** @dev This is the interface that {BeaconProxy} expects of its beacon.*/interface IBeacon {/*** @dev Must return an address that can be used as a delegate call target.** {UpgradeableBeacon} will check that this address is a contract.*/function implementation() external view returns (address);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (utils/StorageSlot.sol)// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.pragma solidity ^0.8.20;/*** @dev Library for reading and writing primitive types to specific storage slots.** Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.* This library helps with reading and writing to such slots without the need for inline assembly.** The functions in this library return Slot structs that contain a `value` member that can be used to read or write.** Example usage to set ERC-1967 implementation slot:* ```solidity* contract ERC1967 {* // Define the slot. Alternatively, use the SlotDerivation library to derive the slot.* bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;** function _getImplementation() internal view returns (address) {* return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;* }** function _setImplementation(address newImplementation) internal {* require(newImplementation.code.length > 0);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.2.0) (utils/Address.sol)pragma solidity ^0.8.20;import {Errors} from "./Errors.sol";/*** @dev Collection of functions related to the address type*/library Address {/*** @dev There's no code at `target` (it is not a contract).*/error AddressEmptyCode(address target);/*** @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://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (proxy/Proxy.sol)pragma solidity ^0.8.20;/*** @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM* instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to* be specified by overriding the virtual {_implementation} function.** Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a* different contract through the {_delegate} function.** The success and return data of the delegated call will be returned back to the caller of the proxy.*/abstract contract Proxy {/*** @dev Delegates the current call to `implementation`.** This function does not return to its internal call site, it will return directly to the external caller.*/function _delegate(address implementation) internal virtual {assembly {// Copy msg.data. We take full control of memory in this inline assembly// block because it will not return to Solidity code. We overwrite the// Solidity scratch pad at memory position 0.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)pragma solidity ^0.8.20;import {Context} from "../utils/Context.sol";/*** @dev Contract module which provides a basic access control mechanism, where* there is an account (an owner) that can be granted exclusive access to* specific functions.** The initial owner is set to the address provided by the deployer. This can* later be changed with {transferOwnership}.** This module is used through inheritance. It will make available the modifier* `onlyOwner`, which can be applied to your functions to restrict their use to* the owner.*/abstract contract Ownable is Context {address private _owner;/*** @dev The caller account is not authorized to perform an operation.*/error OwnableUnauthorizedAccount(address account);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (utils/Errors.sol)pragma solidity ^0.8.20;/*** @dev Collection of common custom errors used in multiple contracts** IMPORTANT: Backwards compatibility is not guaranteed in future versions of the library.* It is recommended to avoid relying on the error API for critical functionality.** _Available since v5.1._*/library Errors {/*** @dev The ETH balance of the account is not enough to perform the operation.*/error InsufficientBalance(uint256 balance, uint256 needed);/*** @dev A call to an address target failed. The target may have reverted.*/error FailedCall();/*** @dev The deployment failed.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)pragma solidity ^0.8.20;/*** @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;
12345678910111213141516171819202122{"evmVersion": "paris","optimizer": {"enabled": true,"mode": "3"},"outputSelection": {"*": {"*": ["abi","metadata"],"": ["ast"]}},"detectMissingLibraries": false,"forceEVMLA": false,"enableEraVMExtensions": false,"libraries": {}}
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_logic","type":"address"},{"internalType":"address","name":"initialOwner","type":"address"},{"internalType":"bytes","name":"_data","type":"bytes"}],"stateMutability":"payable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"admin","type":"address"}],"name":"ERC1967InvalidAdmin","type":"error"},{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"name":"ERC1967InvalidImplementation","type":"error"},{"inputs":[],"name":"ERC1967NonPayable","type":"error"},{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[],"name":"ProxyDeniedAdminAccess","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"previousAdmin","type":"address"},{"indexed":false,"internalType":"address","name":"newAdmin","type":"address"}],"name":"AdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"stateMutability":"payable","type":"fallback"}]
Deployed Bytecode
0x000400000000000200060000000000020000006004100270000000c50340019700030000003103550002000000010355000000c50040019d0000000100200190000000850000c13d0000008001000039000600000001001d000000400010043f000000df0100004100000000001004430000000001000412000000040010044300000024000004430000000001000414000000c50010009c000000c501008041000000c001100210000000e0011001c70000800502000039030e03040000040f0000000100200190000002ed0000613d0000000203000367000000000101043b000000c8011001970000000002000411000000000012004b000000aa0000c13d000000000103043b000000e101100197000000e20010009c000000e00000c13d0000000004000031000000e40040009c000000a80000213d000000440040008c000000a80000413d0000000401300370000000000101043b000000c80010009c000000a80000213d0000002402300370000000000502043b000000c90050009c000000a80000213d0000002302500039000000000042004b000000a80000813d0000000406500039000000000263034f000000000202043b000000c90020009c0000020f0000213d0000001f07200039000000e7077001970000003f07700039000000e707700197000000400a00043d00000000077a00190000000000a7004b00000000080000390000000108004039000000c90070009c0000020f0000213d00000001008001900000020f0000c13d000000400070043f000000000b2a043600000000052500190000002405500039000000000045004b000000a80000213d0000002004600039000000000443034f000000e7052001980000001f0620018f00000000035b0019000000580000613d000000000704034f00000000080b0019000000007907043c0000000008980436000000000038004b000000540000c13d00040000000a001d000000c807100197000000000006004b000000670000613d000000000154034f0000000304600210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500030000000b001d00000000012b00190000000000010435000000cb010000410000000000100443000500000007001d00000004007004430000000001000414000000c50010009c000000c501008041000000c001100210000000cc011001c70000800202000039030e03040000040f0000000100200190000002ed0000613d000000000101043b000000000001004b000001890000c13d000000400100043d000000de020000410000000000210435000000040210003900000005030000290000000000320435000000c50010009c000000c5010080410000004001100210000000d2011001c700000310000104300000001f02300039000000c602200197000000a002200039000000400020043f0000001f0430018f000000c705300198000000a002500039000000930000613d000000a006000039000000000701034f000000007807043c0000000006860436000000000026004b0000008f0000c13d000000000004004b000000a00000613d000000000151034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600030008c000000a80000413d000000a00700043d000000c80070009c000000a80000213d000000c00600043d000000c80060009c000000e80000a13d000000000100001900000310000104300000000001000031000000e7051001980000001f0610018f000000cd02000041000000000202041a000000b60000613d000000000703034f0000000008000019000000007907043c0000000008980436000000000058004b000000b20000c13d000000c802200197000000000006004b000000c40000613d000000000353034f0000000306600210000000000705043300000000076701cf000000000767022f000000000303043b0000010006600089000000000363022f00000000036301cf000000000373019f00000000003504350000000003000414000000040020008c0000013b0000c13d00000003030003670000000101000031000000e7021001980000001f0410018f000000d20000613d000000000503034f0000000006000019000000005705043c0000000006760436000000000026004b000000ce0000c13d000000000004004b0000015f0000613d000000000323034f0000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f00000000003204350000015f0000013d000000400100043d000000e3020000410000000000210435000000c50010009c000000c5010080410000004001100210000000d4011001c70000031000010430000000e00200043d000000c90020009c000000a80000213d0000001f01200039000000000031004b0000000004000019000000ca04008041000000ca01100197000000000001004b0000000005000019000000ca05004041000000ca0010009c000000000504c019000000000005004b000000a80000c13d000000a0012000390000000001010433000000c90010009c0000020f0000213d0000001f04100039000000e7044001970000003f04400039000000e704400197000000400900043d0000000004490019000000000094004b00000000050000390000000105004039000000c90040009c0000020f0000213d00000001005001900000020f0000c13d000000a003300039000000400040043f0000000008190436000000c0022000390000000004210019000000000034004b000000a80000213d000500000006001d000000000001004b0000011a0000613d000000000300001900000000043800190000000005230019000000000505043300000000005404350000002003300039000000000013004b000001130000413d000400000008001d000300000009001d000000000191001900000020011000390000000000010435000000cb01000041000000000010044300000004007004430000000001000414000000c50010009c000000c501008041000000c001100210000000cc011001c70000800202000039000600000007001d030e03040000040f0000000100200190000002ed0000613d000000400200043d0000000606000029000000c805600197000000000101043b000000000001004b000001650000c13d000000de01000041000000000012043500000004012000390000000000510435000000c50020009c000000c5020080410000004001200210000000d2011001c70000031000010430000000c50010009c000000c5010080410000006001100210000000c50030009c000000c503008041000000c003300210000000000113019f030e03090000040f000300000001035500000060031002700000001f0530018f000100c50030019d000000c7043001980000014f0000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b0000014b0000c13d000000000005004b0000015c0000613d000000000141034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000c5013001970000000100200190000001630000613d000000c50010009c000000c50100804100000060011002100000030f0001042e00000060011002100000031000010430000200000002001d000000cd01000041000000000201041a000000ce02200197000000000252019f000000000021041b0000000001000414000000c50010009c000000c501008041000000c001100210000000cf011001c70000800d020000390000000203000039000000d004000041000100000005001d030e02ff0000040f00000006040000290000000100200190000000050300002900000004050000290000000301000029000000a80000613d0000000002010433000000000002004b000001a40000c13d0000000001000416000000000001004b0000020c0000613d000000d30100004100000002020000290000000000120435000000c50020009c000000c5020080410000004001200210000000d4011001c70000031000010430000000cd01000041000000000201041a000000ce022001970000000505000029000000000252019f000000000021041b0000000001000414000000c50010009c000000c501008041000000c001100210000000cf011001c70000800d020000390000000203000039000000d004000041030e02ff0000040f00000001002001900000000401000029000000a80000613d0000000001010433000000000001004b000002380000c13d0000000001000416000000000001004b000002ee0000613d000000400100043d000000d302000041000000e20000013d0000000001000414000000040040008c000001aa0000c13d00000001020000390000000104000031000001bc0000013d000000c50020009c000000c5020080410000006002200210000000c50050009c000000c5050080410000004003500210000000000232019f000000c50010009c000000c501008041000000c001100210000000000121019f0000000002040019030e03090000040f000000010220018f00030000000103550000006001100270000100c50010019d000000c504100197000000000004004b000001c80000c13d000000600100003900000080030000390000000001010433000000000002004b000001f20000c13d000000000001004b000002630000c13d000000400100043d000000e502000041000000e20000013d000000c90040009c0000020f0000213d0000001f01400039000000e7011001970000003f01100039000000e703100197000000400100043d0000000003310019000000000013004b00000000050000390000000105004039000000c90030009c0000020f0000213d00000001005001900000020f0000c13d000000400030043f0000000003410436000000e7054001980000001f0640018f00000000045300190000000307000367000001e40000613d000000000807034f0000000009030019000000008a08043c0000000009a90436000000000049004b000001e00000c13d000000000006004b000001c00000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000001c00000013d000000000001004b00000005030000290000020c0000c13d000000cb010000410000000000100443000000060100002900000004001004430000000001000414000000c50010009c000000c501008041000000c001100210000000cc011001c70000800202000039030e03040000040f0000000100200190000002ed0000613d000000000101043b000000000001004b00000005030000290000020c0000c13d000000400100043d000000d1020000410000000000210435000000040210003900000001030000290000007f0000013d000000400100043d000000d50010009c000002150000a13d000000e601000041000000000010043f0000004101000039000000040010043f000000d2010000410000031000010430000000c802300197000000840310003900000000002304350000002402100039000000d60300004100000000003204350000006402100039000000000300041400000020040000390000000000420435000000440210003900000060040000390000000000420435000000d702000041000000000021043500000004021000390000000000020435000000c50010009c000000c5010080410000004001100210000000c50030009c000000c503008041000000c002300210000000000121019f000000d8011001c70000800602000039030e02ff0000040f00000001002001900000023f0000613d000000000101043b000000000001004b000002b60000c13d00000003010003670000000102000031000002430000013d00000000020004140000000503000029000000040030008c0000026b0000c13d000000010200003900000001030000310000027e0000013d00030000000103550000006002100270000100c50020019d000000c502200197000000e7052001980000001f0620018f000000400300043d00000000045300190000024e0000613d000000000701034f0000000008030019000000007907043c0000000008980436000000000048004b0000024a0000c13d000000000006004b0000025b0000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000c50020009c000000c5020080410000006001200210000000c50030009c000000c5030080410000004002300210000000000112019f0000031000010430000000c50030009c000000c5030080410000004002300210000000c50010009c000000c5010080410000006001100210000000000121019f00000310000104300000000303000029000000c50030009c000000c5030080410000004003300210000000c50010009c000000c5010080410000006001100210000000000131019f000000c50020009c000000c502008041000000c002200210000000000112019f0000000502000029030e03090000040f000000010220018f00030000000103550000006001100270000100c50010019d000000c503100197000000000003004b0000028b0000c13d00000060010000390000000001010433000000000002004b000002d80000c13d000000000001004b000001c50000613d0000000602000029000000c50020009c000000c5020080410000004002200210000002660000013d000000c90030009c0000020f0000213d0000001f01300039000000e7011001970000003f01100039000000e704100197000000400100043d0000000004410019000000000014004b00000000050000390000000105004039000000c90040009c0000020f0000213d00000001005001900000020f0000c13d000000400040043f0000000006310436000000e7043001980000001f0530018f000600000006001d00000000034600190000000306000367000002a80000613d000000000706034f0000000608000029000000007907043c0000000008980436000000000038004b000002a40000c13d000000000005004b000002810000613d000000000446034f0000000305500210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f0000000000430435000002810000013d000000c803100197000000800030043f000000d901000041000000000401041a000000400100043d0000002002100039000600000003001d0000000000320435000500000004001d000000c8024001970000000000210435000000c50010009c000000c50100804100000040011002100000000002000414000000c50020009c000000c502008041000000c002200210000000000112019f000000da011001c70000800d020000390000000103000039000000db04000041030e02ff0000040f0000000100200190000000a80000613d000000060000006b000002f00000c13d000000400100043d000000dd02000041000000000021043500000004021000390000000000020435000000800000013d000000000001004b000002ee0000c13d000000cb010000410000000000100443000000050100002900000004001004430000000001000414000000c50010009c000000c501008041000000c001100210000000cc011001c70000800202000039030e03040000040f0000000100200190000002ed0000613d000000000101043b000000000001004b000002ee0000c13d000000400100043d000000d1020000410000007c0000013d000000000001042f00000000010000190000030f0001042e0000000501000029000000ce0110019700000006011001af000000d902000041000000000012041b000000800100043d000001400000044300000160001004430000002001000039000001000010044300000001010000390000012000100443000000dc010000410000030f0001042e000000000001042f00000302002104210000000102000039000000000001042d0000000002000019000000000001042d00000307002104230000000102000039000000000001042d0000000002000019000000000001042d0000030c002104250000000102000039000000000001042d0000000002000019000000000001042d0000030e000004320000030f0001042e000003100001043000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffff80000000000000000000000000000000000000000000000000000000000000001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbcffffffffffffffffffffffff00000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000bc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b9996b315000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000b398979f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff7b0100008934ee78cf67accad5384419f4197900cabca70690cf1288ff946265859c4d535bdea7cd8a978f128b93471df48c7dbab89d703809115bdc118c235bfd02000000000000000000000000000000000000a4000000000000000000000000b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610302000000000000000000000000000000000000400000000000000000000000007e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f000000020000000000000000000000000000008000000100000000000000000062e77ba2000000000000000000000000000000000000000000000000000000004c9c8ce300000000000000000000000000000000000000000000000000000000310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e0200000200000000000000000000000000000044000000000000000000000000ffffffff000000000000000000000000000000000000000000000000000000004f1ef28600000000000000000000000000000000000000000000000000000000d2b576ec000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd6bda275000000000000000000000000000000000000000000000000000000004e487b7100000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe058c36b9182e81db4797616c5309df364c790a985ab7655563f31c759125041c1
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 35 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
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.