ETH Price: $3,346.45 (-1.63%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve158450782022-10-28 7:31:23796 days ago1666942283IN
0xdf7795bF...14DdFFF82
0 ETH0.000259610.77052207
Approve149645342022-06-14 23:55:08931 days ago1655250908IN
0xdf7795bF...14DdFFF82
0 ETH0.0006145425.496537
Approve125787152021-06-06 4:17:421305 days ago1622953062IN
0xdf7795bF...14DdFFF82
0 ETH0.0001878713
Approve120988462021-03-24 2:15:281379 days ago1616552128IN
0xdf7795bF...14DdFFF82
0 ETH0.00751316167
Approve115916172021-01-05 1:41:331457 days ago1609810893IN
0xdf7795bF...14DdFFF82
0 ETH0.00990135218.8
Approve114983352020-12-21 18:22:001471 days ago1608574920IN
0xdf7795bF...14DdFFF82
0 ETH0.0036347280.32
Approve114838532020-12-19 13:05:191474 days ago1608383119IN
0xdf7795bF...14DdFFF82
0 ETH0.0019906743.99
Approve114824092020-12-19 7:57:441474 days ago1608364664IN
0xdf7795bF...14DdFFF82
0 ETH0.0014933433
Approve114680222020-12-17 2:46:301476 days ago1608173190IN
0xdf7795bF...14DdFFF82
0 ETH0.00493257109
Approve114677342020-12-17 1:42:561476 days ago1608169376IN
0xdf7795bF...14DdFFF82
0 ETH0.0044800499
Approve114221762020-12-10 1:15:191483 days ago1607562919IN
0xdf7795bF...14DdFFF82
0 ETH0.0014390431.8
Approve113777982020-12-03 5:38:121490 days ago1606973892IN
0xdf7795bF...14DdFFF82
0 ETH0.0011313225
Transfer113646992020-12-01 5:11:381492 days ago1606799498IN
0xdf7795bF...14DdFFF82
0 ETH0.0028554956
Approve113545192020-11-29 15:47:511494 days ago1606664871IN
0xdf7795bF...14DdFFF82
0 ETH0.0009050620
Approve113478902020-11-28 15:38:361495 days ago1606577916IN
0xdf7795bF...14DdFFF82
0 ETH0.0010589223.4
Approve113364952020-11-26 21:29:401496 days ago1606426180IN
0xdf7795bF...14DdFFF82
0 ETH0.0026875759.39
Approve113123672020-11-23 4:33:131500 days ago1606105993IN
0xdf7795bF...14DdFFF82
0 ETH0.0021721448
Approve113122312020-11-23 4:06:121500 days ago1606104372IN
0xdf7795bF...14DdFFF82
0 ETH0.0021404647.30000023
Approve112952502020-11-20 13:30:351503 days ago1605879035IN
0xdf7795bF...14DdFFF82
0 ETH0.0030319567
Approve112925862020-11-20 3:40:361503 days ago1605843636IN
0xdf7795bF...14DdFFF82
0 ETH0.0025341656
Approve112906292020-11-19 20:28:311503 days ago1605817711IN
0xdf7795bF...14DdFFF82
0 ETH0.0015838535
Approve112805362020-11-18 7:18:381505 days ago1605683918IN
0xdf7795bF...14DdFFF82
0 ETH0.0035749879
Approve112797042020-11-18 4:11:211505 days ago1605672681IN
0xdf7795bF...14DdFFF82
0 ETH0.0037107482
Approve112770062020-11-17 18:12:001505 days ago1605636720IN
0xdf7795bF...14DdFFF82
0 ETH0.0033803974.7
Approve112767472020-11-17 17:19:371505 days ago1605633577IN
0xdf7795bF...14DdFFF82
0 ETH0.00731777161.70803
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:
FilescoinToken

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2020-11-05
*/

pragma solidity ^0.5.5;

library SafeMath {
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a * b;
        assert(a == 0 || c / a == b);
        return c;
    }

    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        // assert(b > 0); // Solidity automatically throws when dividing by 0
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold
        return c;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        assert(b <= a);
        return a - b;
    }

    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        assert(c >= a);
        return c;
    }
}

contract Ownable {
    address public owner;


    /**
     * @dev The Ownable constructor sets the original `owner` of the contract to the sender
     * account.
     */
    constructor() public {
        owner = msg.sender;
    }


    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(msg.sender == owner);
        _;
    }


    /**
     * @dev Allows the current owner to transfer control of the contract to a newOwner.
     * @param newOwner The address to transfer ownership to.
     */
    function transferOwnership(address newOwner) onlyOwner public{
        if (newOwner != address(0)) {
            owner = newOwner;
        }
    }

}

contract ERC20Basic {
    uint256 public totalSupply;
    function balanceOf(address who) public view returns (uint256);
    function transfer(address to, uint256 value) public returns (bool);
    event Transfer(address indexed _from, address indexed _to, uint _value);
}

contract BasicToken is ERC20Basic {
    using SafeMath for uint256;

    mapping(address => uint256) balances;

    /**
    * @dev transfer token for a specified address
    * @param _to The address to transfer to.
    * @param _value The amount to be transferred.
    */
    function transfer(address _to, uint256 _value) public returns (bool) {
        balances[msg.sender] = balances[msg.sender].sub(_value);
        balances[_to] = balances[_to].add(_value);
        emit Transfer(msg.sender, _to, _value);
        return true;
    }

    /**
    * @dev Gets the balance of the specified address.
    * @param _owner The address to query the the balance of.
    * @return An uint256 representing the amount owned by the passed address.
    */
    function balanceOf(address _owner) public view returns (uint256 balance) {
        return balances[_owner];
    }

}

contract ERC20 is ERC20Basic {
    function allowance(address owner, address spender) public view returns (uint256);
    function transferFrom(address from, address to, uint256 value) public returns (bool);
    function approve(address spender, uint256 value) public returns (bool);

    event Approval(address indexed _owner, address indexed _spender, uint _value);
}

contract StandardToken is ERC20, BasicToken {

    mapping (address => mapping (address => uint256)) allowed;


    /**
     * @dev Transfer tokens from one address to another
     * @param _from address The address which you want to send tokens from
     * @param _to address The address which you want to transfer to
     * @param _value uint256 the amout of tokens to be transfered
     */
    function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
        uint256 _allowance = allowed[_from][msg.sender];

        balances[_from] = balances[_from].sub(_value);
        balances[_to] = balances[_to].add(_value);
        allowed[_from][msg.sender] = _allowance.sub(_value);
        emit Transfer(_from, _to, _value);
        return true;
    }

    /**
     * @dev Aprove the passed address to spend the specified amount of tokens on behalf of msg.sender.
     * @param _spender The address which will spend the funds.
     * @param _value The amount of tokens to be spent.
     */
    function approve(address _spender, uint256 _value) public returns (bool) {

        // To change the approve amount you first have to reduce the addresses`
        //  allowance to zero by calling `approve(_spender, 0)` if it is not
        //  already 0 to mitigate the race condition described here:
        //  https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
        require((_value == 0) || (allowed[msg.sender][_spender] == 0));

        allowed[msg.sender][_spender] = _value;
        emit Approval(msg.sender, _spender, _value);
        return true;
    }

    /**
     * @dev Function to check the amount of tokens that an owner allowed to a spender.
     * @param _owner address The address which owns the funds.
     * @param _spender address The address which will spend the funds.
     * @return A uint256 specifing the amount of tokens still avaible for the spender.
     */
    function allowance(address _owner, address _spender) public view returns (uint256 remaining) {
        return allowed[_owner][_spender];
    }

}

contract FilescoinToken is StandardToken, Ownable {
    string  public  constant name = "Filescoin";
    string  public  constant symbol = "FILs";
    uint    public  constant decimals = 6;


    modifier validDestination( address to ) {
        require(to != address(0x0));
        require(to != address(this) );
        _;
    }

    constructor() public {
        totalSupply = 40000000 * (10 ** decimals);
        address to = msg.sender;
        balances[to] = totalSupply;
        emit Transfer(address(0x0), to, totalSupply);
        transferOwnership(msg.sender); // admin could drain tokens that were sent here by mistake
    }

    function transfer(address _to, uint _value)
    validDestination(_to)
    public returns (bool) {
        return super.transfer(_to, _value);
    }

    function transferFrom(address _from, address _to, uint _value)
    validDestination(_to)
    public returns (bool) {
        return super.transferFrom(_from, _to, _value);
    }

    function emergencyERC20Drain( ERC20 token, uint amount ) onlyOwner public {
        token.transfer( owner, amount );
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_owner","type":"address"},{"indexed":true,"internalType":"address","name":"_spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"constant":true,"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"contract ERC20","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"emergencyERC20Drain","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

608060405234801561001057600080fd5b50600380546001600160a01b0319163390811790915565246139ca8000600081815582815260016020908152604080832084905580519384525184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92908290030190a3610087336001600160e01b0361008d16565b506100d2565b6003546001600160a01b031633146100a457600080fd5b6001600160a01b038116156100cf57600380546001600160a01b0319166001600160a01b0383161790555b50565b61078c806100e16000396000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c80638da5cb5b116100715780638da5cb5b146101f457806395d89b4114610218578063a9059cbb14610220578063db0e16f11461024c578063dd62ed3e1461027a578063f2fde38b146102a8576100b4565b806306fdde03146100b9578063095ea7b31461013657806318160ddd1461017657806323b872dd14610190578063313ce567146101c657806370a08231146101ce575b600080fd5b6100c16102ce565b6040805160208082528351818301528351919283929083019185019080838360005b838110156100fb5781810151838201526020016100e3565b50505050905090810190601f1680156101285780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101626004803603604081101561014c57600080fd5b506001600160a01b0381351690602001356102f3565b604080519115158252519081900360200190f35b61017e610393565b60408051918252519081900360200190f35b610162600480360360608110156101a657600080fd5b506001600160a01b03813581169160208101359091169060400135610399565b61017e6103d9565b61017e600480360360208110156101e457600080fd5b50356001600160a01b03166103de565b6101fc6103f9565b604080516001600160a01b039092168252519081900360200190f35b6100c1610408565b6101626004803603604081101561023657600080fd5b506001600160a01b038135169060200135610428565b6102786004803603604081101561026257600080fd5b506001600160a01b038135169060200135610466565b005b61017e6004803603604081101561029057600080fd5b506001600160a01b0381358116916020013516610503565b610278600480360360208110156102be57600080fd5b50356001600160a01b031661052e565b604051806040016040528060098152602001682334b632b9b1b7b4b760b91b81525081565b600081158061032357503360009081526002602090815260408083206001600160a01b0387168452909152902054155b61032c57600080fd5b3360008181526002602090815260408083206001600160a01b03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60005481565b6000826001600160a01b0381166103af57600080fd5b6001600160a01b0381163014156103c557600080fd5b6103d0858585610573565b95945050505050565b600681565b6001600160a01b031660009081526001602052604090205490565b6003546001600160a01b031681565b6040518060400160405280600481526020016346494c7360e01b81525081565b6000826001600160a01b03811661043e57600080fd5b6001600160a01b03811630141561045457600080fd5b61045e848461067f565b949350505050565b6003546001600160a01b0316331461047d57600080fd5b6003546040805163a9059cbb60e01b81526001600160a01b0392831660048201526024810184905290519184169163a9059cbb916044808201926020929091908290030181600087803b1580156104d357600080fd5b505af11580156104e7573d6000803e3d6000fd5b505050506040513d60208110156104fd57600080fd5b50505050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6003546001600160a01b0316331461054557600080fd5b6001600160a01b0381161561057057600380546001600160a01b0319166001600160a01b0383161790555b50565b6001600160a01b038316600081815260026020908152604080832033845282528083205493835260019091528120549091906105b5908463ffffffff61072f16565b6001600160a01b0380871660009081526001602052604080822093909355908616815220546105ea908463ffffffff61074116565b6001600160a01b038516600090815260016020526040902055610613818463ffffffff61072f16565b6001600160a01b03808716600081815260026020908152604080832033845282529182902094909455805187815290519288169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3506001949350505050565b3360009081526001602052604081205461069f908363ffffffff61072f16565b33600090815260016020526040808220929092556001600160a01b038516815220546106d1908363ffffffff61074116565b6001600160a01b0384166000818152600160209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b60008282111561073b57fe5b50900390565b60008282018381101561075057fe5b939250505056fea265627a7a72315820b50f1820b757a9acd8adeea3fb82a5f0d33021091625b4b32a3def8033566b0564736f6c63430005110032

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100b45760003560e01c80638da5cb5b116100715780638da5cb5b146101f457806395d89b4114610218578063a9059cbb14610220578063db0e16f11461024c578063dd62ed3e1461027a578063f2fde38b146102a8576100b4565b806306fdde03146100b9578063095ea7b31461013657806318160ddd1461017657806323b872dd14610190578063313ce567146101c657806370a08231146101ce575b600080fd5b6100c16102ce565b6040805160208082528351818301528351919283929083019185019080838360005b838110156100fb5781810151838201526020016100e3565b50505050905090810190601f1680156101285780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101626004803603604081101561014c57600080fd5b506001600160a01b0381351690602001356102f3565b604080519115158252519081900360200190f35b61017e610393565b60408051918252519081900360200190f35b610162600480360360608110156101a657600080fd5b506001600160a01b03813581169160208101359091169060400135610399565b61017e6103d9565b61017e600480360360208110156101e457600080fd5b50356001600160a01b03166103de565b6101fc6103f9565b604080516001600160a01b039092168252519081900360200190f35b6100c1610408565b6101626004803603604081101561023657600080fd5b506001600160a01b038135169060200135610428565b6102786004803603604081101561026257600080fd5b506001600160a01b038135169060200135610466565b005b61017e6004803603604081101561029057600080fd5b506001600160a01b0381358116916020013516610503565b610278600480360360208110156102be57600080fd5b50356001600160a01b031661052e565b604051806040016040528060098152602001682334b632b9b1b7b4b760b91b81525081565b600081158061032357503360009081526002602090815260408083206001600160a01b0387168452909152902054155b61032c57600080fd5b3360008181526002602090815260408083206001600160a01b03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60005481565b6000826001600160a01b0381166103af57600080fd5b6001600160a01b0381163014156103c557600080fd5b6103d0858585610573565b95945050505050565b600681565b6001600160a01b031660009081526001602052604090205490565b6003546001600160a01b031681565b6040518060400160405280600481526020016346494c7360e01b81525081565b6000826001600160a01b03811661043e57600080fd5b6001600160a01b03811630141561045457600080fd5b61045e848461067f565b949350505050565b6003546001600160a01b0316331461047d57600080fd5b6003546040805163a9059cbb60e01b81526001600160a01b0392831660048201526024810184905290519184169163a9059cbb916044808201926020929091908290030181600087803b1580156104d357600080fd5b505af11580156104e7573d6000803e3d6000fd5b505050506040513d60208110156104fd57600080fd5b50505050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6003546001600160a01b0316331461054557600080fd5b6001600160a01b0381161561057057600380546001600160a01b0319166001600160a01b0383161790555b50565b6001600160a01b038316600081815260026020908152604080832033845282528083205493835260019091528120549091906105b5908463ffffffff61072f16565b6001600160a01b0380871660009081526001602052604080822093909355908616815220546105ea908463ffffffff61074116565b6001600160a01b038516600090815260016020526040902055610613818463ffffffff61072f16565b6001600160a01b03808716600081815260026020908152604080832033845282529182902094909455805187815290519288169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3506001949350505050565b3360009081526001602052604081205461069f908363ffffffff61072f16565b33600090815260016020526040808220929092556001600160a01b038516815220546106d1908363ffffffff61074116565b6001600160a01b0384166000818152600160209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b60008282111561073b57fe5b50900390565b60008282018381101561075057fe5b939250505056fea265627a7a72315820b50f1820b757a9acd8adeea3fb82a5f0d33021091625b4b32a3def8033566b0564736f6c63430005110032

Deployed Bytecode Sourcemap

5242:1137:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5242:1137:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5299:43;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;5299:43:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4160:591;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;4160:591:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;1582:26;;;:::i;:::-;;;;;;;;;;;;;;;;6063:181;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;6063:181:0;;;;;;;;;;;;;;;;;:::i;5396:37::-;;;:::i;2608:115::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2608:115:0;-1:-1:-1;;;;;2608:115:0;;:::i;825:20::-;;;:::i;:::-;;;;-1:-1:-1;;;;;825:20:0;;;;;;;;;;;;;;5349:40;;;:::i;5904:151::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;5904:151:0;;;;;;;;:::i;6252:124::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;6252:124:0;;;;;;;;:::i;:::-;;5089:144;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;5089:144:0;;;;;;;;;;:::i;1396:150::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;1396:150:0;-1:-1:-1;;;;;1396:150:0;;:::i;5299:43::-;;;;;;;;;;;;;;-1:-1:-1;;;5299:43:0;;;;:::o;4160:591::-;4227:4;4563:11;;;4562:53;;-1:-1:-1;4588:10:0;4580:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;4580:29:0;;;;;;;;;;:34;4562:53;4554:62;;;;;;4637:10;4629:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;4629:29:0;;;;;;;;;;;;:38;;;4683;;;;;;;4629:29;;4637:10;4683:38;;;;;;;;;;;-1:-1:-1;4739:4:0;4160:591;;;;:::o;1582:26::-;;;;:::o;6063:181::-;6174:4;6148:3;-1:-1:-1;;;;;5503:18:0;;5495:27;;;;;;-1:-1:-1;;;;;5541:19:0;;5555:4;5541:19;;5533:29;;;;;;6198:38;6217:5;6224:3;6229:6;6198:18;:38::i;:::-;6191:45;6063:181;-1:-1:-1;;;;;6063:181:0:o;5396:37::-;5432:1;5396:37;:::o;2608:115::-;-1:-1:-1;;;;;2699:16:0;2664:15;2699:16;;;:8;:16;;;;;;;2608:115::o;825:20::-;;;-1:-1:-1;;;;;825:20:0;;:::o;5349:40::-;;;;;;;;;;;;;;-1:-1:-1;;;5349:40:0;;;;:::o;5904:151::-;5996:4;5970:3;-1:-1:-1;;;;;5503:18:0;;5495:27;;;;;;-1:-1:-1;;;;;5541:19:0;;5555:4;5541:19;;5533:29;;;;;;6020:27;6035:3;6040:6;6020:14;:27::i;:::-;6013:34;5904:151;-1:-1:-1;;;;5904:151:0:o;6252:124::-;1191:5;;-1:-1:-1;;;;;1191:5:0;1177:10;:19;1169:28;;;;;;6353:5;;6337:31;;;-1:-1:-1;;;6337:31:0;;-1:-1:-1;;;;;6353:5:0;;;6337:31;;;;;;;;;;;;:14;;;;;;:31;;;;;;;;;;;;;;;6353:5;6337:14;:31;;;5:2:-1;;;;30:1;27;20:12;5:2;6337:31:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;6337:31:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;6252:124:0:o;5089:144::-;-1:-1:-1;;;;;5200:15:0;;;5163:17;5200:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;5089:144::o;1396:150::-;1191:5;;-1:-1:-1;;;;;1191:5:0;1177:10;:19;1169:28;;;;;;-1:-1:-1;;;;;1472:22:0;;;1468:71;;1511:5;:16;;-1:-1:-1;;;;;;1511:16:0;-1:-1:-1;;;;;1511:16:0;;;;;1468:71;1396:150;:::o;3518:392::-;-1:-1:-1;;;;;3638:14:0;;3600:4;3638:14;;;:7;:14;;;;;;;;3653:10;3638:26;;;;;;;;3695:15;;;:8;:15;;;;;;3600:4;;3638:26;3695:27;;3715:6;3695:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;3677:15:0;;;;;;;:8;:15;;;;;;:45;;;;3749:13;;;;;;;:25;;3767:6;3749:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;3733:13:0;;;;;;:8;:13;;;;;:41;3814:22;:10;3829:6;3814:22;:14;:22;:::i;:::-;-1:-1:-1;;;;;3785:14:0;;;;;;;:7;:14;;;;;;;;3800:10;3785:26;;;;;;;;:51;;;;3852:28;;;;;;;;;;;3785:14;;3852:28;;;;;;;;;;;-1:-1:-1;3898:4:0;;3518:392;-1:-1:-1;;;;3518:392:0:o;2121:266::-;2233:10;2184:4;2224:20;;;:8;:20;;;;;;:32;;2249:6;2224:32;:24;:32;:::i;:::-;2210:10;2201:20;;;;:8;:20;;;;;;:55;;;;-1:-1:-1;;;;;2283:13:0;;;;;;:25;;2301:6;2283:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;2267:13:0;;;;;;:8;:13;;;;;;;;;:41;;;;2324:33;;;;;;;2267:13;;2333:10;;2324:33;;;;;;;;;;-1:-1:-1;2375:4:0;2121:266;;;;:::o;516:123::-;574:7;606:1;601;:6;;594:14;;;;-1:-1:-1;626:5:0;;;516:123::o;647:147::-;705:7;737:5;;;760:6;;;;753:14;;;;785:1;647:147;-1:-1:-1;;;647:147:0:o

Swarm Source

bzzr://b50f1820b757a9acd8adeea3fb82a5f0d33021091625b4b32a3def8033566b05

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

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