Feature Tip: Add private address tag to any address under My Name Tag !
Circle: USDC Token
Source Code (Proxy)
Latest 25 from a total of 95,580,938 transactions
(More than 25 Pending Txns)
Latest 25 internal transactions (View All)
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Transfer | 24201155 | 36 days ago | 0.00766051 ETH | ||||
| Transfer | 24197114 | 36 days ago | 0.00377524 ETH | ||||
| Transfer | 24161083 | 41 days ago | 0.0002883 ETH | ||||
| Transfer | 24155564 | 42 days ago | 0.00092229 ETH | ||||
| Transfer | 24094778 | 50 days ago | 0.00010111 ETH | ||||
| Transfer | 24054661 | 56 days ago | 0.00042796 ETH | ||||
| Transfer | 24054642 | 56 days ago | 0.00042796 ETH | ||||
| Transfer | 24025889 | 60 days ago | 0.00068174 ETH | ||||
| Transfer | 24020352 | 61 days ago | 0.0001711 ETH | ||||
| Transfer | 24012200 | 62 days ago | 0.00807101 ETH | ||||
| Transfer | 23959967 | 69 days ago | 0.00158081 ETH | ||||
| Transfer | 23844917 | 86 days ago | 0.00070726 ETH | ||||
| Transfer | 23844518 | 86 days ago | 0.00094015 ETH | ||||
| Transfer | 23677902 | 109 days ago | 0.00024301 ETH | ||||
| Transfer | 23611116 | 118 days ago | 0.00740793 ETH | ||||
| Transfer | 23513427 | 132 days ago | 0.05051663 ETH | ||||
| Transfer | 23513348 | 132 days ago | 0.05051663 ETH | ||||
| Transfer | 23490058 | 135 days ago | 0.00569086 ETH | ||||
| Transfer | 23085151 | 192 days ago | 0.0035686 ETH | ||||
| Approve | 22978468 | 207 days ago | 0 ETH | ||||
| Transfer | 22950915 | 210 days ago | 0.01390912 ETH | ||||
| Transfer | 22890399 | 219 days ago | 0.00627206 ETH | ||||
| Transfer | 22876632 | 221 days ago | 0.00674635 ETH | ||||
| Transfer | 22876542 | 221 days ago | 0.00448439 ETH | ||||
| Transfer | 22782975 | 234 days ago | 0.00630477 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
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.Net Worth in USD
$559,488.99
Net Worth in ETH
270.188286
Token Allocations
USDC
34.94%
USDT
27.08%
BOME
11.57%
Others
26.41%
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 26.66% | $0.999787 | 149,178.2387 | $149,146.46 | |
| ETH | 11.57% | <$0.000001 | 2,993,810,000,000 | $64,713.32 | |
| ETH | 0.35% | $0.025317 | 76,777.7354 | $1,943.8 | |
| ETH | 0.34% | $0.006523 | 292,245.2222 | $1,906.46 | |
| ETH | 0.29% | $0.000007 | 229,186,015.3872 | $1,613.47 | |
| ETH | 0.28% | $1 | 1,561.406 | $1,561.41 | |
| ETH | 0.25% | $0.000449 | 3,127,495.1185 | $1,403.86 | |
| ETH | 0.21% | $1.19 | 998.0463 | $1,187.68 | |
| ETH | 0.21% | $0.0058 | 200,162 | $1,160.95 | |
| ETH | 0.19% | $0.039812 | 26,453.256 | $1,053.17 | |
| ETH | 0.13% | $9.11 | 82.8624 | $754.88 | |
| ETH | 0.10% | $21.37 | 26.0902 | $557.55 | |
| ETH | 0.06% | $0.001647 | 210,756.8185 | $347.21 | |
| ETH | 0.06% | $1.51 | 219.7537 | $331.83 | |
| ETH | 0.05% | $0.000115 | 2,591,287.5527 | $298.1 | |
| ETH | 0.05% | $2,070.74 | 0.122 | $252.67 | |
| ETH | 0.04% | $10.83 | 22.0975 | $239.32 | |
| ETH | 0.03% | $0.109302 | 1,460.55 | $159.64 | |
| ETH | 0.03% | $0.000016 | 9,163,801.9969 | $142.77 | |
| ETH | 0.02% | $0.861048 | 162.2572 | $139.71 | |
| ETH | 0.02% | $0.180994 | 654.5334 | $118.47 | |
| ETH | 0.02% | <$0.000001 | 29,618,715,274.7279 | $117.27 | |
| ETH | 0.02% | $0.004324 | 24,000 | $103.77 | |
| ETH | 0.02% | $0.005558 | 15,643.6839 | $86.95 | |
| ETH | 0.02% | $634.15 | 0.1334 | $84.59 | |
| ETH | 0.01% | $0.000005 | 15,479,913.1212 | $77.09 | |
| ETH | 0.01% | $0.999774 | 60.361 | $60.35 | |
| ETH | 0.01% | $0.021449 | 2,810.7046 | $60.29 | |
| ETH | 0.01% | $0.07109 | 834 | $59.29 | |
| ETH | 0.01% | $2,533.88 | 0.0225 | $57.03 | |
| ETH | <0.01% | $2,449.67 | 0.0208 | $50.92 | |
| ETH | <0.01% | $0.040541 | 1,243.1669 | $50.4 | |
| ETH | <0.01% | $0.001488 | 28,327.2329 | $42.15 | |
| ETH | <0.01% | <$0.000001 | 1,147,579,083.426 | $40.18 | |
| ETH | <0.01% | $3.64 | 10.0712 | $36.66 | |
| ETH | <0.01% | $0.999772 | 35.99 | $35.98 | |
| ETH | <0.01% | $0.006551 | 5,443.1898 | $35.66 | |
| ETH | <0.01% | $1.98 | 17 | $33.61 | |
| ETH | <0.01% | $0.00 | 500 | $0.00 | |
| ETH | <0.01% | $0.006235 | 5,000 | $31.17 | |
| ETH | <0.01% | $0.661706 | 39.3541 | $26.04 | |
| ETH | <0.01% | $38.08 | 0.6422 | $24.45 | |
| ETH | <0.01% | $0.001124 | 21,592.0558 | $24.27 | |
| ETH | <0.01% | $160.61 | 0.15 | $24.09 | |
| ETH | <0.01% | $0.007991 | 2,883.4408 | $23.04 | |
| ETH | <0.01% | $0.147029 | 152.9297 | $22.49 | |
| ETH | <0.01% | $0.029211 | 728.4873 | $21.28 | |
| ETH | <0.01% | $8.9 | 2.23 | $19.85 | |
| ETH | <0.01% | $0.192381 | 100 | $19.24 | |
| ETH | <0.01% | $0.004483 | 4,279.6488 | $19.18 | |
| ETH | <0.01% | $0.000696 | 25,150.513 | $17.51 | |
| ETH | <0.01% | $0.115272 | 145.6044 | $16.78 | |
| ETH | <0.01% | <$0.000001 | 585,294,314,833.3768 | $15.75 | |
| ETH | <0.01% | $0.229859 | 63.0306 | $14.49 | |
| ETH | <0.01% | $0.0025 | 5,739.7989 | $14.35 | |
| ETH | <0.01% | $0.00004 | 333,067.6484 | $13.45 | |
| ETH | <0.01% | $76,149 | 0.00017183 | $13.08 | |
| ETH | <0.01% | $0.000211 | 55,282.4791 | $11.65 | |
| ETH | <0.01% | $0.000211 | 55,282.4791 | $11.65 | |
| ETH | <0.01% | $0.00 | 4,933.4494 | $0.00 | |
| ETH | <0.01% | $0.220271 | 45.4074 | $10 | |
| ETH | <0.01% | <$0.000001 | 116,901,960.7843 | $9.41 | |
| ETH | <0.01% | $0.001193 | 7,732.5896 | $9.22 | |
| ETH | <0.01% | $0.004873 | 1,769.8249 | $8.62 | |
| ETH | <0.01% | $0.027144 | 314.076 | $8.53 | |
| ETH | <0.01% | $0.083016 | 100 | $8.3 | |
| ETH | <0.01% | <$0.000001 | 105,647,663 | $7.12 | |
| ETH | <0.01% | $0.002087 | 3,404.2663 | $7.11 | |
| ETH | <0.01% | $129.2 | 0.0504 | $6.51 | |
| ETH | <0.01% | $0.003337 | 1,879.9332 | $6.27 | |
| ETH | <0.01% | $0.034004 | 176.553 | $6 | |
| ETH | <0.01% | $0.002547 | 2,207.4 | $5.62 | |
| ETH | <0.01% | $0.000001 | 4,087,008.6389 | $5.6 | |
| ETH | <0.01% | $0.001797 | 2,395.0013 | $4.3 | |
| ETH | <0.01% | $0.018753 | 210.4127 | $3.95 | |
| ETH | <0.01% | $0.092425 | 37.1345 | $3.43 | |
| ETH | <0.01% | $0.319697 | 10 | $3.2 | |
| ETH | <0.01% | <$0.000001 | 22,690,527,043.6375 | $3.13 | |
| ETH | <0.01% | $0.000162 | 19,129 | $3.09 | |
| ETH | <0.01% | $0.000428 | 5,959.8268 | $2.55 | |
| ETH | <0.01% | <$0.000001 | 6,452,278,144 | $2.53 | |
| ETH | <0.01% | $0.019406 | 130 | $2.52 | |
| ETH | <0.01% | $1 | 2.3601 | $2.36 | |
| ETH | <0.01% | $0.034284 | 68.2888 | $2.34 | |
| ETH | <0.01% | $0.000037 | 61,198.737 | $2.28 | |
| ETH | <0.01% | $1.48 | 1.5 | $2.22 | |
| ETH | <0.01% | $0.107981 | 20.5032 | $2.21 | |
| ETH | <0.01% | $0.027336 | 75 | $2.05 | |
| ETH | <0.01% | $0.002345 | 865.8465 | $2.03 | |
| ETH | <0.01% | $0.999368 | 1.9303 | $1.93 | |
| ETH | <0.01% | $0.99981 | 1.7868 | $1.79 | |
| ETH | <0.01% | $0.000147 | 10,000 | $1.47 | |
| ETH | <0.01% | $0.000002 | 813,460 | $1.44 | |
| ETH | <0.01% | $0.00124 | 1,156.0922 | $1.43 | |
| ETH | <0.01% | <$0.000001 | 93,735,634.6851 | $1.43 | |
| ETH | <0.01% | $0.027662 | 48.9599 | $1.35 | |
| ETH | <0.01% | $0.019957 | 59.9981 | $1.2 | |
| ETH | <0.01% | $0.00129 | 744.217 | $0.9601 | |
| ETH | <0.01% | $0.000005 | 183,600 | $0.8941 | |
| ETH | <0.01% | <$0.000001 | 1,494,689,043.9695 | $0.7428 | |
| ETH | <0.01% | $0.001339 | 543.4121 | $0.7275 | |
| ETH | <0.01% | $0.000066 | 10,625.886 | $0.705 | |
| ETH | <0.01% | $0.000266 | 2,442.6478 | $0.6485 | |
| ETH | <0.01% | $0.099159 | 6.3224 | $0.6269 | |
| ETH | <0.01% | $0.290144 | 2 | $0.5802 | |
| ETH | <0.01% | $0.000011 | 50,596.2179 | $0.554 | |
| ETH | <0.01% | $0.000687 | 802 | $0.5508 | |
| ETH | <0.01% | $0.03581 | 14.3126 | $0.5125 | |
| ETH | <0.01% | $0.000029 | 16,800 | $0.4868 | |
| ETH | <0.01% | $0.002279 | 170.7019 | $0.3889 | |
| ETH | <0.01% | $0.000127 | 2,547.5146 | $0.3235 | |
| ETH | <0.01% | $0.002464 | 125.1565 | $0.3083 | |
| ETH | <0.01% | $0.293889 | 1.001 | $0.2941 | |
| ETH | <0.01% | $0.001454 | 202.1658 | $0.294 | |
| ETH | <0.01% | <$0.000001 | 757,003.8017 | $0.2657 | |
| ETH | <0.01% | $0.022372 | 10 | $0.2237 | |
| ETH | <0.01% | $0.022271 | 8.7075 | $0.1939 | |
| ETH | <0.01% | <$0.000001 | 344,919,763,040.1228 | $0.1873 | |
| ETH | <0.01% | $0.00 | 0.0154 | $0.00 | |
| ETH | <0.01% | $0.000049 | 3,731 | $0.1824 | |
| ETH | <0.01% | $0.0001 | 1,730.47 | $0.1734 | |
| ETH | <0.01% | $0.091703 | 1.7073 | $0.1565 | |
| ETH | <0.01% | $0.00008 | 1,600 | $0.1284 | |
| BSC | 10.51% | $0.999957 | 58,805.9649 | $58,803.46 | |
| BSC | 5.38% | $0.999968 | 30,079.9946 | $30,079.02 | |
| BSC | 3.22% | $0.999826 | 18,005.431 | $18,002.3 | |
| BSC | 2.52% | $635.25 | 22.1732 | $14,085.6 | |
| BSC | 1.84% | $0.010311 | 1,000,000 | $10,311.24 | |
| BSC | 0.08% | $0.046323 | 10,000 | $463.23 | |
| BSC | 0.08% | $1.35 | 320.9516 | $433.28 | |
| BSC | 0.05% | $0.025633 | 10,000 | $256.33 | |
| BSC | 0.02% | $2,074.12 | 0.0535 | $111 | |
| BSC | <0.01% | $70,403.02 | 0.00072935 | $51.35 | |
| BSC | <0.01% | $1.02 | 50.0649 | $51.2 | |
| BSC | <0.01% | $0.177399 | 172.4762 | $30.6 | |
| BSC | <0.01% | $0.00002 | 1,091,588.7077 | $21.38 | |
| BSC | <0.01% | $0.01894 | 1,017.2883 | $19.27 | |
| BSC | <0.01% | $1.19 | 5.1783 | $6.14 | |
| BSC | <0.01% | $2.19 | 1.1009 | $2.41 | |
| BSC | <0.01% | $40.88 | 0.0146 | $0.5984 | |
| BSC | <0.01% | $0.002436 | 150.8146 | $0.3674 | |
| BSC | <0.01% | $0.00 | 0.00245989 | $0.00 | |
| BSC | <0.01% | $0.000128 | 2,298.8889 | $0.2947 | |
| BSC | <0.01% | <$0.000001 | 804,828 | $0.1904 | |
| BSC | <0.01% | $0.000049 | 3,731 | $0.1813 | |
| BSC | <0.01% | $0.000569 | 282.572 | $0.1607 | |
| BASE | 11.79% | $0.999902 | 65,965.1278 | $65,958.66 | |
| BASE | 1.13% | $0.004571 | 1,387,106.4131 | $6,340.65 | |
| BASE | 0.48% | $0.117816 | 22,650.5613 | $2,668.6 | |
| BASE | 0.15% | $2,070.52 | 0.4035 | $835.38 | |
| BASE | 0.12% | $0.003474 | 200,260.1913 | $695.78 | |
| BASE | 0.07% | $76,331 | 0.00481935 | $367.87 | |
| BASE | 0.07% | $1 | 367.3899 | $367.76 | |
| BASE | <0.01% | $0.10775 | 517.5346 | $55.76 | |
| BASE | <0.01% | $0.998334 | 47.5154 | $47.44 | |
| BASE | <0.01% | $0.000077 | 447,678.1536 | $34.36 | |
| BASE | <0.01% | $0.117399 | 270.45 | $31.75 | |
| BASE | <0.01% | $0.00005 | 251,698.2287 | $12.56 | |
| BASE | <0.01% | $2,263.38 | 0.00350986 | $7.94 | |
| BASE | <0.01% | $0.019895 | 320 | $6.37 | |
| BASE | <0.01% | $0.00 | 32,613,657.865 | $0.00 | |
| BASE | <0.01% | $0.00 | 3,485,675.3486 | $0.00 | |
| BASE | <0.01% | $0.00 | 535.4598 | $0.00 | |
| BASE | <0.01% | $0.000002 | 1,054,808.7749 | $2.26 | |
| BASE | <0.01% | $0.008745 | 24 | $0.2098 | |
| ARB | 6.76% | $0.999909 | 37,800.9445 | $37,797.5 | |
| ARB | 0.98% | $0.002741 | 2,000,000 | $5,481.05 | |
| ARB | 0.92% | $2,070.69 | 2.4986 | $5,173.8 | |
| ARB | 0.37% | $0.999909 | 2,078.1003 | $2,077.91 | |
| ARB | 0.03% | $0.000768 | 225,000 | $172.9 | |
| ARB | 0.02% | $0.998438 | 135.7299 | $135.52 | |
| ARB | <0.01% | $0.121266 | 220.0544 | $26.69 | |
| ARB | <0.01% | $1 | 10 | $10 | |
| ARB | <0.01% | $0.99981 | 4.4396 | $4.44 | |
| ARB | <0.01% | $0.029133 | 78.7966 | $2.3 | |
| ARB | <0.01% | $0.001594 | 500 | $0.7972 | |
| POL | 3.45% | $0.00 | 19,284.2324 | $0.00 | |
| POL | 2.96% | $0.999891 | 16,589.6654 | $16,587.86 | |
| POL | 1.04% | $0.110251 | 52,542.5933 | $5,792.85 | |
| POL | 0.12% | $0.998295 | 654.8664 | $653.75 | |
| POL | <0.01% | $2,074.12 | 0.00284246 | $5.9 | |
| POL | <0.01% | $0.011196 | 149.9893 | $1.68 | |
| POL | <0.01% | $0.00054 | 1,111 | $0.5998 | |
| POL | <0.01% | $0.000442 | 810.0043 | $0.3578 | |
| POL | <0.01% | $0.000001 | 500,000 | $0.2737 | |
| POL | <0.01% | <$0.000001 | 2,000,000 | $0.213 | |
| AVAX | 2.03% | $1 | 11,362.3328 | $11,365.23 | |
| AVAX | 0.41% | $0.00 | 2,313.5021 | $0.00 | |
| AVAX | 0.19% | $1 | 1,068.2737 | $1,068.55 | |
| AVAX | 0.15% | $9.59 | 85.6875 | $822 | |
| AVAX | <0.01% | $1 | 3.4985 | $3.5 | |
| AVAX | <0.01% | $0.000001 | 200,000 | $0.1402 | |
| OP | 0.44% | $0.999902 | 2,447.8131 | $2,447.57 | |
| OP | 0.26% | $0.015289 | 96,000 | $1,467.74 | |
| OP | 0.21% | $0.999902 | 1,187.4205 | $1,187.3 | |
| OP | 0.14% | $2,070.7 | 0.3728 | $771.91 | |
| OP | 0.02% | $0.19781 | 500 | $98.9 | |
| OP | <0.01% | $9.13 | 3.4999 | $31.95 | |
| OP | <0.01% | $2,263.38 | 0.00183253 | $4.15 | |
| OP | <0.01% | $0.999819 | 1.7505 | $1.75 | |
| OP | <0.01% | $0.427063 | 3.2617 | $1.39 | |
| WORLD | 0.19% | $0.999909 | 1,053.891 | $1,053.8 | |
| WORLD | 0.02% | $0.426353 | 256.0409 | $109.16 | |
| WORLD | <0.01% | $2,263.38 | 0.00081311 | $1.84 | |
| WORLD | <0.01% | $2,070.63 | 0.00054365 | $1.13 | |
| ABSTRACT | 0.19% | $0.999906 | 1,080.2892 | $1,080.19 | |
| MANTLE | 0.10% | $1 | 563.4591 | $563.46 | |
| MANTLE | <0.01% | $0.994042 | 9.4415 | $9.39 | |
| MANTLE | <0.01% | $0.662104 | 1 | $0.662104 | |
| GNO | 0.04% | $0.999909 | 239.2707 | $239.25 | |
| GNO | 0.01% | $1 | 58.5945 | $58.59 | |
| UNI | 0.04% | $0.999909 | 243.9755 | $243.95 | |
| UNI | <0.01% | $2,070.29 | 0.001 | $2.07 | |
| MONAD | 0.02% | $0.999909 | 138.9359 | $138.92 | |
| GLMR | 0.02% | $0.00 | 97.0207 | $0.00 | |
| GLMR | <0.01% | $0.014666 | 31.5794 | $0.463138 | |
| LINEA | 0.02% | $0.999909 | 84.4948 | $84.49 | |
| LINEA | <0.01% | $2,070.74 | 0.00005519 | $0.114279 | |
| SCROLL | <0.01% | $0.999908 | 54.2528 | $54.25 | |
| SCROLL | <0.01% | $2,070.74 | 0.0017 | $3.52 | |
| XDC | <0.01% | $0.037348 | 1,000 | $37.35 | |
| OPBNB | <0.01% | $635.12 | 0.0411 | $26.11 | |
| BERA | <0.01% | $0.998314 | 18.218 | $18.19 | |
| HYPEREVM | <0.01% | $31.61 | 0.447 | $14.13 | |
| MOVR | <0.01% | $0.999957 | 7.5047 | $7.5 | |
| CELO | <0.01% | $0.999819 | 4.6897 | $4.69 | |
| CELO | <0.01% | $1 | 1 | $1 | |
| CELO | <0.01% | $0.090193 | 10 | $0.901931 | |
| CELO | <0.01% | $0.00011 | 2,212 | $0.2441 | |
| SEI | <0.01% | $0.999957 | 3.949 | $3.95 | |
| SEI | <0.01% | $0.9992 | 1.2946 | $1.29 | |
| SEI | <0.01% | $0.078118 | 4.8892 | $0.381936 | |
| SONIC | <0.01% | $0.999906 | 4.3561 | $4.36 |
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.