Latest 25 from a total of 61,012,942 transactions
(More than 25 Pending Txns)
Latest 24 internal transactions
Advanced mode:
Parent Transaction Hash | Method | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|---|
Transfer | 22618217 | 4 days ago | 0.1 ETH | ||||
Transfer | 22183430 | 65 days ago | 0.0042 ETH | ||||
Transfer* | 21555889 | 152 days ago | 0.0138 ETH | ||||
Transfer* | 21555889 | 152 days ago | 0.00147331 ETH | ||||
Transfer* | 21555889 | 152 days ago | 0.02119227 ETH | ||||
Transfer* | 21555889 | 152 days ago | 0.01 ETH | ||||
Transfer* | 21555889 | 152 days ago | 0.05766807 ETH | ||||
Transfer* | 21555889 | 152 days ago | 0.01840152 ETH | ||||
Transfer | 21555875 | 152 days ago | 0.0138 ETH | ||||
Transfer | 21555875 | 152 days ago | 0.00147331 ETH | ||||
Transfer | 21555875 | 152 days ago | 0.02119227 ETH | ||||
Transfer | 21555875 | 152 days ago | 0.01 ETH | ||||
Transfer | 21555875 | 152 days ago | 0.05766807 ETH | ||||
Transfer | 21555875 | 152 days ago | 0.01840152 ETH | ||||
Transfer | 20952905 | 236 days ago | 0.01625352 ETH | ||||
Transfer | 20952874 | 236 days ago | 0.01625352 ETH | ||||
Transfer | 20952866 | 236 days ago | 0.01625352 ETH | ||||
Deposit | 17530228 | 716 days ago | 0.031 ETH | ||||
Transfer | 16376741 | 878 days ago | 0.001 ETH | ||||
Transfer | 16376678 | 878 days ago | 0.001 ETH | ||||
Transfer | 16376645 | 878 days ago | 0.001 ETH | ||||
Transfer | 16376601 | 878 days ago | 0.001 ETH | ||||
- | 14051226 | 1232 days ago | 0.00996458 ETH | ||||
- | 13436266 | 1328 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 | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
BSC | 90.17% | $0.009053 | 381,436,256.2865 | $3,452,951.71 | |
BSC | 0.95% | $1 | 36,401.2463 | $36,401.4 | |
BSC | 0.79% | $0.999524 | 30,079.9945 | $30,065.68 | |
BSC | 0.43% | $1 | 16,614.777 | $16,631.39 | |
BSC | 0.37% | $643.64 | 21.8801 | $14,082.98 | |
BSC | 0.27% | $0.010311 | 1,000,000 | $10,311.24 | |
BSC | 0.02% | $2.31 | 320.9516 | $741.4 | |
BSC | 0.01% | $0.046323 | 10,000 | $463.23 | |
BSC | <0.01% | $0.025633 | 10,000 | $256.33 | |
BSC | <0.01% | $2,476.74 | 0.0535 | $132.55 | |
BSC | <0.01% | $104,362.62 | 0.00072935 | $76.12 | |
BSC | <0.01% | $1 | 50.0649 | $50.07 | |
BSC | <0.01% | $0.263159 | 172.4762 | $45.39 | |
BSC | <0.01% | $0.000041 | 1,091,588.7077 | $44.9 | |
BSC | <0.01% | $0.01894 | 1,016.9112 | $19.26 | |
BSC | <0.01% | $4.22 | 1.1009 | $4.64 | |
BSC | <0.01% | $0.214891 | 5.95 | $1.28 | |
BSC | <0.01% | $0.000001 | 804,828 | $0.6426 | |
BSC | <0.01% | <$0.000001 | 42,700,876.1154 | $0.6151 | |
BSC | <0.01% | $40.88 | 0.0146 | $0.5984 | |
BSC | <0.01% | $0.0001 | 3,731 | $0.3726 | |
BSC | <0.01% | $0.002436 | 150.8146 | $0.3674 | |
BSC | <0.01% | $140.78 | 0.00245989 | $0.3463 | |
BSC | <0.01% | $0.000133 | 2,298.8889 | $0.3058 | |
BSC | <0.01% | $0.002208 | 100 | $0.2208 | |
BSC | <0.01% | $1 | 0.1783 | $0.1784 | |
BSC | <0.01% | $0.059685 | 2.1 | $0.1253 | |
ETH | 2.55% | $1 | 97,492.4548 | $97,589.95 | |
ETH | 0.11% | $0.020766 | 200,162 | $4,156.62 | |
ETH | 0.07% | $0.000012 | 229,137,045.206 | $2,850.46 | |
ETH | 0.05% | $0.024866 | 76,777.7354 | $1,909.14 | |
ETH | 0.04% | $1 | 1,561.306 | $1,561.31 | |
ETH | 0.04% | $0.006626 | 210,756.8185 | $1,396.54 | |
ETH | 0.03% | $13.55 | 82.1587 | $1,113.25 | |
ETH | 0.02% | $3.75 | 219.7537 | $824.08 | |
ETH | 0.01% | $0.000332 | 1,523,241.1223 | $506.06 | |
ETH | 0.01% | $0.717707 | 654.5334 | $469.76 | |
ETH | <0.01% | $0.13235 | 2,810.7046 | $372 | |
ETH | <0.01% | $0.214923 | 1,460.55 | $313.91 | |
ETH | <0.01% | $2,481.79 | 0.122 | $302.77 | |
ETH | <0.01% | $12.94 | 22.0975 | $285.94 | |
ETH | <0.01% | $0.046398 | 5,000 | $231.99 | |
ETH | <0.01% | $0.014717 | 15,643.6839 | $230.24 | |
ETH | <0.01% | $1.21 | 162.2572 | $196.52 | |
ETH | <0.01% | $0.205087 | 834 | $171.04 | |
ETH | <0.01% | $0.000011 | 14,322,796.4626 | $158.98 | |
ETH | <0.01% | $0.000017 | 9,163,801.9969 | $154.5 | |
ETH | <0.01% | <$0.000001 | 1,147,579,083.426 | $147.83 | |
ETH | <0.01% | $0.081437 | 1,769.8249 | $144.13 | |
ETH | <0.01% | $0.164478 | 846.5758 | $139.24 | |
ETH | <0.01% | <$0.000001 | 29,618,715,274.7279 | $117.27 | |
ETH | <0.01% | $0.684578 | 152.9297 | $104.69 | |
ETH | <0.01% | $642.2 | 0.1334 | $85.66 | |
ETH | <0.01% | $0.805736 | 100 | $80.57 | |
ETH | <0.01% | $0.014482 | 5,443.1898 | $78.83 | |
ETH | <0.01% | $1 | 60.361 | $60.36 | |
ETH | <0.01% | $5.99 | 10.0711 | $60.33 | |
ETH | <0.01% | $0.020427 | 2,883.4408 | $58.9 | |
ETH | <0.01% | $0.080223 | 708.4873 | $56.84 | |
ETH | <0.01% | $2,630.44 | 0.0208 | $54.68 | |
ETH | <0.01% | <$0.000001 | 574,386,993,207.0822 | $52.42 | |
ETH | <0.01% | $0.00199 | 25,150.513 | $50.06 | |
ETH | <0.01% | $2.61 | 17 | $44.33 | |
ETH | <0.01% | $0.019903 | 2,207.4 | $43.93 | |
ETH | <0.01% | <$0.000001 | 116,901,960.7843 | $41.02 | |
ETH | <0.01% | $0.006063 | 5,739.7989 | $34.8 | |
ETH | <0.01% | $0.7395 | 45.4074 | $33.58 | |
ETH | <0.01% | $0.065191 | 500 | $32.6 | |
ETH | <0.01% | $49.95 | 0.6422 | $32.08 | |
ETH | <0.01% | $0.635755 | 39.3541 | $25.02 | |
ETH | <0.01% | $0.110897 | 210.4127 | $23.33 | |
ETH | <0.01% | $0.000005 | 4,087,008.6389 | $19.82 | |
ETH | <0.01% | $0.004483 | 4,279.6488 | $19.18 | |
ETH | <0.01% | $0.215192 | 87.2525 | $18.78 | |
ETH | <0.01% | $104,183 | 0.00017183 | $17.9 | |
ETH | <0.01% | $7.93 | 2.23 | $17.68 | |
ETH | <0.01% | $0.002168 | 7,732.5896 | $16.77 | |
ETH | <0.01% | $0.008771 | 1,879.9332 | $16.49 | |
ETH | <0.01% | $0.004408 | 3,404.2663 | $15.01 | |
ETH | <0.01% | $0.999037 | 15 | $14.99 | |
ETH | <0.01% | $0.224048 | 63.0306 | $14.12 | |
ETH | <0.01% | <$0.000001 | 105,647,663 | $13.39 | |
ETH | <0.01% | $0.000032 | 333,067.6484 | $10.75 | |
ETH | <0.01% | $0.002147 | 4,933.4494 | $10.59 | |
ETH | <0.01% | $0.27014 | 37.1345 | $10.03 | |
ETH | <0.01% | $0.028979 | 314.076 | $9.1 | |
ETH | <0.01% | $0.003779 | 2,395.0013 | $9.05 | |
ETH | <0.01% | <$0.000001 | 22,690,527,043.6375 | $8.17 | |
ETH | <0.01% | $0.001294 | 5,959.8268 | $7.71 | |
ETH | <0.01% | $0.000341 | 19,129 | $6.51 | |
ETH | <0.01% | $0.000641 | 10,000 | $6.41 | |
ETH | <0.01% | $0.026338 | 241.7631 | $6.37 | |
ETH | <0.01% | $0.081586 | 68.2888 | $5.57 | |
ETH | <0.01% | $2.7 | 2 | $5.4 | |
ETH | <0.01% | $0.000285 | 16,800 | $4.79 | |
ETH | <0.01% | $3.17 | 1.5 | $4.76 | |
ETH | <0.01% | $0.320973 | 14.3126 | $4.59 | |
ETH | <0.01% | $0.000006 | 813,460 | $4.5 | |
ETH | <0.01% | <$0.000001 | 6,452,278,144 | $4.08 | |
ETH | <0.01% | $0.399053 | 10 | $3.99 | |
ETH | <0.01% | <$0.000001 | 93,735,634.6851 | $3.62 | |
ETH | <0.01% | $0.000058 | 61,198.737 | $3.56 | |
ETH | <0.01% | $0.000019 | 183,600 | $3.5 | |
ETH | <0.01% | $0.000001 | 4,096,528.3827 | $3.33 | |
ETH | <0.01% | $0.997363 | 2.3422 | $2.34 | |
ETH | <0.01% | $0.000851 | 2,547.5146 | $2.17 | |
ETH | <0.01% | $0.000038 | 50,596.2179 | $1.94 | |
ETH | <0.01% | <$0.000001 | 1,494,689,043.9695 | $1.75 | |
ETH | <0.01% | $0.002943 | 543.4121 | $1.6 | |
ETH | <0.01% | $0.009137 | 170.7019 | $1.56 | |
ETH | <0.01% | $0.03048 | 48.9599 | $1.49 | |
ETH | <0.01% | $0.000051 | 28,327.2329 | $1.45 | |
ETH | <0.01% | $0.00124 | 1,156.0922 | $1.43 | |
ETH | <0.01% | $0.010891 | 125.1565 | $1.36 | |
ETH | <0.01% | $0.127359 | 10 | $1.27 | |
ETH | <0.01% | $0.196707 | 6.3224 | $1.24 | |
ETH | <0.01% | $0.999819 | 1.2324 | $1.23 | |
ETH | <0.01% | $0.00136 | 802 | $1.09 | |
ETH | <0.01% | $0.609893 | 1.7073 | $1.04 | |
ETH | <0.01% | $0.000361 | 2,442.6478 | $0.8808 | |
ETH | <0.01% | $0.075875 | 11.5715 | $0.8779 | |
ETH | <0.01% | $0.000078 | 10,625.886 | $0.8336 | |
ETH | <0.01% | $0.804811 | 1 | $0.8048 | |
ETH | <0.01% | $0.074394 | 8.7075 | $0.6477 | |
ETH | <0.01% | $0.000356 | 1,600 | $0.5689 | |
ETH | <0.01% | $0.000663 | 744.217 | $0.4937 | |
ETH | <0.01% | $0.0001 | 3,731 | $0.3726 | |
ETH | <0.01% | $0.001454 | 202.1658 | $0.294 | |
ETH | <0.01% | <$0.000001 | 757,003.8017 | $0.2657 | |
ETH | <0.01% | $0.00039 | 637.7622 | $0.2487 | |
ETH | <0.01% | $0.000002 | 164,194.951 | $0.2463 | |
ETH | <0.01% | <$0.000001 | 344,919,763,040.1228 | $0.223 | |
ETH | <0.01% | $0.000123 | 1,730.47 | $0.2132 | |
ETH | <0.01% | $44.53 | 0.00458504 | $0.2041 | |
ETH | <0.01% | $0.00009 | 1,374.8369 | $0.1232 | |
BASE | 1.25% | $0.99979 | 47,866.9564 | $47,856.9 | |
BASE | 0.17% | $0.004571 | 1,387,106.4131 | $6,340.65 | |
BASE | 0.15% | $0.028693 | 200,260.1903 | $5,746.09 | |
BASE | 0.10% | $0.175352 | 22,650.5613 | $3,971.82 | |
BASE | 0.01% | $2,481.79 | 0.1856 | $460.71 | |
BASE | <0.01% | $1 | 333.3899 | $333.39 | |
BASE | <0.01% | $0.000575 | 447,678.1536 | $257.31 | |
BASE | <0.01% | $0.333374 | 270.45 | $90.16 | |
BASE | <0.01% | $0.000003 | 3,485,675.3486 | $9.34 | |
BASE | <0.01% | $2,479.63 | 0.00350986 | $8.7 | |
BASE | <0.01% | $0.000003 | 1,054,808.7749 | $3.1 | |
BASE | <0.01% | <$0.000001 | 32,613,657.865 | $2.2 | |
BASE | <0.01% | $0.04702 | 24 | $1.13 | |
BASE | <0.01% | $0.001253 | 270.657 | $0.339 | |
BASE | <0.01% | $0.004633 | 43.332 | $0.2007 | |
POL | 0.50% | $0.999794 | 19,167.3463 | $19,163.4 | |
POL | 0.33% | $0.999794 | 12,573.4926 | $12,570.9 | |
POL | 0.29% | $0.213767 | 52,484.9735 | $11,219.54 | |
POL | 0.01% | $1 | 546.2664 | $546.81 | |
POL | <0.01% | $0.000035 | 2,000,000 | $70.86 | |
POL | <0.01% | $0.060535 | 149.9893 | $9.08 | |
POL | <0.01% | $2,476.74 | 0.00103246 | $2.56 | |
POL | <0.01% | $0.000963 | 1,111 | $1.07 | |
POL | <0.01% | $0.000541 | 810.0043 | $0.4379 | |
POL | <0.01% | $0.000001 | 500,000 | $0.2737 | |
POL | <0.01% | $0.001241 | 181 | $0.2246 | |
POL | <0.01% | $0.000112 | 2,000 | $0.2244 | |
AVAX | 0.29% | $1 | 10,915.3926 | $10,915.44 | |
AVAX | 0.06% | $1 | 2,313.5021 | $2,315.24 | |
AVAX | 0.04% | $19.72 | 77.284 | $1,524.08 | |
AVAX | 0.03% | $1 | 1,068.2737 | $1,068.28 | |
AVAX | <0.01% | $0.999856 | 3.4985 | $3.5 | |
AVAX | <0.01% | $0.000004 | 200,000 | $0.7479 | |
AVAX | <0.01% | $0.010619 | 13.2712 | $0.1409 | |
ARB | 0.19% | $0.999794 | 7,259.8157 | $7,258.32 | |
ARB | 0.08% | $2,482.27 | 1.2987 | $3,223.68 | |
ARB | 0.05% | $0.999794 | 2,068.1003 | $2,067.67 | |
ARB | <0.01% | $0.000768 | 225,000 | $172.9 | |
ARB | <0.01% | $1 | 74.0377 | $74.11 | |
ARB | <0.01% | $0.33264 | 220.0544 | $73.2 | |
ARB | <0.01% | $0.089316 | 78.7966 | $7.04 | |
ARB | <0.01% | $0.001033 | 500 | $0.5164 | |
OP | 0.12% | $0.048087 | 96,000 | $4,616.31 | |
OP | 0.06% | $0.99979 | 2,384.9446 | $2,384.44 | |
OP | 0.03% | $0.99979 | 1,187.4205 | $1,187.17 | |
OP | 0.02% | $2,481.97 | 0.3711 | $921.11 | |
OP | <0.01% | $0.590356 | 500 | $295.18 | |
OP | <0.01% | $13.55 | 3.4999 | $47.42 | |
OP | <0.01% | $2,479.63 | 0.00183253 | $4.54 | |
OP | <0.01% | $1.06 | 3.2617 | $3.47 | |
OP | <0.01% | $1 | 1.7505 | $1.75 | |
CRONOS | 0.01% | $0.999791 | 473.6196 | $473.52 | |
CRONOS | 0.01% | $0.096917 | 4,197.2436 | $406.78 | |
CRONOS | <0.01% | $1 | 300 | $300.3 | |
CRONOS | <0.01% | $2,478.58 | 0.0102 | $25.29 | |
WORLD | 0.02% | $0.999791 | 699.0379 | $698.89 | |
WORLD | <0.01% | $1.06 | 89.1892 | $94.81 | |
WORLD | <0.01% | $2,482.18 | 0.00054365 | $1.35 | |
MANTLE | 0.01% | $0.997465 | 563.4591 | $562.03 | |
MANTLE | <0.01% | $0.998769 | 9.4415 | $9.43 | |
GNO | <0.01% | $0.999817 | 238.2707 | $238.23 | |
GNO | <0.01% | $0.999958 | 5.7552 | $5.75 | |
UNI | <0.01% | $0.999791 | 233.9755 | $233.93 | |
UNI | <0.01% | $2,482.18 | 0.001 | $2.48 | |
ZKSYNC | <0.01% | $0.999817 | 99.94 | $99.92 | |
ZKSYNC | <0.01% | $2,481.79 | 0.0385 | $95.45 | |
ZKSYNC | <0.01% | $0.999817 | 33.7057 | $33.7 | |
GLMR | <0.01% | $1 | 97.0207 | $97.02 | |
GLMR | <0.01% | $0.075853 | 31.5794 | $2.4 | |
XDC | <0.01% | $0.059672 | 1,000 | $59.67 | |
SCROLL | <0.01% | $0.999817 | 50.8733 | $50.86 | |
SCROLL | <0.01% | $2,482.21 | 0.0017 | $4.22 | |
OPBNB | <0.01% | $643.64 | 0.0411 | $26.46 | |
LINEA | <0.01% | $0.999817 | 22.3753 | $22.37 | |
ZKEVM | <0.01% | $2,482.21 | 0.00682707 | $16.95 | |
CELO | <0.01% | $1 | 4.6897 | $4.69 | |
CELO | <0.01% | $0.301517 | 10 | $3.02 | |
CELO | <0.01% | $0.00009 | 1,912 | $0.1727 | |
MOVR | <0.01% | $1 | 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.