BNB Price: $719.27 (+0.10%)
Gas: 1 GWei
 

Overview

BNB Balance

BNB Smart Chain LogoBNB Smart Chain LogoBNB Smart Chain Logo0.052 BNB

BNB Value

$37.40 (@ $719.27/BNB)

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Setup Bridge160618682022-03-14 20:53:191008 days ago1647291199IN
0x2B461899...af01B5E20
0 BNB0.000691275

Latest 22 internal transactions

Parent Transaction Hash Block From To
323588242023-10-06 5:58:14437 days ago1696571894
0x2B461899...af01B5E20
0.003 BNB
323586642023-10-06 5:50:14437 days ago1696571414
0x2B461899...af01B5E20
0.003 BNB
305592602023-08-04 13:03:34500 days ago1691154214
0x2B461899...af01B5E20
0.003 BNB
296256332023-07-03 0:39:28533 days ago1688344768
0x2B461899...af01B5E20
0.003 BNB
288129252023-06-04 17:32:36561 days ago1685899956
0x2B461899...af01B5E20
0.003 BNB
278402102023-05-01 21:35:44595 days ago1682976944
0x2B461899...af01B5E20
0.003 BNB
270673132023-04-04 22:22:14622 days ago1680646934
0x2B461899...af01B5E20
0.003 BNB
263483432023-03-10 16:19:26647 days ago1678465166
0x2B461899...af01B5E20
0.003 BNB
253540902023-02-03 18:26:19682 days ago1675448779
0x2B461899...af01B5E20
0.002 BNB
244346652023-01-02 10:32:43714 days ago1672655563
0x2B461899...af01B5E20
0.002 BNB
235436652022-12-01 23:13:54746 days ago1669936434
0x2B461899...af01B5E20
0.002 BNB
226912932022-11-01 21:54:55776 days ago1667339695
0x2B461899...af01B5E20
0.002 BNB
218698872022-10-03 15:41:59805 days ago1664811719
0x2B461899...af01B5E20
0.002 BNB
209310172022-08-31 19:13:09838 days ago1661973189
0x2B461899...af01B5E20
0.002 BNB
200465462022-08-01 1:13:01869 days ago1659316381
0x2B461899...af01B5E20
0.002 BNB
192041222022-07-02 17:28:08898 days ago1656782888
0x2B461899...af01B5E20
0.002 BNB
183602942022-06-03 7:11:26927 days ago1654240286
0x2B461899...af01B5E20
0.002 BNB
174668892022-05-02 23:45:55959 days ago1651535155
0x2B461899...af01B5E20
0.002 BNB
168579152022-04-11 16:57:12980 days ago1649696232
0x2B461899...af01B5E20
0.002 BNB
163501342022-03-24 22:56:39998 days ago1648162599
0x2B461899...af01B5E20
0.002 BNB
163493752022-03-24 22:18:42998 days ago1648160322
0x2B461899...af01B5E20
0.002 BNB
162283882022-03-20 16:21:371002 days ago1647793297
0x2B461899...af01B5E20
0.002 BNB
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x4406D7CF...d68A3Cd70
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
HyperJumpBridgeTokenDistributor

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : HyperJumpBridgeTokenDistributor.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import "./HyperJumpSimpleTokenDistributor.sol";
import "./ISynapseBridge.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";

contract HyperJumpBridgeTokenDistributor is HyperJumpSimpleTokenDistributor {
  bool public bridge_receiver = false;
  address public bridge;
  address public destination_address;
  uint256 public destination_chainId;

  uint256 public distributed = 0;
  uint256 public returned = 0;

  event DistributedToBridge(
    address indexed distributor,
    address indexed bridge,
    uint256 amount,
    uint256 indexed timestamp
  );
  event ReturnedToBridge(
    address indexed distributor,
    address indexed bridge,
    uint256 amount,
    uint256 indexed timestamp
  );

  function setupBridge(
    address _hyperJumpToken,
    address _hyperJumpToken_collector,
    address _bridge,
    bool _bridge_receiver,
    address _destination_address,
    uint256 _destination_chainId
  ) public onlyOwner {
    HyperJumpSimpleTokenDistributor.initialize(
      _hyperJumpToken,
      _hyperJumpToken_collector
    );
    bridge = _bridge;
    bridge_receiver = _bridge_receiver;
    destination_address = _destination_address;
    destination_chainId = _destination_chainId;
  }

  function sendToBridge(uint256 _amount) public onlyOwner {
    if (!bridge_receiver) {
      // distribute via bridge to child chain
      IERC20(hyperJumpToken).approve(bridge, _amount);
      ISynapseBridge(bridge).deposit(destination_address, destination_chainId, hyperJumpToken, _amount);
      distributed += _amount;
      emit DistributedToBridge(address(this), bridge, _amount, block.timestamp);
    } else {
      // return via bridge to main chain
      IERC20(hyperJumpToken).approve(bridge, _amount);
      ISynapseBridge(bridge).redeem(destination_address, destination_chainId, hyperJumpToken, _amount);
      returned += _amount;
      emit ReturnedToBridge(address(this), bridge, _amount, block.timestamp);
    }
  }
}

File 2 of 6 : HyperJumpSimpleTokenDistributor.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";

contract HyperJumpSimpleTokenDistributor is Ownable {
  bool public initialized = false;

  address public hyperJumpToken;
  address public hyperJumpToken_collector;

  uint256 public collected = 0;

  event Collected(
    address indexed distributor,
    address indexed collector,
    uint256 amount,
    uint256 indexed timestamp
  );
  
  event ValueReceived(
    address indexed sender,
    uint256 amount
  );

  event ValueCollected(
    address indexed collector,
    uint256 amount
  );

  function initialize(
    address _hyperJumpToken,
    address _hyperJumpToken_collector
  ) public onlyOwner {
    require(
      !initialized,
      "HyperJump token Distributor has already been initialized!"
    );
    initialized = true;
    hyperJumpToken = _hyperJumpToken;
    hyperJumpToken_collector = _hyperJumpToken_collector;
  }

  function collect(uint256 _amount) public {
    collectTo(msg.sender, _amount);
  }

  function collectTo(address _destination, uint256 _amount) public {
    require(
      msg.sender == hyperJumpToken_collector,
      "Only collector may collect JUMPs."
    );
    IERC20(hyperJumpToken).transfer(_destination, _amount);
    collected += _amount;
    emit Collected(address(this), _destination, _amount, block.timestamp);
  }

  function availableInDistributor() public view returns (uint256) {
    return IERC20(hyperJumpToken).balanceOf(address(this));
  }

  function availableInCollector() public view returns (uint256) {
    return IERC20(hyperJumpToken).balanceOf(hyperJumpToken_collector);
  }

  // receive payment fallback
  receive() external payable {
    emit ValueReceived(msg.sender, msg.value);
  }
  
  // collect received payment
  function collectPayments() external onlyOwner {
    uint256 amount = address(this).balance;
    payable(msg.sender).transfer(amount);
    emit ValueCollected(msg.sender, amount); 
  }
  
}

File 3 of 6 : ISynapseBridge.sol
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity >=0.6.2;

interface ISynapseBridge {
  function deposit(address to, uint256 chainId, address token, uint256 amount) external;
  function redeem(address to, uint256 chainId, address token, uint256 amount) external;
}

File 4 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 5 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 6 of 6 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"distributor","type":"address"},{"indexed":true,"internalType":"address","name":"collector","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"Collected","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"distributor","type":"address"},{"indexed":true,"internalType":"address","name":"bridge","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"DistributedToBridge","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"distributor","type":"address"},{"indexed":true,"internalType":"address","name":"bridge","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"ReturnedToBridge","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"collector","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ValueCollected","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ValueReceived","type":"event"},{"inputs":[],"name":"availableInCollector","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"availableInDistributor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bridge","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bridge_receiver","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"collect","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"collectPayments","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_destination","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"collectTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"collected","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"destination_address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"destination_chainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"distributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hyperJumpToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hyperJumpToken_collector","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_hyperJumpToken","type":"address"},{"internalType":"address","name":"_hyperJumpToken_collector","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"returned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"sendToBridge","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_hyperJumpToken","type":"address"},{"internalType":"address","name":"_hyperJumpToken_collector","type":"address"},{"internalType":"address","name":"_bridge","type":"address"},{"internalType":"bool","name":"_bridge_receiver","type":"bool"},{"internalType":"address","name":"_destination_address","type":"address"},{"internalType":"uint256","name":"_destination_chainId","type":"uint256"}],"name":"setupBridge","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

Deployed Bytecode

0x60806040526004361061012e5760003560e01c8063814551a9116100ab578063ce0721631161006f578063ce072163146103f1578063ce3f865f14610408578063e20323c314610431578063e78cea921461045c578063f2fde38b14610487578063f84b903e146104b057610183565b8063814551a91461031a578063838d56c91461034557806384bcefd4146103705780638da5cb5b1461039b5780639d2e835e146103c657610183565b8063485cc955116100f2578063485cc9551461025b5780634a9c744d146102845780636b963b62146102ad5780636cb76408146102d8578063715018a61461030357610183565b80630b04bcf714610188578063158ef93e146101b15780632aac651c146101dc5780633800474c146102075780633f269b431461023257610183565b36610183573373ffffffffffffffffffffffffffffffffffffffff167f7e71433ddf847725166244795048ecf3e3f9f35628254ecbf73605666423349334604051610179919061147d565b60405180910390a2005b600080fd5b34801561019457600080fd5b506101af60048036038101906101aa91906114c9565b6104db565b005b3480156101bd57600080fd5b506101c6610a0c565b6040516101d39190611511565b60405180910390f35b3480156101e857600080fd5b506101f1610a1f565b6040516101fe919061147d565b60405180910390f35b34801561021357600080fd5b5061021c610af3565b604051610229919061147d565b60405180910390f35b34801561023e57600080fd5b506102596004803603810190610254919061158a565b610af9565b005b34801561026757600080fd5b50610282600480360381019061027d91906115ca565b610cbc565b005b34801561029057600080fd5b506102ab60048036038101906102a69190611636565b610e29565b005b3480156102b957600080fd5b506102c2610f5a565b6040516102cf919061147d565b60405180910390f35b3480156102e457600080fd5b506102ed61100c565b6040516102fa919061147d565b60405180910390f35b34801561030f57600080fd5b50610318611012565b005b34801561032657600080fd5b5061032f61109a565b60405161033c91906116d2565b60405180910390f35b34801561035157600080fd5b5061035a6110c0565b60405161036791906116d2565b60405180910390f35b34801561037c57600080fd5b506103856110e6565b604051610392919061147d565b60405180910390f35b3480156103a757600080fd5b506103b06110ec565b6040516103bd91906116d2565b60405180910390f35b3480156103d257600080fd5b506103db611115565b6040516103e891906116d2565b60405180910390f35b3480156103fd57600080fd5b5061040661113b565b005b34801561041457600080fd5b5061042f600480360381019061042a91906114c9565b611254565b005b34801561043d57600080fd5b50610446611261565b6040516104539190611511565b60405180910390f35b34801561046857600080fd5b50610471611274565b60405161047e91906116d2565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a991906116ed565b61129a565b005b3480156104bc57600080fd5b506104c5611392565b6040516104d2919061147d565b60405180910390f35b6104e3611398565b73ffffffffffffffffffffffffffffffffffffffff166105016110ec565b73ffffffffffffffffffffffffffffffffffffffff1614610557576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054e90611777565b60405180910390fd5b600460009054906101000a900460ff166107bc57600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600460019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b81526004016105ea929190611797565b602060405180830381600087803b15801561060457600080fd5b505af1158015610618573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061063c91906117d5565b50600460019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166390d25074600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600654600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856040518563ffffffff1660e01b81526004016106e49493929190611802565b600060405180830381600087803b1580156106fe57600080fd5b505af1158015610712573d6000803e3d6000fd5b5050505080600760008282546107289190611876565b9250508190555042600460019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff167f42cdcf8ca788e31976f797bc3cd1940f60a8022b542b1c82a5cbc54fb1081a03846040516107af919061147d565b60405180910390a4610a09565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600460019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b815260040161083b929190611797565b602060405180830381600087803b15801561085557600080fd5b505af1158015610869573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061088d91906117d5565b50600460019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f3f094a1600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600654600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856040518563ffffffff1660e01b81526004016109359493929190611802565b600060405180830381600087803b15801561094f57600080fd5b505af1158015610963573d6000803e3d6000fd5b5050505080600860008282546109799190611876565b9250508190555042600460019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff167ffe8bd2c5b917fe8b43e50fa7e673cdaae19da53910f82f0a44d7aa4142cc17d684604051610a00919061147d565b60405180910390a45b50565b600060149054906101000a900460ff1681565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b8152600401610a9e91906116d2565b60206040518083038186803b158015610ab657600080fd5b505afa158015610aca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aee91906118e1565b905090565b60065481565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8090611980565b60405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401610be6929190611797565b602060405180830381600087803b158015610c0057600080fd5b505af1158015610c14573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c3891906117d5565b508060036000828254610c4b9190611876565b92505081905550428273ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff167fdcdcaef5de7ddddb7ef392b97e6b32c1c43fd5f5ed468fd987baaa3c5252f5f584604051610cb0919061147d565b60405180910390a45050565b610cc4611398565b73ffffffffffffffffffffffffffffffffffffffff16610ce26110ec565b73ffffffffffffffffffffffffffffffffffffffff1614610d38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2f90611777565b60405180910390fd5b600060149054906101000a900460ff1615610d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7f90611a12565b60405180910390fd5b6001600060146101000a81548160ff02191690831515021790555081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b610e31611398565b73ffffffffffffffffffffffffffffffffffffffff16610e4f6110ec565b73ffffffffffffffffffffffffffffffffffffffff1614610ea5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9c90611777565b60405180910390fd5b610eaf8686610cbc565b83600460016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600460006101000a81548160ff02191690831515021790555081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600681905550505050505050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610fb791906116d2565b60206040518083038186803b158015610fcf57600080fd5b505afa158015610fe3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061100791906118e1565b905090565b60085481565b61101a611398565b73ffffffffffffffffffffffffffffffffffffffff166110386110ec565b73ffffffffffffffffffffffffffffffffffffffff161461108e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108590611777565b60405180910390fd5b61109860006113a0565b565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60035481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611143611398565b73ffffffffffffffffffffffffffffffffffffffff166111616110ec565b73ffffffffffffffffffffffffffffffffffffffff16146111b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ae90611777565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611202573d6000803e3d6000fd5b503373ffffffffffffffffffffffffffffffffffffffff167ff2bead4c439a934898411d893b93306542788a8c74465ad5f03cdd98e3a7172682604051611249919061147d565b60405180910390a250565b61125e3382610af9565b50565b600460009054906101000a900460ff1681565b600460019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6112a2611398565b73ffffffffffffffffffffffffffffffffffffffff166112c06110ec565b73ffffffffffffffffffffffffffffffffffffffff1614611316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130d90611777565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137d90611aa4565b60405180910390fd5b61138f816113a0565b50565b60075481565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000819050919050565b61147781611464565b82525050565b6000602082019050611492600083018461146e565b92915050565b600080fd5b6114a681611464565b81146114b157600080fd5b50565b6000813590506114c38161149d565b92915050565b6000602082840312156114df576114de611498565b5b60006114ed848285016114b4565b91505092915050565b60008115159050919050565b61150b816114f6565b82525050565b60006020820190506115266000830184611502565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006115578261152c565b9050919050565b6115678161154c565b811461157257600080fd5b50565b6000813590506115848161155e565b92915050565b600080604083850312156115a1576115a0611498565b5b60006115af85828601611575565b92505060206115c0858286016114b4565b9150509250929050565b600080604083850312156115e1576115e0611498565b5b60006115ef85828601611575565b925050602061160085828601611575565b9150509250929050565b611613816114f6565b811461161e57600080fd5b50565b6000813590506116308161160a565b92915050565b60008060008060008060c0878903121561165357611652611498565b5b600061166189828a01611575565b965050602061167289828a01611575565b955050604061168389828a01611575565b945050606061169489828a01611621565b93505060806116a589828a01611575565b92505060a06116b689828a016114b4565b9150509295509295509295565b6116cc8161154c565b82525050565b60006020820190506116e760008301846116c3565b92915050565b60006020828403121561170357611702611498565b5b600061171184828501611575565b91505092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061176160208361171a565b915061176c8261172b565b602082019050919050565b6000602082019050818103600083015261179081611754565b9050919050565b60006040820190506117ac60008301856116c3565b6117b9602083018461146e565b9392505050565b6000815190506117cf8161160a565b92915050565b6000602082840312156117eb576117ea611498565b5b60006117f9848285016117c0565b91505092915050565b600060808201905061181760008301876116c3565b611824602083018661146e565b61183160408301856116c3565b61183e606083018461146e565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061188182611464565b915061188c83611464565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156118c1576118c0611847565b5b828201905092915050565b6000815190506118db8161149d565b92915050565b6000602082840312156118f7576118f6611498565b5b6000611905848285016118cc565b91505092915050565b7f4f6e6c7920636f6c6c6563746f72206d617920636f6c6c656374204a554d507360008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b600061196a60218361171a565b91506119758261190e565b604082019050919050565b600060208201905081810360008301526119998161195d565b9050919050565b7f48797065724a756d7020746f6b656e204469737472696275746f72206861732060008201527f616c7265616479206265656e20696e697469616c697a65642100000000000000602082015250565b60006119fc60398361171a565b9150611a07826119a0565b604082019050919050565b60006020820190508181036000830152611a2b816119ef565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611a8e60268361171a565b9150611a9982611a32565b604082019050919050565b60006020820190508181036000830152611abd81611a81565b905091905056fea2646970667358221220c56e52778e9c080c93785bcb16a1be694157e11d75dc3f58cab77629f68948f264736f6c63430008090033

Block Transaction Gas Used Reward
view all blocks produced
Age Block Fee Address BC Fee Address Voting Power Jailed Incoming
View All Validatorset

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
[ 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.