Latest 25 from a total of 54,772,760 transactions
(More than 25 Pending Txns)
Latest 22 internal transactions
Advanced mode:
Parent Transaction Hash | Method | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|---|
Transfer* | 21555889 | 79 days ago | 0.0138 ETH | ||||
Transfer* | 21555889 | 79 days ago | 0.00147331 ETH | ||||
Transfer* | 21555889 | 79 days ago | 0.02119227 ETH | ||||
Transfer* | 21555889 | 79 days ago | 0.01 ETH | ||||
Transfer* | 21555889 | 79 days ago | 0.05766807 ETH | ||||
Transfer* | 21555889 | 79 days ago | 0.01840152 ETH | ||||
Transfer | 21555875 | 79 days ago | 0.0138 ETH | ||||
Transfer | 21555875 | 79 days ago | 0.00147331 ETH | ||||
Transfer | 21555875 | 79 days ago | 0.02119227 ETH | ||||
Transfer | 21555875 | 79 days ago | 0.01 ETH | ||||
Transfer | 21555875 | 79 days ago | 0.05766807 ETH | ||||
Transfer | 21555875 | 79 days ago | 0.01840152 ETH | ||||
Transfer | 20952905 | 164 days ago | 0.01625352 ETH | ||||
Transfer | 20952874 | 164 days ago | 0.01625352 ETH | ||||
Transfer | 20952866 | 164 days ago | 0.01625352 ETH | ||||
Deposit | 17530228 | 643 days ago | 0.031 ETH | ||||
Transfer | 16376741 | 805 days ago | 0.001 ETH | ||||
Transfer | 16376678 | 805 days ago | 0.001 ETH | ||||
Transfer | 16376645 | 805 days ago | 0.001 ETH | ||||
Transfer | 16376601 | 805 days ago | 0.001 ETH | ||||
- | 14051226 | 1159 days ago | 0.00996458 ETH | ||||
- | 13436266 | 1255 days ago | 0.194 ETH |
Loading...
Loading
Contract Name:
FiatTokenProxy
Compiler Version
v0.4.24+commit.e67f0147
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion, Audited
Contract Source Code (Solidity)Audit Report
/** *Submitted for verification at Etherscan.io on 2018-08-03 */ pragma solidity ^0.4.24; // File: zos-lib/contracts/upgradeability/Proxy.sol /** * @title Proxy * @dev Implements delegation of calls to other contracts, with proper * forwarding of return values and bubbling of failures. * It defines a fallback function that delegates all calls to the address * returned by the abstract _implementation() internal function. */ contract Proxy { /** * @dev Fallback function. * Implemented entirely in `_fallback`. */ function () payable external { _fallback(); } /** * @return The Address of the implementation. */ function _implementation() internal view returns (address); /** * @dev Delegates execution to an implementation contract. * This is a low level function that doesn't return to its internal call site. * It will return to the external caller whatever the implementation returns. * @param implementation Address to delegate. */ function _delegate(address implementation) internal { 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. calldatacopy(0, 0, calldatasize) // Call the implementation. // out and outsize are 0 because we don't know the size yet. let result := delegatecall(gas, implementation, 0, calldatasize, 0, 0) // Copy the returned data. returndatacopy(0, 0, returndatasize) switch result // delegatecall returns 0 on error. case 0 { revert(0, returndatasize) } default { return(0, returndatasize) } } } /** * @dev Function that is run as the first thing in the fallback function. * Can be redefined in derived contracts to add functionality. * Redefinitions must call super._willFallback(). */ function _willFallback() internal { } /** * @dev fallback implementation. * Extracted to enable manual triggering. */ function _fallback() internal { _willFallback(); _delegate(_implementation()); } } // File: openzeppelin-solidity/contracts/AddressUtils.sol /** * Utility library of inline functions on addresses */ library AddressUtils { /** * Returns whether the target address is a contract * @dev This function will return false if invoked during the constructor of a contract, * as the code is not actually created until after the constructor finishes. * @param addr address to check * @return whether the target address is a contract */ function isContract(address addr) internal view returns (bool) { uint256 size; // XXX Currently there is no better way to check if there is a contract in an address // than to check the size of the code at that address. // See https://ethereum.stackexchange.com/a/14016/36603 // for more details about how this works. // TODO Check this again before the Serenity release, because all addresses will be // contracts then. // solium-disable-next-line security/no-inline-assembly assembly { size := extcodesize(addr) } return size > 0; } } // File: zos-lib/contracts/upgradeability/UpgradeabilityProxy.sol /** * @title UpgradeabilityProxy * @dev This contract implements a proxy that allows to change the * implementation address to which it will delegate. * Such a change is called an implementation upgrade. */ contract UpgradeabilityProxy is Proxy { /** * @dev Emitted when the implementation is upgraded. * @param implementation Address of the new implementation. */ event Upgraded(address implementation); /** * @dev Storage slot with the address of the current implementation. * This is the keccak-256 hash of "org.zeppelinos.proxy.implementation", and is * validated in the constructor. */ bytes32 private constant IMPLEMENTATION_SLOT = 0x7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3; /** * @dev Contract constructor. * @param _implementation Address of the initial implementation. */ constructor(address _implementation) public { assert(IMPLEMENTATION_SLOT == keccak256("org.zeppelinos.proxy.implementation")); _setImplementation(_implementation); } /** * @dev Returns the current implementation. * @return Address of the current implementation */ function _implementation() internal view returns (address impl) { bytes32 slot = IMPLEMENTATION_SLOT; assembly { impl := sload(slot) } } /** * @dev Upgrades the proxy to a new implementation. * @param newImplementation Address of the new implementation. */ function _upgradeTo(address newImplementation) internal { _setImplementation(newImplementation); emit Upgraded(newImplementation); } /** * @dev Sets the implementation address of the proxy. * @param newImplementation Address of the new implementation. */ function _setImplementation(address newImplementation) private { require(AddressUtils.isContract(newImplementation), "Cannot set a proxy implementation to a non-contract address"); bytes32 slot = IMPLEMENTATION_SLOT; assembly { sstore(slot, newImplementation) } } } // File: zos-lib/contracts/upgradeability/AdminUpgradeabilityProxy.sol /** * @title AdminUpgradeabilityProxy * @dev This contract combines an upgradeability proxy with an authorization * mechanism for administrative tasks. * All external functions in this contract must be guarded by the * `ifAdmin` modifier. See ethereum/solidity#3864 for a Solidity * feature proposal that would enable this to be done automatically. */ contract AdminUpgradeabilityProxy is UpgradeabilityProxy { /** * @dev Emitted when the administration has been transferred. * @param previousAdmin Address of the previous admin. * @param newAdmin Address of the new admin. */ event AdminChanged(address previousAdmin, address newAdmin); /** * @dev Storage slot with the admin of the contract. * This is the keccak-256 hash of "org.zeppelinos.proxy.admin", and is * validated in the constructor. */ bytes32 private constant ADMIN_SLOT = 0x10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b; /** * @dev Modifier to check whether the `msg.sender` is the admin. * If it is, it will run the function. Otherwise, it will delegate the call * to the implementation. */ modifier ifAdmin() { if (msg.sender == _admin()) { _; } else { _fallback(); } } /** * Contract constructor. * It sets the `msg.sender` as the proxy administrator. * @param _implementation address of the initial implementation. */ constructor(address _implementation) UpgradeabilityProxy(_implementation) public { assert(ADMIN_SLOT == keccak256("org.zeppelinos.proxy.admin")); _setAdmin(msg.sender); } /** * @return The address of the proxy admin. */ function admin() external view ifAdmin returns (address) { return _admin(); } /** * @return The address of the implementation. */ function implementation() external view ifAdmin returns (address) { return _implementation(); } /** * @dev Changes the admin of the proxy. * Only the current admin can call this function. * @param newAdmin Address to transfer proxy administration to. */ function changeAdmin(address newAdmin) external ifAdmin { require(newAdmin != address(0), "Cannot change the admin of a proxy to the zero address"); emit AdminChanged(_admin(), newAdmin); _setAdmin(newAdmin); } /** * @dev Upgrade the backing implementation of the proxy. * Only the admin can call this function. * @param newImplementation Address of the new implementation. */ function upgradeTo(address newImplementation) external ifAdmin { _upgradeTo(newImplementation); } /** * @dev Upgrade the backing implementation of the proxy and call a function * on the new implementation. * This is useful to initialize the proxied contract. * @param newImplementation Address of the new implementation. * @param data Data to send as msg.data in the low level call. * It should include the signature and the parameters of the function to be * called, as described in * https://solidity.readthedocs.io/en/develop/abi-spec.html#function-selector-and-argument-encoding. */ function upgradeToAndCall(address newImplementation, bytes data) payable external ifAdmin { _upgradeTo(newImplementation); require(address(this).call.value(msg.value)(data)); } /** * @return The admin slot. */ function _admin() internal view returns (address adm) { bytes32 slot = ADMIN_SLOT; assembly { adm := sload(slot) } } /** * @dev Sets the address of the proxy admin. * @param newAdmin Address of the new proxy admin. */ function _setAdmin(address newAdmin) internal { bytes32 slot = ADMIN_SLOT; assembly { sstore(slot, newAdmin) } } /** * @dev Only fall back when the sender is not the admin. */ function _willFallback() internal { require(msg.sender != _admin(), "Cannot call fallback function from the proxy admin"); super._willFallback(); } } // File: contracts/FiatTokenProxy.sol /** * Copyright CENTRE SECZ 2018 * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is furnished to * do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ pragma solidity ^0.4.24; /** * @title FiatTokenProxy * @dev This contract proxies FiatToken calls and enables FiatToken upgrades */ contract FiatTokenProxy is AdminUpgradeabilityProxy { constructor(address _implementation) public AdminUpgradeabilityProxy(_implementation) { } }
Contract Security Audit
- Callisto Network - Apr 7th, 2023 - Security Audit Report
Contract ABI
API[{"constant":false,"inputs":[{"name":"newImplementation","type":"address"}],"name":"upgradeTo","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newImplementation","type":"address"},{"name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"implementation","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newAdmin","type":"address"}],"name":"changeAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"admin","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_implementation","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"previousAdmin","type":"address"},{"indexed":false,"name":"newAdmin","type":"address"}],"name":"AdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"implementation","type":"address"}],"name":"Upgraded","type":"event"}]
Contract Creation Code
608060405234801561001057600080fd5b50604051602080610b2983398101806040528101908080519060200190929190505050808060405180807f6f72672e7a657070656c696e6f732e70726f78792e696d706c656d656e74617481526020017f696f6e000000000000000000000000000000000000000000000000000000000081525060230190506040518091039020600019167f7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3600102600019161415156100c657fe5b6100de81610169640100000000026401000000009004565b5060405180807f6f72672e7a657070656c696e6f732e70726f78792e61646d696e000000000000815250601a0190506040518091039020600019167f10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b6001026000191614151561014a57fe5b6101623361024e640100000000026401000000009004565b5050610290565b60006101878261027d6401000000000261084b176401000000009004565b1515610221576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603b8152602001807f43616e6e6f742073657420612070726f787920696d706c656d656e746174696f81526020017f6e20746f2061206e6f6e2d636f6e74726163742061646472657373000000000081525060400191505060405180910390fd5b7f7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c360010290508181555050565b60007f10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b60010290508181555050565b600080823b905060008111915050919050565b61088a8061029f6000396000f30060806040526004361061006d576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff1680633659cfe6146100775780634f1ef286146100ba5780635c60da1b146101085780638f2839701461015f578063f851a440146101a2575b6100756101f9565b005b34801561008357600080fd5b506100b8600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610213565b005b610106600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001908201803590602001919091929391929390505050610268565b005b34801561011457600080fd5b5061011d610308565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561016b57600080fd5b506101a0600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610360565b005b3480156101ae57600080fd5b506101b761051e565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610201610576565b61021161020c610651565b610682565b565b61021b6106a8565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561025c57610257816106d9565b610265565b6102646101f9565b5b50565b6102706106a8565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156102fa576102ac836106d9565b3073ffffffffffffffffffffffffffffffffffffffff163483836040518083838082843782019150509250505060006040518083038185875af19250505015156102f557600080fd5b610303565b6103026101f9565b5b505050565b60006103126106a8565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156103545761034d610651565b905061035d565b61035c6101f9565b5b90565b6103686106a8565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561051257600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614151515610466576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260368152602001807f43616e6e6f74206368616e6765207468652061646d696e206f6620612070726f81526020017f787920746f20746865207a65726f20616464726573730000000000000000000081525060400191505060405180910390fd5b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f61048f6106a8565b82604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019250505060405180910390a161050d81610748565b61051b565b61051a6101f9565b5b50565b60006105286106a8565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561056a576105636106a8565b9050610573565b6105726101f9565b5b90565b61057e6106a8565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151515610647576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001807f43616e6e6f742063616c6c2066616c6c6261636b2066756e6374696f6e20667281526020017f6f6d207468652070726f78792061646d696e000000000000000000000000000081525060400191505060405180910390fd5b61064f610777565b565b6000807f7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c36001029050805491505090565b3660008037600080366000845af43d6000803e80600081146106a3573d6000f35b3d6000fd5b6000807f10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b6001029050805491505090565b6106e281610779565b7fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b81604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b60007f10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b60010290508181555050565b565b60006107848261084b565b151561081e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603b8152602001807f43616e6e6f742073657420612070726f787920696d706c656d656e746174696f81526020017f6e20746f2061206e6f6e2d636f6e74726163742061646472657373000000000081525060400191505060405180910390fd5b7f7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c360010290508181555050565b600080823b9050600081119150509190505600a165627a7a72305820a4a547cfc7202c5acaaae74d428e988bc62ad5024eb0165532d3a8f91db4ed2400290000000000000000000000000882477e7895bdc5cea7cb1552ed914ab157fe56
Deployed Bytecode
0x60806040526004361061006d576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff1680633659cfe6146100775780634f1ef286146100ba5780635c60da1b146101085780638f2839701461015f578063f851a440146101a2575b6100756101f9565b005b34801561008357600080fd5b506100b8600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610213565b005b610106600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001908201803590602001919091929391929390505050610268565b005b34801561011457600080fd5b5061011d610308565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561016b57600080fd5b506101a0600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610360565b005b3480156101ae57600080fd5b506101b761051e565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610201610576565b61021161020c610651565b610682565b565b61021b6106a8565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561025c57610257816106d9565b610265565b6102646101f9565b5b50565b6102706106a8565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156102fa576102ac836106d9565b3073ffffffffffffffffffffffffffffffffffffffff163483836040518083838082843782019150509250505060006040518083038185875af19250505015156102f557600080fd5b610303565b6103026101f9565b5b505050565b60006103126106a8565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156103545761034d610651565b905061035d565b61035c6101f9565b5b90565b6103686106a8565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561051257600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614151515610466576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260368152602001807f43616e6e6f74206368616e6765207468652061646d696e206f6620612070726f81526020017f787920746f20746865207a65726f20616464726573730000000000000000000081525060400191505060405180910390fd5b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f61048f6106a8565b82604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019250505060405180910390a161050d81610748565b61051b565b61051a6101f9565b5b50565b60006105286106a8565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561056a576105636106a8565b9050610573565b6105726101f9565b5b90565b61057e6106a8565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151515610647576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001807f43616e6e6f742063616c6c2066616c6c6261636b2066756e6374696f6e20667281526020017f6f6d207468652070726f78792061646d696e000000000000000000000000000081525060400191505060405180910390fd5b61064f610777565b565b6000807f7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c36001029050805491505090565b3660008037600080366000845af43d6000803e80600081146106a3573d6000f35b3d6000fd5b6000807f10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b6001029050805491505090565b6106e281610779565b7fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b81604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b60007f10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b60010290508181555050565b565b60006107848261084b565b151561081e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603b8152602001807f43616e6e6f742073657420612070726f787920696d706c656d656e746174696f81526020017f6e20746f2061206e6f6e2d636f6e74726163742061646472657373000000000081525060400191505060405180910390fd5b7f7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c360010290508181555050565b600080823b9050600081119150509190505600a165627a7a72305820a4a547cfc7202c5acaaae74d428e988bc62ad5024eb0165532d3a8f91db4ed240029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000882477e7895bdc5cea7cb1552ed914ab157fe56
-----Decoded View---------------
Arg [0] : _implementation (address): 0x0882477e7895bdC5cea7cB1552ed914aB157Fe56
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000882477e7895bdc5cea7cb1552ed914ab157fe56
Swarm Source
bzzr://a4a547cfc7202c5acaaae74d428e988bc62ad5024eb0165532d3a8f91db4ed24
Loading...
Loading
Loading...
Loading
OVERVIEW
USDC is a US dollar-backed stablecoin issued by Circle. USDC is designed to provide a faster, safer, and more efficient way to send, spend, and exchange money around the world.Multichain Portfolio | 35 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
BSC | 90.75% | $0.009053 | 381,436,256.2865 | $3,452,951.71 | |
BSC | 0.87% | $0.999925 | 33,001.2215 | $32,998.73 | |
BSC | 0.79% | $1 | 30,079.9945 | $30,209.65 | |
BSC | 0.44% | $1 | 16,589.5814 | $16,589.58 | |
BSC | 0.36% | $631.13 | 21.8799 | $13,809.15 | |
BSC | 0.02% | $2.6 | 320.9516 | $834.47 | |
BSC | 0.01% | $0.046323 | 10,000 | $463.23 | |
BSC | <0.01% | $0.025633 | 10,000 | $256.33 | |
BSC | <0.01% | $2,070.19 | 0.0535 | $110.79 | |
BSC | <0.01% | $87,656.38 | 0.00072935 | $63.93 | |
BSC | <0.01% | $0.296262 | 172.4762 | $51.1 | |
BSC | <0.01% | $1 | 50.0649 | $50.07 | |
BSC | <0.01% | $0.01894 | 1,016.9112 | $19.26 | |
BSC | <0.01% | $0.000115 | 150,510.7378 | $17.33 | |
BSC | <0.01% | $4.85 | 1.1009 | $5.34 | |
BSC | <0.01% | $0.232542 | 5.95 | $1.38 | |
BSC | <0.01% | $0.000002 | 804,828 | $1.33 | |
BSC | <0.01% | <$0.000001 | 42,700,876.1154 | $0.6686 | |
BSC | <0.01% | $40.88 | 0.0146 | $0.5984 | |
BSC | <0.01% | $201.1 | 0.00245989 | $0.4946 | |
BSC | <0.01% | $0.000123 | 3,731 | $0.4602 | |
BSC | <0.01% | $0.002436 | 150.8146 | $0.3674 | |
BSC | <0.01% | $0.000144 | 2,298.8889 | $0.3312 | |
BSC | <0.01% | $0.002446 | 100 | $0.2446 | |
BSC | <0.01% | $1 | 0.1783 | $0.1783 | |
ETH | 2.35% | $1 | 89,592.0259 | $89,592.03 | |
ETH | 0.10% | $0.018419 | 200,162 | $3,686.87 | |
ETH | 0.08% | $0.000014 | 229,137,045.206 | $3,212.5 | |
ETH | 0.05% | $0.024763 | 76,777.7354 | $1,901.21 | |
ETH | 0.04% | $0.999936 | 1,561.306 | $1,561.21 | |
ETH | 0.03% | $15.5 | 82.1587 | $1,273.46 | |
ETH | 0.02% | $4.11 | 219.7537 | $903.19 | |
ETH | 0.02% | $0.194874 | 3,326.9093 | $648.33 | |
ETH | 0.01% | $0.000337 | 1,523,241.1223 | $513.35 | |
ETH | <0.01% | $0.564641 | 654.5334 | $369.58 | |
ETH | <0.01% | $0.231892 | 1,460.55 | $338.69 | |
ETH | <0.01% | $2,073.66 | 0.1213 | $251.52 | |
ETH | <0.01% | $10.88 | 22.0975 | $240.42 | |
ETH | <0.01% | $0.279959 | 846.5758 | $237.01 | |
ETH | <0.01% | $0.262644 | 834 | $219.05 | |
ETH | <0.01% | $0.000023 | 9,163,801.9969 | $213.97 | |
ETH | <0.01% | $0.110407 | 1,769.8249 | $195.4 | |
ETH | <0.01% | $1.17 | 162.2572 | $189.1 | |
ETH | <0.01% | <$0.000001 | 1,147,579,083.426 | $184.8 | |
ETH | <0.01% | $0.011324 | 15,643.6839 | $177.15 | |
ETH | <0.01% | $0.032596 | 5,000 | $162.98 | |
ETH | <0.01% | <$0.000001 | 567,361,162,977.0588 | $119.44 | |
ETH | <0.01% | <$0.000001 | 29,618,715,274.7279 | $117.27 | |
ETH | <0.01% | $0.000008 | 14,322,796.4626 | $115.3 | |
ETH | <0.01% | $0.565103 | 152.9297 | $86.42 | |
ETH | <0.01% | $630.74 | 0.1334 | $84.13 | |
ETH | <0.01% | $0.026968 | 2,883.4408 | $77.76 | |
ETH | <0.01% | $0.027659 | 2,810.7046 | $77.74 | |
ETH | <0.01% | $0.014206 | 5,443.1898 | $77.33 | |
ETH | <0.01% | $0.761554 | 100 | $76.16 | |
ETH | <0.01% | $0.100396 | 708.4873 | $71.13 | |
ETH | <0.01% | $7.03 | 10.0711 | $70.8 | |
ETH | <0.01% | $1 | 60.361 | $60.42 | |
ETH | <0.01% | $0.008961 | 5,739.7989 | $51.43 | |
ETH | <0.01% | $2,192.55 | 0.0208 | $45.58 | |
ETH | <0.01% | $1 | 45.4074 | $45.41 | |
ETH | <0.01% | $0.001683 | 25,150.513 | $42.32 | |
ETH | <0.01% | $0.017563 | 2,207.4 | $38.77 | |
ETH | <0.01% | $2.24 | 17 | $38.02 | |
ETH | <0.01% | <$0.000001 | 116,901,960.7843 | $36.73 | |
ETH | <0.01% | $0.846636 | 39.3541 | $33.32 | |
ETH | <0.01% | $0.065191 | 500 | $32.6 | |
ETH | <0.01% | $0.000008 | 4,087,008.6389 | $30.76 | |
ETH | <0.01% | $0.136517 | 210.4127 | $28.72 | |
ETH | <0.01% | $41.58 | 0.6422 | $26.7 | |
ETH | <0.01% | $0.000079 | 333,067.6484 | $26.43 | |
ETH | <0.01% | $9.18 | 2.23 | $20.47 | |
ETH | <0.01% | $0.01037 | 1,879.9332 | $19.5 | |
ETH | <0.01% | $0.004483 | 4,279.6488 | $19.18 | |
ETH | <0.01% | $0.217859 | 87.2525 | $19.01 | |
ETH | <0.01% | $0.000979 | 19,129 | $18.72 | |
ETH | <0.01% | $87,462 | 0.00017183 | $15.03 | |
ETH | <0.01% | $0.999958 | 15 | $15 | |
ETH | <0.01% | $0.001902 | 7,732.5896 | $14.7 | |
ETH | <0.01% | $0.955108 | 14.3126 | $13.67 | |
ETH | <0.01% | $0.040798 | 314.076 | $12.81 | |
ETH | <0.01% | $0.004952 | 2,395.0013 | $11.86 | |
ETH | <0.01% | $0.310627 | 37.1345 | $11.53 | |
ETH | <0.01% | $0.182772 | 63.0306 | $11.52 | |
ETH | <0.01% | <$0.000001 | 22,690,527,043.6375 | $10.98 | |
ETH | <0.01% | $0.001653 | 5,959.8268 | $9.85 | |
ETH | <0.01% | $0.036994 | 241.7631 | $8.94 | |
ETH | <0.01% | $0.112494 | 68.2888 | $7.68 | |
ETH | <0.01% | $0.084824 | 76 | $6.45 | |
ETH | <0.01% | $3.18 | 2 | $6.36 | |
ETH | <0.01% | $0.623762 | 10 | $6.24 | |
ETH | <0.01% | $0.002342 | 2,442.6478 | $5.72 | |
ETH | <0.01% | $0.000331 | 16,800 | $5.56 | |
ETH | <0.01% | $0.000007 | 813,460 | $5.51 | |
ETH | <0.01% | $0.000488 | 10,000 | $4.88 | |
ETH | <0.01% | $0.000165 | 28,327.2329 | $4.68 | |
ETH | <0.01% | $0.003911 | 1,156.0922 | $4.52 | |
ETH | <0.01% | $0.000066 | 61,198.737 | $4.03 | |
ETH | <0.01% | <$0.000001 | 6,452,278,144 | $4.02 | |
ETH | <0.01% | <$0.000001 | 93,735,634.6851 | $3.44 | |
ETH | <0.01% | $0.000016 | 183,600 | $2.96 | |
ETH | <0.01% | $0.000987 | 2,547.5146 | $2.51 | |
ETH | <0.01% | $0.996867 | 2.3379 | $2.33 | |
ETH | <0.01% | $0.00329 | 637.7622 | $2.1 | |
ETH | <0.01% | $0.003449 | 543.4121 | $1.87 | |
ETH | <0.01% | $0.000035 | 50,596.2179 | $1.79 | |
ETH | <0.01% | $0.013499 | 125.1565 | $1.69 | |
ETH | <0.01% | $0.002268 | 744.217 | $1.69 | |
ETH | <0.01% | $0.157572 | 10 | $1.58 | |
ETH | <0.01% | $0.130358 | 11.5715 | $1.51 | |
ETH | <0.01% | $0.001822 | 802 | $1.46 | |
ETH | <0.01% | $0.008491 | 170.7019 | $1.45 | |
ETH | <0.01% | <$0.000001 | 4,096,528.3827 | $1.29 | |
ETH | <0.01% | $0.025799 | 48.9599 | $1.26 | |
ETH | <0.01% | $0.99994 | 1.2257 | $1.23 | |
ETH | <0.01% | $0.00011 | 10,625.886 | $1.17 | |
ETH | <0.01% | <$0.000001 | 1,494,689,043.9695 | $1.06 | |
ETH | <0.01% | $0.924354 | 1 | $0.9243 | |
ETH | <0.01% | $0.000413 | 1,600 | $0.6604 | |
ETH | <0.01% | $0.062397 | 8.7075 | $0.5433 | |
ETH | <0.01% | $0.000123 | 3,731 | $0.4604 | |
ETH | <0.01% | $0.001454 | 202.1658 | $0.294 | |
ETH | <0.01% | <$0.000001 | 757,003.8017 | $0.2657 | |
ETH | <0.01% | $0.000122 | 1,730.47 | $0.2108 | |
ETH | <0.01% | $44.7 | 0.00458504 | $0.2049 | |
ETH | <0.01% | $0.000001 | 164,194.951 | $0.1471 | |
ETH | <0.01% | $0.000048 | 2,535.3535 | $0.1208 | |
ETH | <0.01% | $0.000086 | 1,374.8369 | $0.1186 | |
BASE | 1.12% | $0.999894 | 42,523.5852 | $42,519.08 | |
BASE | 0.20% | $0.038927 | 200,260.1903 | $7,795.53 | |
BASE | 0.17% | $0.004571 | 1,387,106.4131 | $6,340.65 | |
BASE | 0.14% | $0.231063 | 22,650.5613 | $5,233.71 | |
BASE | <0.01% | $2,073.67 | 0.179 | $371.19 | |
BASE | <0.01% | $1 | 333.3899 | $333.39 | |
BASE | <0.01% | $0.000215 | 447,678.1536 | $96.05 | |
BASE | <0.01% | $0.349622 | 270.45 | $94.56 | |
BASE | <0.01% | $0.000005 | 3,485,675.3486 | $16.91 | |
BASE | <0.01% | $2,069.78 | 0.00350986 | $7.26 | |
BASE | <0.01% | <$0.000001 | 32,613,657.865 | $3.22 | |
BASE | <0.01% | $0.000002 | 1,054,808.7749 | $2.47 | |
BASE | <0.01% | $0.038298 | 24 | $0.9191 | |
BASE | <0.01% | $0.000762 | 270.657 | $0.2062 | |
BASE | <0.01% | $0.004213 | 43.332 | $0.1825 | |
POL | 0.49% | $0.999897 | 18,800.7153 | $18,798.78 | |
POL | 0.32% | $0.233421 | 52,484.8735 | $12,251.07 | |
POL | 0.31% | $0.999897 | 11,620.3945 | $11,619.2 | |
POL | 0.01% | $1 | 546.2664 | $546.27 | |
POL | <0.01% | $0.090413 | 149.9893 | $13.56 | |
POL | <0.01% | $0.000014 | 500,000 | $6.84 | |
POL | <0.01% | $2,070.19 | 0.00103246 | $2.14 | |
POL | <0.01% | $0.001329 | 1,111 | $1.48 | |
POL | <0.01% | $0.000021 | 21,500 | $0.4597 | |
POL | <0.01% | $0.002245 | 181 | $0.4062 | |
POL | <0.01% | $0.000476 | 810.0043 | $0.3852 | |
POL | <0.01% | $0.000135 | 2,000 | $0.2709 | |
POL | <0.01% | $0.002407 | 60 | $0.1444 | |
AVAX | 0.29% | $0.999896 | 10,900.3926 | $10,899.26 | |
AVAX | 0.06% | $1 | 2,313.5021 | $2,313.83 | |
AVAX | 0.05% | $23 | 76.6625 | $1,763.29 | |
AVAX | 0.03% | $0.999896 | 1,068.2737 | $1,068.16 | |
AVAX | <0.01% | $1 | 3.4985 | $3.5 | |
AVAX | <0.01% | $0.000007 | 200,000 | $1.46 | |
AVAX | <0.01% | $0.011917 | 13.2712 | $0.1581 | |
ARB | 0.18% | $0.999894 | 6,811.8924 | $6,811.17 | |
ARB | 0.07% | $2,073.66 | 1.2921 | $2,679.28 | |
ARB | 0.05% | $0.999894 | 2,068.1003 | $2,067.88 | |
ARB | <0.01% | $0.000768 | 225,000 | $172.9 | |
ARB | <0.01% | $0.393955 | 220.0544 | $86.69 | |
ARB | <0.01% | $1 | 74.0377 | $74.04 | |
ARB | <0.01% | $0.10479 | 78.7966 | $8.26 | |
ARB | <0.01% | $0.000857 | 500 | $0.4283 | |
OP | 0.15% | $0.060085 | 96,000 | $5,768.16 | |
OP | 0.06% | $0.999897 | 2,384.9446 | $2,384.7 | |
OP | 0.03% | $0.999897 | 1,187.4205 | $1,187.3 | |
OP | 0.02% | $2,073.81 | 0.3711 | $769.62 | |
OP | 0.01% | $0.904885 | 500 | $452.44 | |
OP | <0.01% | $15.55 | 3.4999 | $54.42 | |
OP | <0.01% | $2,073.74 | 0.00183253 | $3.8 | |
OP | <0.01% | $0.940483 | 3.2617 | $3.07 | |
OP | <0.01% | $1 | 1.7505 | $1.75 | |
CRONOS | 0.01% | $0.999894 | 473.6196 | $473.57 | |
CRONOS | 0.01% | $0.109122 | 4,196.4594 | $457.92 | |
CRONOS | <0.01% | $1 | 300 | $300 | |
CRONOS | <0.01% | $2,069.72 | 0.00938204 | $19.42 | |
FTM | 0.01% | $0.6099 | 627.1839 | $382.52 | |
FTM | <0.01% | $0.366756 | 607.3695 | $222.76 | |
FTM | <0.01% | $0.199839 | 6.9276 | $1.38 | |
MANTLE | 0.01% | $1 | 563.4591 | $565.15 | |
MANTLE | <0.01% | $1 | 9.4415 | $9.47 | |
WORLD | 0.01% | $0.999894 | 520.1269 | $520.07 | |
WORLD | <0.01% | $0.942928 | 22.777 | $21.48 | |
GNO | <0.01% | $0.999909 | 238.2707 | $238.25 | |
GNO | <0.01% | $1 | 5.7552 | $5.76 | |
ZKSYNC | <0.01% | $0.999894 | 99.94 | $99.93 | |
ZKSYNC | <0.01% | $2,074.1 | 0.0385 | $79.77 | |
ZKSYNC | <0.01% | $0.999894 | 33.7057 | $33.7 | |
GLMR | <0.01% | $0.999901 | 97.0207 | $97.01 | |
GLMR | <0.01% | $0.096516 | 31.5794 | $3.05 | |
XDC | <0.01% | $0.073428 | 1,000 | $73.43 | |
SCROLL | <0.01% | $0.999895 | 50.8733 | $50.87 | |
SCROLL | <0.01% | $2,073.66 | 0.0017 | $3.53 | |
OPBNB | <0.01% | $631.09 | 0.0411 | $25.95 | |
ZKEVM | <0.01% | $2,073.66 | 0.00682707 | $14.16 | |
LINEA | <0.01% | $0.999897 | 13.3753 | $13.37 | |
CELO | <0.01% | $1 | 4.6897 | $4.69 | |
CELO | <0.01% | $0.399224 | 10 | $3.99 | |
CELO | <0.01% | $0.000061 | 1,912 | $0.1156 | |
MOVR | <0.01% | $0.999992 | 7.5047 | $7.5 |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ 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.