ETH Price: $2,341.81 (-1.27%)

Contract

0x6De037ef9aD2725EB40118Bb1702EBb27e4Aeb24
 

More Info

Private Name Tags

TokenTracker

Multichain Info

Transaction Hash
Method
Block
From
To
0x6b62f3857e1d4bafd01f5fc56a510c14ebbb282a79c1a5246cdf6e30b1f607bd Approve(pending)2024-10-02 22:30:1720 hrs ago1727908217IN
Render : RNDR Token
0 ETH(Pending)(Pending)
0x1c8bbfd1a6ebf0258406f7423be5fc33f9e8c14bae365d3f4cc08c4c6462fd22 Approve(pending)2024-10-02 22:30:1720 hrs ago1727908217IN
Render : RNDR Token
0 ETH(Pending)(Pending)
0xba7ee45b318550fa1a089f3a93f912c2f34bf55e4f612c8262538e844be90537 Approve(pending)2024-10-02 22:30:1720 hrs ago1727908217IN
Render : RNDR Token
0 ETH(Pending)(Pending)
0x221d5a55d88b8cad52016b98073895fe836858cd044350284115de116c783860 Approve(pending)2024-10-02 22:30:1720 hrs ago1727908217IN
Render : RNDR Token
0 ETH(Pending)(Pending)
0x280e78e94f8e96e218d4cd6c3a2ab8c1f16d3a49430f81022ca6e18d0804ad3a Approve(pending)2024-10-02 22:30:1720 hrs ago1727908217IN
Render : RNDR Token
0 ETH(Pending)(Pending)
0xf08a233f3e88ee8fc99e31aa55cd7822d2b66599dcfe40d038c580f3df962d55 Approve(pending)2024-10-02 22:30:1720 hrs ago1727908217IN
Render : RNDR Token
0 ETH(Pending)(Pending)
0x8a10433a290ec5e799d41dc2a288634dccb758f76b67e122458c5bf721aeb1a6 Approve(pending)2024-10-02 7:04:0936 hrs ago1727852649IN
Render : RNDR Token
0 ETH(Pending)(Pending)
0xe74d057a35870657a9c28201ed9e211f8048e69c00edf7ce07a65c0eef11a113 Approve(pending)2024-10-02 7:04:0936 hrs ago1727852649IN
Render : RNDR Token
0 ETH(Pending)(Pending)
0x89a9473bbe3a5f788b1960adc66bdc4e849a8bc51c3b70d98861f96c03239bef Transfer(pending)2024-09-30 10:59:163 days ago1727693956IN
Render : RNDR Token
0 ETH(Pending)(Pending)
0x160d3c34fc41ff14374b41a6f94b2af5ad7d41d1feeb91647b678b84081b58e6 Transfer(pending)2024-09-28 11:58:535 days ago1727524733IN
Render : RNDR Token
0 ETH(Pending)(Pending)
Approve208870322024-10-03 19:20:231 min ago1727983223IN
Render : RNDR Token
0 ETH0.0012872723.97782488
Approve208869872024-10-03 19:11:1110 mins ago1727982671IN
Render : RNDR Token
0 ETH0.0005420216.19835913
Approve208869872024-10-03 19:11:1110 mins ago1727982671IN
Render : RNDR Token
0 ETH0.0007098613.30277901
Transfer208869472024-10-03 19:03:1118 mins ago1727982191IN
Render : RNDR Token
0 ETH0.0009056316.58432707
Transfer208869412024-10-03 19:01:5919 mins ago1727982119IN
Render : RNDR Token
0 ETH0.0009698717.77245674
Transfer208869182024-10-03 18:57:2324 mins ago1727981843IN
Render : RNDR Token
0 ETH0.0006526517.40592856
Transfer208869122024-10-03 18:56:1125 mins ago1727981771IN
Render : RNDR Token
0 ETH0.0006715117.90891738
Transfer208868872024-10-03 18:51:1130 mins ago1727981471IN
Render : RNDR Token
0 ETH0.0008669323.12063001
Transfer208868832024-10-03 18:50:2331 mins ago1727981423IN
Render : RNDR Token
0 ETH0.0009354922.13030435
Approve208868752024-10-03 18:48:4732 mins ago1727981327IN
Render : RNDR Token
0 ETH0.0012297522.90649293
Approve208868572024-10-03 18:45:1136 mins ago1727981111IN
Render : RNDR Token
0 ETH0.0009964229.75644164
Transfer208868152024-10-03 18:36:4744 mins ago1727980607IN
Render : RNDR Token
0 ETH0.0017174628.92718374
Transfer208867922024-10-03 18:32:1149 mins ago1727980331IN
Render : RNDR Token
0 ETH0.0011279126.67474329
Approve208867672024-10-03 18:27:1154 mins ago1727980031IN
Render : RNDR Token
0 ETH0.0014883227.87861833
Transfer208867622024-10-03 18:26:1155 mins ago1727979971IN
Render : RNDR Token
0 ETH0.0012620129.84614302
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
AdminUpgradeabilityProxy

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU LGPLv3 license
/**
 *Submitted for verification at Etherscan.io on 2021-03-11
*/

/**
 *Submitted for verification at Etherscan.io on 2018-10-22
*/

pragma solidity ^0.4.24;

// File: 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: 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 indexed 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.
   * @param _data Data to send as msg.data to the implementation to initialize the proxied contract.
   * It should include the signature and the parameters of the function to be called, as described in
   * https://solidity.readthedocs.io/en/v0.4.24/abi-spec.html#function-selector-and-argument-encoding.
   * This parameter is optional, if no data is given the initialization call to proxied contract will be skipped.
   */
  constructor(address _implementation, bytes _data) public payable {
    assert(IMPLEMENTATION_SLOT == keccak256("org.zeppelinos.proxy.implementation"));
    _setImplementation(_implementation);
    if(_data.length > 0) {
      require(_implementation.delegatecall(_data));
    }
  }

  /**
   * @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: 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.
   * @param _data Data to send as msg.data to the implementation to initialize the proxied contract.
   * It should include the signature and the parameters of the function to be called, as described in
   * https://solidity.readthedocs.io/en/v0.4.24/abi-spec.html#function-selector-and-argument-encoding.
   * This parameter is optional, if no data is given the initialization call to proxied contract will be skipped.
   */
  constructor(address _implementation, bytes _data) UpgradeabilityProxy(_implementation, _data) public payable {
    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/v0.4.24/abi-spec.html#function-selector-and-argument-encoding.
   */
  function upgradeToAndCall(address newImplementation, bytes data) payable external ifAdmin {
    _upgradeTo(newImplementation);
    require(newImplementation.delegatecall(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();
  }
}

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"},{"name":"_data","type":"bytes"}],"payable":true,"stateMutability":"payable","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":true,"name":"implementation","type":"address"}],"name":"Upgraded","type":"event"}]

6080604052604051610b9f380380610b9f8339810180604052810190808051906020019092919080518201929190505050818160405180807f6f72672e7a657070656c696e6f732e70726f78792e696d706c656d656e74617481526020017f696f6e000000000000000000000000000000000000000000000000000000000081525060230190506040518091039020600019167f7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3600102600019161415156100c357fe5b6100db82610202640100000000026401000000009004565b600081511115610176578173ffffffffffffffffffffffffffffffffffffffff168160405180828051906020019080838360005b8381101561012a57808201518184015260208101905061010f565b50505050905090810190601f1680156101575780820380516001836020036101000a031916815260200191505b50915050600060405180830381855af4915050151561017557600080fd5b5b505060405180807f6f72672e7a657070656c696e6f732e70726f78792e61646d696e000000000000815250601a0190506040518091039020600019167f10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b600102600019161415156101e357fe5b6101fb336102e7640100000000026401000000009004565b5050610329565b60006102208261031664010000000002610828176401000000009004565b15156102ba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603b8152602001807f43616e6e6f742073657420612070726f787920696d706c656d656e746174696f81526020017f6e20746f2061206e6f6e2d636f6e74726163742061646472657373000000000081525060400191505060405180910390fd5b7f7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c360010290508181555050565b60007f10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b60010290508181555050565b600080823b905060008111915050919050565b610867806103386000396000f30060806040526004361061006d576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff1680633659cfe6146100775780634f1ef286146100ba5780635c60da1b146101085780638f2839701461015f578063f851a440146101a2575b6100756101f9565b005b34801561008357600080fd5b506100b8600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610213565b005b610106600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001908201803590602001919091929391929390505050610268565b005b34801561011457600080fd5b5061011d610305565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561016b57600080fd5b506101a0600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061035d565b005b3480156101ae57600080fd5b506101b761051b565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610201610573565b61021161020c61064e565b61067f565b565b61021b6106a5565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561025c57610257816106d6565b610265565b6102646101f9565b5b50565b6102706106a5565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156102f7576102ac836106d6565b8273ffffffffffffffffffffffffffffffffffffffff16828260405180838380828437820191505092505050600060405180830381855af491505015156102f257600080fd5b610300565b6102ff6101f9565b5b505050565b600061030f6106a5565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156103515761034a61064e565b905061035a565b6103596101f9565b5b90565b6103656106a5565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561050f57600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614151515610463576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260368152602001807f43616e6e6f74206368616e6765207468652061646d696e206f6620612070726f81526020017f787920746f20746865207a65726f20616464726573730000000000000000000081525060400191505060405180910390fd5b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f61048c6106a5565b82604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019250505060405180910390a161050a81610725565b610518565b6105176101f9565b5b50565b60006105256106a5565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415610567576105606106a5565b9050610570565b61056f6101f9565b5b90565b61057b6106a5565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151515610644576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001807f43616e6e6f742063616c6c2066616c6c6261636b2066756e6374696f6e20667281526020017f6f6d207468652070726f78792061646d696e000000000000000000000000000081525060400191505060405180910390fd5b61064c610754565b565b6000807f7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c36001029050805491505090565b3660008037600080366000845af43d6000803e80600081146106a0573d6000f35b3d6000fd5b6000807f10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b6001029050805491505090565b6106df81610756565b8073ffffffffffffffffffffffffffffffffffffffff167fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b60405160405180910390a250565b60007f10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b60010290508181555050565b565b600061076182610828565b15156107fb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603b8152602001807f43616e6e6f742073657420612070726f787920696d706c656d656e746174696f81526020017f6e20746f2061206e6f6e2d636f6e74726163742061646472657373000000000081525060400191505060405180910390fd5b7f7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c360010290508181555050565b600080823b9050600081119150509190505600a165627a7a72305820f82e8b87e97893a49b8bd4d7b939f667ecf5bb0557066c581f98354d9f5ade5200290000000000000000000000001a1fdf27c5e6784d1cebf256a8a5cc0877e73af000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000044485cc955000000000000000000000000b4ed31195d1ad52f868dfc6a607e97d6773927f60000000000000000000000000996bfb5d057faa237640e2506be7b4f9c46de0b00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061006d576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff1680633659cfe6146100775780634f1ef286146100ba5780635c60da1b146101085780638f2839701461015f578063f851a440146101a2575b6100756101f9565b005b34801561008357600080fd5b506100b8600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610213565b005b610106600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001908201803590602001919091929391929390505050610268565b005b34801561011457600080fd5b5061011d610305565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561016b57600080fd5b506101a0600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061035d565b005b3480156101ae57600080fd5b506101b761051b565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610201610573565b61021161020c61064e565b61067f565b565b61021b6106a5565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561025c57610257816106d6565b610265565b6102646101f9565b5b50565b6102706106a5565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156102f7576102ac836106d6565b8273ffffffffffffffffffffffffffffffffffffffff16828260405180838380828437820191505092505050600060405180830381855af491505015156102f257600080fd5b610300565b6102ff6101f9565b5b505050565b600061030f6106a5565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156103515761034a61064e565b905061035a565b6103596101f9565b5b90565b6103656106a5565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561050f57600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614151515610463576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260368152602001807f43616e6e6f74206368616e6765207468652061646d696e206f6620612070726f81526020017f787920746f20746865207a65726f20616464726573730000000000000000000081525060400191505060405180910390fd5b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f61048c6106a5565b82604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019250505060405180910390a161050a81610725565b610518565b6105176101f9565b5b50565b60006105256106a5565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415610567576105606106a5565b9050610570565b61056f6101f9565b5b90565b61057b6106a5565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151515610644576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001807f43616e6e6f742063616c6c2066616c6c6261636b2066756e6374696f6e20667281526020017f6f6d207468652070726f78792061646d696e000000000000000000000000000081525060400191505060405180910390fd5b61064c610754565b565b6000807f7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c36001029050805491505090565b3660008037600080366000845af43d6000803e80600081146106a0573d6000f35b3d6000fd5b6000807f10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b6001029050805491505090565b6106df81610756565b8073ffffffffffffffffffffffffffffffffffffffff167fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b60405160405180910390a250565b60007f10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b60010290508181555050565b565b600061076182610828565b15156107fb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603b8152602001807f43616e6e6f742073657420612070726f787920696d706c656d656e746174696f81526020017f6e20746f2061206e6f6e2d636f6e74726163742061646472657373000000000081525060400191505060405180910390fd5b7f7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c360010290508181555050565b600080823b9050600081119150509190505600a165627a7a72305820f82e8b87e97893a49b8bd4d7b939f667ecf5bb0557066c581f98354d9f5ade520029

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000001a1fdf27c5e6784d1cebf256a8a5cc0877e73af000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000044485cc955000000000000000000000000b4ed31195d1ad52f868dfc6a607e97d6773927f60000000000000000000000000996bfb5d057faa237640e2506be7b4f9c46de0b00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _implementation (address): 0x1a1fdf27c5e6784d1cEbF256A8A5Cc0877e73Af0
Arg [1] : _data (bytes): 0x485cc955000000000000000000000000b4ed31195d1ad52f868dfc6a607e97d6773927f60000000000000000000000000996bfb5d057faa237640e2506be7b4f9c46de0b

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000001a1fdf27c5e6784d1cebf256a8a5cc0877e73af0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [3] : 485cc955000000000000000000000000b4ed31195d1ad52f868dfc6a607e97d6
Arg [4] : 773927f60000000000000000000000000996bfb5d057faa237640e2506be7b4f
Arg [5] : 9c46de0b00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

6418:4154:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;587:11;:9;:11::i;:::-;6418:4154;9060:105;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9060:105:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;9693:184;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8355:103;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8355:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;8641:228;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8641:228:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;8201:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8201:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;2133:93;2170:15;:13;:15::i;:::-;2192:28;2202:17;:15;:17::i;:::-;2192:9;:28::i;:::-;2133:93::o;9060:105::-;7256:8;:6;:8::i;:::-;7242:22;;:10;:22;;;7238:80;;;9130:29;9141:17;9130:10;:29::i;:::-;7238:80;;;7299:11;:9;:11::i;:::-;7238:80;9060:105;:::o;9693:184::-;7256:8;:6;:8::i;:::-;7242:22;;:10;:22;;;7238:80;;;9790:29;9801:17;9790:10;:29::i;:::-;9834:17;:30;;9865:4;;9834:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9826:45;;;;;;;;7238:80;;;7299:11;:9;:11::i;:::-;7238:80;9693:184;;;:::o;8355:103::-;8412:7;7256:8;:6;:8::i;:::-;7242:22;;:10;:22;;;7238:80;;;8435:17;:15;:17::i;:::-;8428:24;;7238:80;;;7299:11;:9;:11::i;:::-;7238:80;8355:103;:::o;8641:228::-;7256:8;:6;:8::i;:::-;7242:22;;:10;:22;;;7238:80;;;8732:1;8712:22;;:8;:22;;;;8704:89;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8805:32;8818:8;:6;:8::i;:::-;8828;8805:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8844:19;8854:8;8844:9;:19::i;:::-;7238:80;;;7299:11;:9;:11::i;:::-;7238:80;8641:228;:::o;8201:85::-;8249:7;7256:8;:6;:8::i;:::-;7242:22;;:10;:22;;;7238:80;;;8272:8;:6;:8::i;:::-;8265:15;;7238:80;;;7299:11;:9;:11::i;:::-;7238:80;8201:85;:::o;10409:160::-;10472:8;:6;:8::i;:::-;10458:22;;:10;:22;;;;10450:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10542:21;:19;:21::i;:::-;10409:160::o;5091:161::-;5141:12;5162;4073:66;5177:19;;5162:34;;5235:4;5229:11;5221:19;;5212:35;;:::o;1026:750::-;1333:12;1330:1;1327;1314:32;1527:1;1524;1510:12;1507:1;1491:14;1486:3;1473:56;1594:14;1591:1;1588;1573:36;1626:6;1688:1;1683:36;;;;1747:14;1744:1;1737:25;1683:36;1702:14;1699:1;1692:25;9927:141;9968:11;9988:12;6949:66;10003:10;;9988:25;;10051:4;10045:11;10038:18;;10029:34;;:::o;5393:145::-;5456:37;5475:17;5456:18;:37::i;:::-;5514:17;5505:27;;;;;;;;;;;;5393:145;:::o;10190:139::-;10243:12;6949:66;10258:10;;10243:25;;10308:8;10302:4;10295:22;10286:38;;:::o;1992:40::-;:::o;5681:297::-;5874:12;5759:42;5783:17;5759:23;:42::i;:::-;5751:114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4073:66;5889:19;;5874:34;;5948:17;5942:4;5935:31;5926:47;;:::o;2717:587::-;2774:4;2787:12;3270:4;3258:17;3250:25;;3297:1;3290:4;:8;3283:15;;2717:587;;;;:::o

Swarm Source

bzzr://f82e8b87e97893a49b8bd4d7b939f667ecf5bb0557066c581f98354d9f5ade52

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

RNDR (Render Network) bridges GPUs across the world in order to provide much-needed power to artists, studios, and developers who rely on high-quality rendering to power their creations. The mission is to bridge the gap between GPU supply/demand through the use of distributed GPU computing.

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Chain Token Portfolio % Price Amount Value
ETH99.92%$5.211,037,868.7685$5,407,296.28
ETH0.04%$0.9995442,135.652$2,134.68
ETH<0.01%$10.5540.6819$429.19
ETH<0.01%$2,340.710.0932$218.07
ETH<0.01%$4,841.190.00121632$5.89
ETH<0.01%$0.01697590.8578$1.54
BSC0.01%$543.311.4822$805.29
BSC<0.01%$1.374.3781$96.9
BSC<0.01%$0.157495263.4033$41.48
BSC<0.01%$2,340.470.0131$30.57
BSC<0.01%$0.158184103.1391$16.31
BSC<0.01%$110.8468$10.85
BSC<0.01%$4.082.0938$8.55
BSC<0.01%$0.000016495,587$7.87
BSC<0.01%$1.042.5316$2.64
BSC<0.01%$4.490.0498$0.2236
FTM0.01%$0.601029963.1611$578.89
ARB<0.01%$0.99980775.9511$75.94
ARB<0.01%$0.527031.981$1.04
BASE<0.01%$116.1558$16.16
BASE<0.01%$0.0000354,942.1176$0.1746
POL<0.01%$5.211.3677$7.13
POL<0.01%$0.3748813$1.12
OP<0.01%$2,341.630.00265$6.21
Loading...
Loading
[ 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.