Circle: USDC Token
Source Code (Proxy)
Latest 25 from a total of 94,800,080 transactions
(More than 25 Pending Txns)
Latest 25 internal transactions (View All)
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Transfer | 24201155 | 31 days ago | 0.00766051 ETH | ||||
| Transfer | 24197114 | 32 days ago | 0.00377524 ETH | ||||
| Transfer | 24161083 | 37 days ago | 0.0002883 ETH | ||||
| Transfer | 24155564 | 38 days ago | 0.00092229 ETH | ||||
| Transfer | 24094778 | 46 days ago | 0.00010111 ETH | ||||
| Transfer | 24054661 | 52 days ago | 0.00042796 ETH | ||||
| Transfer | 24054642 | 52 days ago | 0.00042796 ETH | ||||
| Transfer | 24025889 | 56 days ago | 0.00068174 ETH | ||||
| Transfer | 24020352 | 57 days ago | 0.0001711 ETH | ||||
| Transfer | 24012200 | 58 days ago | 0.00807101 ETH | ||||
| Transfer | 23959967 | 65 days ago | 0.00158081 ETH | ||||
| Transfer | 23844917 | 81 days ago | 0.00070726 ETH | ||||
| Transfer | 23844518 | 81 days ago | 0.00094015 ETH | ||||
| Transfer | 23677902 | 105 days ago | 0.00024301 ETH | ||||
| Transfer | 23611116 | 114 days ago | 0.00740793 ETH | ||||
| Transfer | 23513427 | 128 days ago | 0.05051663 ETH | ||||
| Transfer | 23513348 | 128 days ago | 0.05051663 ETH | ||||
| Transfer | 23490058 | 131 days ago | 0.00569086 ETH | ||||
| Transfer | 23085151 | 188 days ago | 0.0035686 ETH | ||||
| Approve | 22978468 | 202 days ago | 0 ETH | ||||
| Transfer | 22950915 | 206 days ago | 0.01390912 ETH | ||||
| Transfer | 22890399 | 215 days ago | 0.00627206 ETH | ||||
| Transfer | 22876632 | 217 days ago | 0.00674635 ETH | ||||
| Transfer | 22876542 | 217 days ago | 0.00448439 ETH | ||||
| Transfer | 22782975 | 230 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
$492,858.23
Net Worth in ETH
243.351243
Token Allocations
USDC
39.39%
USDT
30.73%
BUSD
6.10%
Others
23.77%
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 30.25% | $0.999534 | 149,178.2387 | $149,108.72 | |
| ETH | 1.00% | <$0.000001 | 2,993,810,000,000 | $4,944.57 | |
| ETH | 0.39% | $0.025317 | 76,777.7354 | $1,943.8 | |
| ETH | 0.32% | $0.999715 | 1,561.406 | $1,560.96 | |
| ETH | 0.28% | $0.000006 | 229,186,015.3872 | $1,377.41 | |
| ETH | 0.24% | $1.19 | 998.0463 | $1,187.68 | |
| ETH | 0.23% | $0.005729 | 200,162 | $1,146.77 | |
| ETH | 0.21% | $0.039575 | 26,453.256 | $1,046.9 | |
| ETH | 0.14% | $8.57 | 82.8624 | $710.13 | |
| ETH | 0.09% | $16.33 | 26.0902 | $426.05 | |
| ETH | 0.08% | $0.001359 | 292,245.2222 | $397.07 | |
| ETH | 0.07% | $0.001573 | 210,756.8185 | $331.58 | |
| ETH | 0.06% | $1.3 | 219.7537 | $285.68 | |
| ETH | 0.06% | $0.00011 | 2,591,287.5527 | $284.63 | |
| ETH | 0.05% | $2,025.3 | 0.122 | $247.12 | |
| ETH | 0.05% | $10.63 | 22.0975 | $234.9 | |
| ETH | 0.03% | $0.000016 | 9,163,801.9969 | $142.77 | |
| ETH | 0.03% | $0.832525 | 162.2572 | $135.08 | |
| ETH | 0.03% | $0.091261 | 1,460.55 | $133.29 | |
| ETH | 0.02% | <$0.000001 | 29,618,715,274.7279 | $117.27 | |
| ETH | 0.02% | $0.15719 | 654.5334 | $102.89 | |
| ETH | 0.02% | $0.003968 | 24,000 | $95.23 | |
| ETH | 0.02% | $619.54 | 0.1334 | $82.64 | |
| ETH | 0.02% | $0.00513 | 15,643.6839 | $80.25 | |
| ETH | 0.01% | $0.00002 | 3,127,495.1185 | $63.46 | |
| ETH | 0.01% | $0.075391 | 834 | $62.88 | |
| ETH | 0.01% | $0.998973 | 60.361 | $60.3 | |
| ETH | 0.01% | $0.020565 | 2,810.7046 | $57.8 | |
| ETH | 0.01% | $2,533.88 | 0.0225 | $57.03 | |
| ETH | 0.01% | $0.000004 | 15,479,913.1212 | $56.5 | |
| ETH | 0.01% | $2,449.67 | 0.0208 | $50.92 | |
| ETH | <0.01% | $0.038552 | 1,243.1669 | $47.93 | |
| ETH | <0.01% | $0.001488 | 28,327.2329 | $42.15 | |
| ETH | <0.01% | <$0.000001 | 1,147,579,083.426 | $37.57 | |
| ETH | <0.01% | $1 | 35.99 | $35.99 | |
| ETH | <0.01% | $0.006551 | 5,443.1898 | $35.66 | |
| ETH | <0.01% | $0.006866 | 5,000 | $34.33 | |
| ETH | <0.01% | $3.37 | 10.0712 | $33.94 | |
| ETH | <0.01% | $0.00 | 500 | $0.00 | |
| ETH | <0.01% | $1.83 | 17 | $31.18 | |
| ETH | <0.01% | $0.001378 | 21,592.0558 | $29.76 | |
| ETH | <0.01% | $0.632154 | 39.3541 | $24.88 | |
| ETH | <0.01% | $38.08 | 0.6422 | $24.45 | |
| ETH | <0.01% | $162.6 | 0.15 | $24.39 | |
| ETH | <0.01% | $0.147029 | 152.9297 | $22.49 | |
| ETH | <0.01% | $0.007694 | 2,883.4408 | $22.19 | |
| ETH | <0.01% | $0.030343 | 728.4873 | $22.1 | |
| ETH | <0.01% | $0.004483 | 4,279.6488 | $19.18 | |
| ETH | <0.01% | $0.187122 | 100 | $18.71 | |
| ETH | <0.01% | $8.16 | 2.23 | $18.2 | |
| ETH | <0.01% | $0.000717 | 25,150.513 | $18.03 | |
| ETH | <0.01% | $0.103464 | 145.6044 | $15.06 | |
| ETH | <0.01% | <$0.000001 | 585,266,809,614.1127 | $14.89 | |
| ETH | <0.01% | $0.218969 | 63.0306 | $13.8 | |
| ETH | <0.01% | $0.002372 | 5,739.7989 | $13.61 | |
| ETH | <0.01% | $0.00004 | 333,067.6484 | $13.45 | |
| ETH | <0.01% | $76,149 | 0.00017183 | $13.08 | |
| ETH | <0.01% | $0.000201 | 55,282.4791 | $11.13 | |
| ETH | <0.01% | $0.000201 | 55,282.4791 | $11.11 | |
| ETH | <0.01% | $0.00 | 4,933.4494 | $0.00 | |
| ETH | <0.01% | <$0.000001 | 116,901,960.7843 | $9.49 | |
| ETH | <0.01% | $0.001193 | 7,732.5896 | $9.22 | |
| ETH | <0.01% | $0.200825 | 45.4074 | $9.12 | |
| ETH | <0.01% | $0.004714 | 1,769.8249 | $8.34 | |
| ETH | <0.01% | $0.078266 | 100 | $7.83 | |
| ETH | <0.01% | $0.002086 | 3,404.2663 | $7.1 | |
| ETH | <0.01% | $0.021535 | 314.076 | $6.76 | |
| ETH | <0.01% | <$0.000001 | 105,647,663 | $6.58 | |
| ETH | <0.01% | $0.003315 | 1,879.9332 | $6.23 | |
| ETH | <0.01% | $0.000001 | 4,087,008.6389 | $5.79 | |
| ETH | <0.01% | $0.002564 | 2,207.4 | $5.66 | |
| ETH | <0.01% | $109.36 | 0.0504 | $5.51 | |
| ETH | <0.01% | $0.031211 | 176.553 | $5.51 | |
| ETH | <0.01% | $0.018447 | 210.4127 | $3.88 | |
| ETH | <0.01% | $0.37474 | 10 | $3.75 | |
| ETH | <0.01% | $0.000181 | 19,129 | $3.45 | |
| ETH | <0.01% | $0.084942 | 37.1345 | $3.15 | |
| ETH | <0.01% | <$0.000001 | 22,690,527,043.6375 | $3.13 | |
| ETH | <0.01% | $0.02232 | 130 | $2.9 | |
| ETH | <0.01% | $0.038391 | 68.2888 | $2.62 | |
| ETH | <0.01% | $0.001071 | 2,395.0013 | $2.57 | |
| ETH | <0.01% | <$0.000001 | 6,452,278,144 | $2.41 | |
| ETH | <0.01% | $1 | 2.36 | $2.36 | |
| ETH | <0.01% | $0.000037 | 61,198.737 | $2.28 | |
| ETH | <0.01% | $0.099513 | 20.5032 | $2.04 | |
| ETH | <0.01% | $0.027186 | 75 | $2.04 | |
| ETH | <0.01% | $0.002339 | 865.8465 | $2.03 | |
| ETH | <0.01% | $1.34 | 1.5 | $2.01 | |
| ETH | <0.01% | $1 | 1.9303 | $1.93 | |
| ETH | <0.01% | $0.99981 | 1.7863 | $1.79 | |
| ETH | <0.01% | $0.000002 | 813,460 | $1.44 | |
| ETH | <0.01% | $0.00124 | 1,156.0922 | $1.43 | |
| ETH | <0.01% | $0.000142 | 10,000 | $1.42 | |
| ETH | <0.01% | <$0.000001 | 93,735,634.6851 | $1.36 | |
| ETH | <0.01% | $0.026806 | 48.9599 | $1.31 | |
| ETH | <0.01% | $0.020304 | 59.9981 | $1.22 | |
| ETH | <0.01% | $0.000192 | 5,959.8268 | $1.14 | |
| ETH | <0.01% | $0.00129 | 744.217 | $0.9601 | |
| ETH | <0.01% | $0.000005 | 183,600 | $0.8959 | |
| ETH | <0.01% | $0.001339 | 543.4121 | $0.7275 | |
| ETH | <0.01% | <$0.000001 | 1,494,689,043.9695 | $0.7254 | |
| ETH | <0.01% | $0.000066 | 10,625.886 | $0.705 | |
| ETH | <0.01% | $0.094619 | 6.3224 | $0.5982 | |
| ETH | <0.01% | $0.000233 | 2,442.6478 | $0.5686 | |
| ETH | <0.01% | $0.267984 | 2 | $0.5359 | |
| ETH | <0.01% | $0.000637 | 802 | $0.5112 | |
| ETH | <0.01% | $0.000029 | 16,800 | $0.4872 | |
| ETH | <0.01% | $0.000009 | 50,596.2179 | $0.4705 | |
| ETH | <0.01% | $0.031311 | 14.3126 | $0.4481 | |
| ETH | <0.01% | $0.00227 | 170.7019 | $0.3874 | |
| ETH | <0.01% | $0.000128 | 2,547.5146 | $0.3256 | |
| ETH | <0.01% | $0.001454 | 202.1658 | $0.294 | |
| ETH | <0.01% | <$0.000001 | 757,003.8017 | $0.2657 | |
| ETH | <0.01% | $0.002042 | 125.1565 | $0.2555 | |
| ETH | <0.01% | $0.247767 | 1.001 | $0.248 | |
| ETH | <0.01% | $0.024027 | 8.7075 | $0.2092 | |
| ETH | <0.01% | $0.019641 | 10 | $0.1964 | |
| 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.1818 | |
| ETH | <0.01% | $0.000096 | 1,730.47 | $0.1663 | |
| ETH | <0.01% | $0.08289 | 1.7073 | $0.1415 | |
| ETH | <0.01% | $0.000083 | 1,600 | $0.1334 | |
| BSC | 11.93% | $0.999917 | 58,805.9649 | $58,801.1 | |
| BSC | 6.10% | $0.999733 | 30,079.9946 | $30,071.95 | |
| BSC | 3.65% | $0.999534 | 18,005.431 | $17,997.04 | |
| BSC | 2.79% | $620.15 | 22.1732 | $13,750.76 | |
| BSC | 2.09% | $0.010311 | 1,000,000 | $10,311.24 | |
| BSC | 0.09% | $0.046323 | 10,000 | $463.23 | |
| BSC | 0.09% | $1.32 | 320.9516 | $423.66 | |
| BSC | 0.05% | $0.025633 | 10,000 | $256.33 | |
| BSC | 0.02% | $2,023.11 | 0.0535 | $108.27 | |
| BSC | 0.01% | $1.02 | 50.0649 | $51.2 | |
| BSC | 0.01% | $68,698.28 | 0.00072935 | $50.11 | |
| BSC | <0.01% | $0.158562 | 172.4762 | $27.35 | |
| BSC | <0.01% | $0.000021 | 1,091,588.7077 | $22.61 | |
| BSC | <0.01% | $0.01894 | 1,017.2883 | $19.27 | |
| BSC | <0.01% | $1.19 | 5.1783 | $6.14 | |
| BSC | <0.01% | $1.92 | 1.1009 | $2.12 | |
| 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.000127 | 2,298.8889 | $0.2929 | |
| BSC | <0.01% | <$0.000001 | 804,828 | $0.1854 | |
| BSC | <0.01% | $0.000049 | 3,731 | $0.1818 | |
| BSC | <0.01% | $0.000559 | 282.572 | $0.1579 | |
| BASE | 13.33% | $0.999825 | 65,714.6807 | $65,703.18 | |
| BASE | 1.29% | $0.004571 | 1,387,106.4131 | $6,340.65 | |
| BASE | 0.53% | $0.114549 | 22,650.5613 | $2,594.6 | |
| BASE | 0.17% | $2,024.5 | 0.4035 | $816.81 | |
| BASE | 0.13% | $0.003175 | 200,260.1913 | $635.8 | |
| 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.000073 | 447,678.1536 | $32.49 | |
| BASE | <0.01% | $0.117048 | 270.45 | $31.66 | |
| 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 | $1.93 | |
| BASE | <0.01% | $0.007162 | 24 | $0.1718 | |
| ARB | 7.45% | $0.999825 | 36,724.9445 | $36,718.52 | |
| ARB | 1.11% | $0.002741 | 2,000,000 | $5,481.05 | |
| ARB | 1.03% | $2,022.77 | 2.4986 | $5,054.08 | |
| ARB | 0.42% | $0.999825 | 2,078.1003 | $2,077.74 | |
| ARB | 0.04% | $0.000768 | 225,000 | $172.9 | |
| ARB | 0.03% | $0.998438 | 135.7299 | $135.52 | |
| ARB | <0.01% | $0.109998 | 220.0544 | $24.21 | |
| ARB | <0.01% | $0.999883 | 10 | $10 | |
| ARB | <0.01% | $0.99981 | 4.4384 | $4.44 | |
| ARB | <0.01% | $0.02654 | 78.7966 | $2.09 | |
| ARB | <0.01% | $0.001594 | 500 | $0.7972 | |
| POL | 3.89% | $0.00 | 19,179.4868 | $0.00 | |
| POL | 3.37% | $0.999825 | 16,587.6651 | $16,584.76 | |
| POL | 0.98% | $0.091749 | 52,542.5933 | $4,820.72 | |
| POL | 0.13% | $0.998295 | 654.8664 | $653.75 | |
| POL | <0.01% | $2,023.11 | 0.00284246 | $5.75 | |
| POL | <0.01% | $0.01033 | 149.9893 | $1.55 | |
| POL | <0.01% | $0.000539 | 1,111 | $0.5991 | |
| POL | <0.01% | $0.000436 | 810.0043 | $0.3532 | |
| POL | <0.01% | $0.000001 | 500,000 | $0.2737 | |
| POL | <0.01% | <$0.000001 | 2,000,000 | $0.213 | |
| AVAX | 2.31% | $0.999917 | 11,362.3328 | $11,361.39 | |
| AVAX | 0.47% | $0.00 | 2,313.5021 | $0.00 | |
| AVAX | 0.22% | $0.999917 | 1,068.2737 | $1,068.19 | |
| AVAX | 0.15% | $8.73 | 85.6875 | $748.41 | |
| AVAX | <0.01% | $0.999868 | 3.4985 | $3.5 | |
| AVAX | <0.01% | $0.000001 | 200,000 | $0.1223 | |
| OP | 0.50% | $0.999825 | 2,447.8131 | $2,447.38 | |
| OP | 0.26% | $0.013495 | 96,000 | $1,295.51 | |
| OP | 0.24% | $0.999825 | 1,187.4205 | $1,187.21 | |
| OP | 0.15% | $2,022.3 | 0.3728 | $753.87 | |
| OP | 0.02% | $0.182958 | 500 | $91.48 | |
| OP | <0.01% | $8.57 | 3.4999 | $29.99 | |
| OP | <0.01% | $2,263.38 | 0.00183253 | $4.15 | |
| OP | <0.01% | $0.999519 | 1.7505 | $1.75 | |
| OP | <0.01% | $0.379017 | 3.2617 | $1.24 | |
| WORLD | 0.21% | $0.999825 | 1,053.8553 | $1,053.67 | |
| WORLD | 0.02% | $0.379151 | 256.0409 | $97.08 | |
| WORLD | <0.01% | $2,263.38 | 0.00081311 | $1.84 | |
| WORLD | <0.01% | $2,022.17 | 0.00054365 | $1.1 | |
| ABSTRACT | 0.22% | $0.999824 | 1,080.2892 | $1,080.1 | |
| MANTLE | 0.11% | $1 | 563.4591 | $563.46 | |
| MANTLE | <0.01% | $0.994042 | 9.4415 | $9.39 | |
| MANTLE | <0.01% | $0.631741 | 1 | $0.631741 | |
| GNO | 0.05% | $0.999905 | 239.2707 | $239.25 | |
| GNO | 0.01% | $0.999825 | 58.5945 | $58.58 | |
| UNI | 0.05% | $0.999825 | 243.9755 | $243.93 | |
| UNI | <0.01% | $2,022.86 | 0.001 | $2.02 | |
| MONAD | 0.03% | $0.999824 | 138.9359 | $138.91 | |
| GLMR | 0.02% | $0.00 | 97.0207 | $0.00 | |
| GLMR | <0.01% | $0.01366 | 31.5794 | $0.431362 | |
| LINEA | 0.02% | $0.999824 | 84.4948 | $84.48 | |
| LINEA | <0.01% | $2,022.46 | 0.00005519 | $0.111615 | |
| SCROLL | 0.01% | $0.999825 | 54.2528 | $54.24 | |
| SCROLL | <0.01% | $2,022.46 | 0.0017 | $3.44 | |
| XDC | <0.01% | $0.035256 | 1,000 | $35.26 | |
| OPBNB | <0.01% | $619.67 | 0.0411 | $25.48 | |
| BERA | <0.01% | $0.998314 | 18.218 | $18.19 | |
| HYPEREVM | <0.01% | $28.76 | 0.447 | $12.86 | |
| MOVR | <0.01% | $1 | 7.5047 | $7.5 | |
| CELO | <0.01% | $0.999519 | 4.6897 | $4.69 | |
| CELO | <0.01% | $1 | 1 | $1 | |
| CELO | <0.01% | $0.082158 | 10 | $0.821576 | |
| CELO | <0.01% | $0.00011 | 2,212 | $0.2436 | |
| SEI | <0.01% | $0.999917 | 3.949 | $3.95 | |
| SEI | <0.01% | $0.9992 | 1.2946 | $1.29 | |
| SEI | <0.01% | $0.072216 | 4.8892 | $0.353083 | |
| SONIC | <0.01% | $0.999824 | 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.