ETH Price: $3,860.30 (+6.97%)

Contract

0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

TokenTracker

USDC (USDC) (@$1.001)
Transaction Hash
Method
Block
From
To
Transfer184140462023-10-23 16:05:23408 days ago1698077123IN
Circle: USDC Token
1.9 ETH0.0008460740.28913351
Transfer152191622022-07-26 16:27:19862 days ago1658852839IN
Circle: USDC Token
2.49750691 ETH0.0006659631.71238621
Transfer152191572022-07-26 16:25:34862 days ago1658852734IN
Circle: USDC Token
2.49800509 ETH0.0005143924.49500176
Transfer148313672022-05-23 19:23:33926 days ago1653333813IN
Circle: USDC Token
1 ETH0.0010292735.56594619
Transfer148165722022-05-21 9:54:54928 days ago1653126894IN
Circle: USDC Token
1 ETH0.0003327715.84635632
Transfer147675152022-05-13 12:57:55936 days ago1652446675IN
Circle: USDC Token
1 ETH0.0011719255.80592216
Transfer145359842022-04-07 2:09:32972 days ago1649297372IN
Circle: USDC Token
1 ETH0.0013358963.61405373
Transfer139290292022-01-02 23:28:321066 days ago1641166112IN
Circle: USDC Token
7.3 ETH0.00321111.10354692
Transfer139290002022-01-02 23:22:571066 days ago1641165777IN
Circle: USDC Token
7.3 ETH0.0027702495.88265051
Transfer139289932022-01-02 23:21:241066 days ago1641165684IN
Circle: USDC Token
7.3 ETH0.00309456107.10802824
Transfer139289932022-01-02 23:21:241066 days ago1641165684IN
Circle: USDC Token
7.3 ETH0.00309456107.10802824
Transfer136406922021-11-18 17:32:441112 days ago1637256764IN
Circle: USDC Token
1 ETH0.0044857155
Transfer136291002021-11-16 21:58:401113 days ago1637099920IN
Circle: USDC Token
5 ETH0.00436904151.22005781
Transfer135581242021-11-05 18:06:491125 days ago1636135609IN
Circle: USDC Token
1.11464826 ETH0.002982142
Transfer135580992021-11-05 18:00:311125 days ago1636135231IN
Circle: USDC Token
1.11433525 ETH0.002877137
Transfer132640692021-09-20 17:48:511171 days ago1632160131IN
Circle: USDC Token
3.22551511 ETH0.00165979
Transfer131106422021-08-28 0:20:031194 days ago1630110003IN
Circle: USDC Token
2 ETH0.00337524116.82297129
Transfer130231272021-08-14 11:54:101208 days ago1628942050IN
Circle: USDC Token
1.6 ETH0.0009165631.68418693
Approve129400452021-08-01 14:01:121221 days ago1627826472IN
Circle: USDC Token
1.57311438 ETH0.0006587122.5
Approve121374002021-03-30 0:24:071345 days ago1617063847IN
Circle: USDC Token
3 ETH0.00290693119
Transfer117511122021-01-29 13:37:461405 days ago1611927466IN
Circle: USDC Token
7 ETH0.003108148
Transfer117511082021-01-29 13:37:091405 days ago1611927429IN
Circle: USDC Token
8 ETH0.003108148
Transfer116953932021-01-20 23:39:481413 days ago1611185988IN
Circle: USDC Token
5 ETH0.0014227567.75
Transfer115091092020-12-23 9:56:361442 days ago1608717396IN
Circle: USDC Token
4.5 ETH0.002352112
Transfer115091032020-12-23 9:56:001442 days ago1608717360IN
Circle: USDC Token
4.5 ETH0.002352112
VIEW ADVANCED FILTER

Latest 10 internal transactions

Advanced mode:
Parent Transaction Hash Block From To
209529052024-10-12 23:49:2352 days ago1728776963
Circle: USDC Token
0.01625352 ETH
209528742024-10-12 23:43:1152 days ago1728776591
Circle: USDC Token
0.01625352 ETH
209528662024-10-12 23:41:3552 days ago1728776495
Circle: USDC Token
0.01625352 ETH
175302282023-06-21 19:50:23532 days ago1687377023
Circle: USDC Token
0.031 ETH
163767412023-01-10 13:35:23694 days ago1673357723
Circle: USDC Token
0.001 ETH
163766782023-01-10 13:22:47694 days ago1673356967
Circle: USDC Token
0.001 ETH
163766452023-01-10 13:16:11694 days ago1673356571
Circle: USDC Token
0.001 ETH
163766012023-01-10 13:07:23694 days ago1673356043
Circle: USDC Token
0.001 ETH
140512262022-01-21 21:06:431047 days ago1642799203
Circle: USDC Token
0.00996458 ETH
134362662021-10-17 15:37:171144 days ago1634485037
Circle: USDC Token
0.194 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
FiatTokenProxy

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Audited
/**
 *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

Contract ABI

[{"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"}]

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

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
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.

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Chain Token Portfolio % Price Amount Value
BSC83.02%$0.009053201,436,256.2865$1,823,501.71
BSC1.38%$1.0130,079.9945$30,399.19
BSC1.27%$0.99991527,805.5563$27,803.19
BSC0.65%$730.1719.6718$14,363.82
BSC0.54%$111,719.1843$11,754.34
BSC0.06%$3.98320.9516$1,277.39
BSC0.02%$0.04632310,000$463.23
BSC0.01%$0.02563310,000$256.33
BSC<0.01%$3,867.460.0366$141.5
BSC<0.01%$150.0649$50.16
BSC<0.01%$0.000192100,510.7378$19.27
BSC<0.01%$0.018941,016.9112$19.26
BSC<0.01%$98,846.870.00014117$13.95
BSC<0.01%$10.21.1009$11.23
BSC<0.01%$0.0024612,298.8889$5.66
BSC<0.01%$0.7219125.95$4.3
BSC<0.01%$0.0002683,731$0.9998
BSC<0.01%$385.980.00245989$0.9494
BSC<0.01%$40.880.0146$0.5984
BSC<0.01%$0.002436150.8146$0.3674
BSC<0.01%$0.003199100$0.3199
BSC<0.01%$10.1783$0.1788
BSC<0.01%$0.00108100$0.108
ETH3.19%$169,772.2309$69,981.55
ETH0.57%$0.062324200,162$12,474.81
ETH0.32%$0.00003229,137,045.206$6,954.31
ETH0.09%$24.5882.1587$2,019.46
ETH0.09%$8.81219.7537$1,936.03
ETH0.09%$0.02432876,777.7354$1,867.84
ETH0.07%$11,561.306$1,564.43
ETH0.07%$1.74834$1,451.16
ETH0.06%$1.93654.5334$1,263.25
ETH0.05%$0.7224451,460.55$1,055.17
ETH0.05%$0.2078025,000$1,039.01
ETH0.03%$0.0004711,523,241.1223$716.94
ETH0.03%$0.3336861,769.8249$590.57
ETH0.02%$0.0000599,163,801.9969$540.21
ETH0.02%$3,860.30.1182$456.24
ETH0.02%$20.2822.0975$448.14
ETH0.01%$0.00002114,322,796.4626$305.65
ETH0.01%$1.96152.9297$299.74
ETH0.01%<$0.000001561,478,320,257.3897$264.54
ETH0.01%$0.366623708.4873$259.75
ETH0.01%<$0.0000011,147,579,083.426$258.98
ETH0.01%$1.48172.3172$255.03
ETH0.01%$1.52162.2572$246.6
ETH0.01%$0.11032,207.4$243.48
ETH0.01%$0.0951732,442.6478$232.47
ETH<0.01%$1.94100$194
ETH<0.01%$0.0325045,739.7989$186.57
ETH<0.01%$16.0910.0711$162.04
ETH<0.01%$0.0295795,443.1898$161
ETH<0.01%$0.000001116,901,960.7843$141.45
ETH<0.01%$0.0500692,810.7046$140.73
ETH<0.01%$2.9945.4074$135.77
ETH<0.01%$7.6617$130.24
ETH<0.01%$0.00484625,150.513$121.87
ETH<0.01%<$0.00000129,618,715,274.7279$117.27
ETH<0.01%$8.1914.3126$117.22
ETH<0.01%$0.0367982,883.4408$106.1
ETH<0.01%$739.130.1334$98.59
ETH<0.01%$4,046.640.0208$84.12
ETH<0.01%$0.000249308,444.829$76.84
ETH<0.01%$0.311753210.4127$65.6
ETH<0.01%$0.72416187.2525$63.18
ETH<0.01%$1.0160.361$60.78
ETH<0.01%$24.332.23$54.26
ETH<0.01%$77.870.6422$50.01
ETH<0.01%$0.00238119,129$45.54
ETH<0.01%$1.139.3541$43.29
ETH<0.01%$1.0337.1345$38.25
ETH<0.01%$0.287463125.1565$35.98
ETH<0.01%$0.065191500$32.6
ETH<0.01%$0.0059874,279.6488$25.62
ETH<0.01%$0.33255476$25.27
ETH<0.01%$0.000136183,600$25.04
ETH<0.01%$12.452$24.9
ETH<0.01%$0.0104522,042.5955$21.35
ETH<0.01%$0.31187168.2888$21.3
ETH<0.01%$0.0000054,087,008.6389$21.14
ETH<0.01%<$0.00000122,690,527,043.6375$18.82
ETH<0.01%<$0.0000016,452,278,144$18.78
ETH<0.01%$0.0071682,395.0013$17.17
ETH<0.01%$98,4610.00017183$16.92
ETH<0.01%$0.0060452,547.5146$15.4
ETH<0.01%$115$15.02
ETH<0.01%$0.020665637.7622$13.18
ETH<0.01%$0.0019955,959.8268$11.89
ETH<0.01%$0.04901241.7631$11.85
ETH<0.01%$0.0000034,096,528.3827$11.76
ETH<0.01%$0.00116210,000$11.62
ETH<0.01%$0.00067616,800$11.35
ETH<0.01%$0.0096091,156.0922$11.11
ETH<0.01%$0.000013813,460$10.92
ETH<0.01%$0.00016861,198.737$10.3
ETH<0.01%$0.0012077,732.5896$9.34
ETH<0.01%$0.052811170.7019$9.01
ETH<0.01%$0.45471811.5715$5.26
ETH<0.01%$0.46950710$4.7
ETH<0.01%$0.005511802$4.42
ETH<0.01%$0.005009744.217$3.73
ETH<0.01%$0.006714543.4121$3.65
ETH<0.01%<$0.0000011,494,689,043.9695$3.06
ETH<0.01%$0.00023810,625.886$2.53
ETH<0.01%$0.0015071,600$2.41
ETH<0.01%$0.9997672.3111$2.31
ETH<0.01%$0.0281348.9599$1.38
ETH<0.01%$0.001565792.7937$1.24
ETH<0.01%$0.999861.2004$1.2
ETH<0.01%$0.0002693,731$1
ETH<0.01%$0.000004164,194.951$0.6715
ETH<0.01%$132.310.00458504$0.6066
ETH<0.01%$0.0002381,730.47$0.4111
ETH<0.01%$0.001454202.1658$0.294
ETH<0.01%<$0.000001757,003.8017$0.2657
ETH<0.01%$0.0000932,535.3535$0.2353
ETH<0.01%$0.0001541,374.8369$0.2123
ETH<0.01%<$0.000001344,919,763,040.1228$0.212
ETH<0.01%$0.000199555.5556$0.1105
ETH<0.01%$0.1016681$0.1016
POL1.70%$0.7109352,408.3897$37,258.72
POL0.83%$118,183.443$18,201.63
POL0.46%$110,134.3032$10,144.44
POL0.02%$1546.2664$547.36
POL<0.01%$3,881.940.00103246$4.01
POL<0.01%$0.0016161,111$1.8
POL<0.01%$0.001566792.7937$1.24
POL<0.01%$0.004942181$0.8945
POL<0.01%$0.000002500,000$0.78
POL<0.01%$0.000659810.0043$0.534
POL<0.01%$0.0001822,000$0.3648
POL<0.01%$0.2657520.4288$0.1139
BASE1.33%$129,132.6958$29,161.83
BASE0.96%$0.10521200,260.1903$21,069.37
BASE0.08%$0.0012451,387,106.4131$1,726.82
BASE0.02%$0.001173447,678.1536$525.18
BASE0.02%$3,864.950.1244$480.98
BASE0.02%$1333.3899$333.39
BASE0.01%$1.02270.45$275.59
BASE<0.01%$0.0000131,054,808.7749$13.37
OP0.65%$0.14916296,000$14,319.55
OP0.08%$11,834.9766$1,836.81
OP0.07%$3,872.480.3711$1,437.03
OP0.06%$2.61500$1,306.88
OP0.05%$11,177.0552$1,178.23
OP<0.01%$24.643.4999$86.24
OP<0.01%$3.353.2617$10.94
OP<0.01%$11.7505$1.76
OP<0.01%$3,8770.00004759$0.1844
AVAX0.49%$0.99991510,858.8926$10,857.97
AVAX0.17%$53.6870.6169$3,790.53
AVAX0.11%$12,313.5021$2,318
AVAX0.05%$0.9999151,068.2737$1,068.18
AVAX<0.01%$0.000028200,000$5.51
AVAX<0.01%$13.4985$3.5
AVAX<0.01%$0.23365713.2712$3.1
ARB0.28%$16,140.8442$6,165.41
ARB0.22%$3,864.71.2741$4,923.94
ARB0.09%$11,920.1003$1,927.78
ARB0.01%$1.16220.0544$255.26
ARB<0.01%$0.000768225,000$172.9
ARB<0.01%$1.0174.0377$74.41
ARB<0.01%$0.32604778.7966$25.69
ARB<0.01%$0.00126500$0.63
ARB<0.01%$0.0838795$0.4193
FTM0.06%$2.05607.3695$1,245.11
FTM0.03%$1.2627.1839$753.24
FTM<0.01%$0.7406796.9276$5.13
CRONOS0.04%$0.2147164,196.4594$901.05
CRONOS0.02%$1468.6196$470.03
CRONOS0.01%$1300$300.3
CRONOS<0.01%$3,861.730.00938204$36.23
MANTLE0.02%$0.993387550.6148$546.97
MANTLE<0.01%$0.993329.4415$9.38
ZKSYNC<0.01%$3,860.30.0385$148.46
ZKSYNC<0.01%$199.94$100.04
ZKSYNC<0.01%$133.7057$33.74
GNO0.01%$1238.2707$238.51
GNO<0.01%$15.7552$5.76
GLMR<0.01%$197.0207$97.03
GLMR<0.01%$0.38262231.5794$12.08
XDC<0.01%$0.0709851,000$70.98
WORLD<0.01%$168.5786$68.65
SCROLL<0.01%$150.8733$50.92
SCROLL<0.01%$3,860.30.0017$6.56
CELO<0.01%$1.0910$10.86
CELO<0.01%$14.6897$4.7
LINEA<0.01%$113.3753$13.39
MOVR<0.01%$0.9999157.5047$7.5
OPBNB<0.01%$728.60.00120925$0.881062
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.