ETH Price: $3,067.56 (-3.57%)
Gas: 7 Gwei

Contract

0x919D3a363776B1ceec9352610c82dfaf80Edc32d
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
0xfe3e2abab70fba2ee015bbfb3da3a095c22c7c57568b5c329481dda706c729ccTransfer(pending)2024-05-05 9:27:5145 hrs ago1714901271IN
GoldFund Token
0 ETH(Pending)(Pending)
Transfer196863952024-04-19 2:04:3518 days ago1713492275IN
GoldFund Token
0 ETH0.0009159917.7541607
Transfer193520302024-03-03 3:43:1165 days ago1709437391IN
GoldFund Token
0 ETH0.0027749853.77355095
Approve193520122024-03-03 3:39:2365 days ago1709437163IN
GoldFund Token
0 ETH0.001769238.0581099
Transfer193493682024-03-02 18:47:1165 days ago1709405231IN
GoldFund Token
0 ETH0.0031781761.58650742
Approve191628542024-02-05 15:06:5991 days ago1707145619IN
GoldFund Token
0 ETH0.0016270435
Transfer191291732024-01-31 21:34:4796 days ago1706736887IN
GoldFund Token
0 ETH0.0014552431.08377528
Transfer190803532024-01-25 1:26:35103 days ago1706145995IN
GoldFund Token
0 ETH0.0008362217.87074005
Approve190735192024-01-24 2:27:35104 days ago1706063255IN
GoldFund Token
0 ETH0.0005256211.32152547
Approve190686022024-01-23 9:53:59104 days ago1706003639IN
GoldFund Token
0 ETH0.0012213726.27356171
Approve190665952024-01-23 3:06:23105 days ago1705979183IN
GoldFund Token
0 ETH0.0004874610.49967322
Approve190646792024-01-22 20:37:59105 days ago1705955879IN
GoldFund Token
0 ETH0.0008499518.42650327
Approve190604672024-01-22 6:23:11106 days ago1705904591IN
GoldFund Token
0 ETH0.0005001110.83922849
Approve190361802024-01-18 20:38:23109 days ago1705610303IN
GoldFund Token
0 ETH0.0018062639.09754136
Approve190322552024-01-18 7:26:59109 days ago1705562819IN
GoldFund Token
0 ETH0.0012465826.98304605
Transfer190151312024-01-15 22:01:11112 days ago1705356071IN
GoldFund Token
0 ETH0.0017516533.95142641
Approve189319042024-01-04 5:32:11124 days ago1704346331IN
GoldFund Token
0 ETH0.0005613212.16593462
Transfer189257572024-01-03 8:50:35124 days ago1704271835IN
GoldFund Token
0 ETH0.0006882619.93993379
Approve188524622023-12-24 1:47:23135 days ago1703382443IN
GoldFund Token
0 ETH0.0009017519.42313378
Transfer182386852023-09-29 3:25:59221 days ago1695957959IN
GoldFund Token
0 ETH0.0014034330
Transfer179191542023-08-15 8:48:59265 days ago1692089339IN
GoldFund Token
0 ETH0.0005308215.3893389
Transfer179191522023-08-15 8:48:35265 days ago1692089315IN
GoldFund Token
0 ETH0.0005222615.14126303
Transfer177715082023-07-25 17:09:59286 days ago1690304999IN
GoldFund Token
0 ETH0.0026945152.22637328
Transfer176848382023-07-13 13:20:59298 days ago1689254459IN
GoldFund Token
0 ETH0.0008383924.30618514
Transfer176801642023-07-12 21:31:47299 days ago1689197507IN
GoldFund Token
0 ETH0.0008485524.60083904
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:
GoldFund

Compiler Version
v0.5.2+commit.1df8f40c

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2019-01-16
*/

pragma solidity ^0.5.2;

// ----------------------------------------------------------------------------
// 'GFUN' 'GoldFund' token contract
//
// Symbol      : GFUN
// Name        : GoldFund
// Total supply: 10000000000000000000000000000
// Decimals    : 18
//
// (c) by GoldFund. All Rights Reserved.
// ----------------------------------------------------------------------------

// ----------------------------------------------------------------------------
// Safe maths
// ----------------------------------------------------------------------------
library SafeMath {
    function add(uint a, uint b) internal pure returns (uint c) {
        c = a + b;
        require(c >= a);
    }
    function sub(uint a, uint b) internal pure returns (uint c) {
        require(b <= a);
        c = a - b;
    }
    function mul(uint a, uint b) internal pure returns (uint c) {
        c = a * b;
        require(a == 0 || c / a == b);
    }
    function div(uint a, uint b) internal pure returns (uint c) {
        require(b > 0);
        c = a / b;
    }
}


// ----------------------------------------------------------------------------
// ERC Token Standard #20 Interface
// https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md
// ----------------------------------------------------------------------------
contract ERC20Interface {
    function totalSupply() public view returns (uint);
    function balanceOf(address tokenOwner) public view returns (uint balance);
    function allowance(address tokenOwner, address spender) public view returns (uint remaining);
    function transfer(address to, uint tokens) public returns (bool success);
    function approve(address spender, uint tokens) public returns (bool success);
    function transferFrom(address from, address to, uint tokens) public returns (bool success);

    event Transfer(address indexed from, address indexed to, uint tokens);
    event Approval(address indexed tokenOwner, address indexed spender, uint tokens);
}


// ----------------------------------------------------------------------------
// Contract function to receive approval and execute function in one call
//
// Borrowed from MiniMeToken
// ----------------------------------------------------------------------------
contract ApproveAndCallFallBack {
    function receiveApproval(address from, uint256 tokens, address token, bytes memory data) public;
}


// ----------------------------------------------------------------------------
// Owned contract
// ----------------------------------------------------------------------------
contract Owned {
    address public owner;
    address public newOwner;

    event OwnershipTransferred(address indexed _from, address indexed _to);

    constructor() public {
        owner = msg.sender;
    }

    modifier onlyOwner {
        require(msg.sender == owner);
        _;
    }

    function transferOwnership(address _newOwner) public onlyOwner {
        newOwner = _newOwner;
    }
    function acceptOwnership() public {
        require(msg.sender == newOwner);
        emit OwnershipTransferred(owner, newOwner);
        owner = newOwner;
        newOwner = address(0);
    }
}


// ----------------------------------------------------------------------------
// ERC20 Token, with the addition of symbol, name and decimals and a
// fixed supply
// ----------------------------------------------------------------------------
contract GoldFund is ERC20Interface, Owned {
    using SafeMath for uint;

    string public symbol;
    string public  name;
    uint8 public decimals;
    uint _totalSupply;

    mapping(address => uint) balances;
    mapping(address => mapping(address => uint)) allowed;


    // ------------------------------------------------------------------------
    // Constructor
    // ------------------------------------------------------------------------
    constructor() public {
        symbol = "GFUN";
        name = "GoldFund";
        decimals = 18;
        _totalSupply = 10000000000 * 10**uint(decimals);
        balances[0x4Af3BEf5CE6Dd18e947C16eBB52041479DFc76EC] = _totalSupply;
        emit Transfer(address(0), 0x4Af3BEf5CE6Dd18e947C16eBB52041479DFc76EC, _totalSupply);
    }


    // ------------------------------------------------------------------------
    // Total supply
    // ------------------------------------------------------------------------
    function totalSupply() public view returns (uint) {
        return _totalSupply.sub(balances[address(0)]);
    }


    // ------------------------------------------------------------------------
    // Get the token balance for account `tokenOwner`
    // ------------------------------------------------------------------------
    function balanceOf(address tokenOwner) public view returns (uint balance) {
        return balances[tokenOwner];
    }


    // ------------------------------------------------------------------------
    // Transfer the balance from token owner's account to `to` account
    // - Owner's account must have sufficient balance to transfer
    // - 0 value transfers are allowed
    // ------------------------------------------------------------------------
    function transfer(address to, uint tokens) public returns (bool success) {
        balances[msg.sender] = balances[msg.sender].sub(tokens);
        balances[to] = balances[to].add(tokens);
        emit Transfer(msg.sender, to, tokens);
        return true;
    }


    // ------------------------------------------------------------------------
    // Token owner can approve for `spender` to transferFrom(...) `tokens`
    // from the token owner's account
    //
    // https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20-token-standard.md
    // recommends that there are no checks for the approval double-spend attack
    // as this should be implemented in user interfaces
    // ------------------------------------------------------------------------
    function approve(address spender, uint tokens) public returns (bool success) {
        allowed[msg.sender][spender] = tokens;
        emit Approval(msg.sender, spender, tokens);
        return true;
    }


    // ------------------------------------------------------------------------
    // Transfer `tokens` from the `from` account to the `to` account
    //
    // The calling account must already have sufficient tokens approve(...)-d
    // for spending from the `from` account and
    // - From account must have sufficient balance to transfer
    // - Spender must have sufficient allowance to transfer
    // - 0 value transfers are allowed
    // ------------------------------------------------------------------------
    function transferFrom(address from, address to, uint tokens) public returns (bool success) {
        balances[from] = balances[from].sub(tokens);
        allowed[from][msg.sender] = allowed[from][msg.sender].sub(tokens);
        balances[to] = balances[to].add(tokens);
        emit Transfer(from, to, tokens);
        return true;
    }


    // ------------------------------------------------------------------------
    // Returns the amount of tokens approved by the owner that can be
    // transferred to the spender's account
    // ------------------------------------------------------------------------
    function allowance(address tokenOwner, address spender) public view returns (uint remaining) {
        return allowed[tokenOwner][spender];
    }


    // ------------------------------------------------------------------------
    // Token owner can approve for `spender` to transferFrom(...) `tokens`
    // from the token owner's account. The `spender` contract function
    // `receiveApproval(...)` is then executed
    // ------------------------------------------------------------------------
    function approveAndCall(address spender, uint tokens, bytes memory data) public returns (bool success) {
        allowed[msg.sender][spender] = tokens;
        emit Approval(msg.sender, spender, tokens);
        ApproveAndCallFallBack(spender).receiveApproval(msg.sender, tokens, address(this), data);
        return true;
    }


    // ------------------------------------------------------------------------
    // Don't accept ETH
    // ------------------------------------------------------------------------
    function () external payable {
        revert();
    }


    // ------------------------------------------------------------------------
    // Owner can transfer out any accidentally sent ERC20 tokens
    // ------------------------------------------------------------------------
    function transferAnyERC20Token(address tokenAddress, uint tokens) public onlyOwner returns (bool success) {
        return ERC20Interface(tokenAddress).transfer(owner, tokens);
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"tokens","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"tokens","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"tokenOwner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"acceptOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"tokens","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"tokens","type":"uint256"},{"name":"data","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"newOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"tokenAddress","type":"address"},{"name":"tokens","type":"uint256"}],"name":"transferAnyERC20Token","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"tokenOwner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"tokens","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"tokenOwner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"tokens","type":"uint256"}],"name":"Approval","type":"event"}]

608060405234801561001057600080fd5b5060008054600160a060020a031916331790556040805180820190915260048082527f4746554e00000000000000000000000000000000000000000000000000000000602090920191825261006791600291610150565b506040805180820190915260088082527f476f6c6446756e6400000000000000000000000000000000000000000000000060209092019182526100ac91600391610150565b5060048054601260ff19909116179081905560ff16600a0a6402540be400026005819055734af3bef5ce6dd18e947c16ebb52041479dfc76ec6000818152600660209081527f289294cd96d5601c5fa0a21440ec04c9c3e7011aa16ac2491d6edd5b6b85442e8490556040805194855251929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a36101eb565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061019157805160ff19168380011785556101be565b828001600101855582156101be579182015b828111156101be5782518255916020019190600101906101a3565b506101ca9291506101ce565b5090565b6101e891905b808211156101ca57600081556001016101d4565b90565b610bb6806101fa6000396000f3fe608060405260043610610105576000357c0100000000000000000000000000000000000000000000000000000000900480638da5cb5b116100a7578063d4ee1d9011610076578063d4ee1d9014610407578063dc39d06d1461041c578063dd62ed3e14610455578063f2fde38b1461049057610105565b80638da5cb5b146102c057806395d89b41146102f1578063a9059cbb14610306578063cae9ca511461033f57610105565b806323b872dd116100e357806323b872dd14610208578063313ce5671461024b57806370a082311461027657806379ba5097146102a957610105565b806306fdde031461010a578063095ea7b31461019457806318160ddd146101e1575b600080fd5b34801561011657600080fd5b5061011f6104c3565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610159578181015183820152602001610141565b50505050905090810190601f1680156101865780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101a057600080fd5b506101cd600480360360408110156101b757600080fd5b50600160a060020a038135169060200135610551565b604080519115158252519081900360200190f35b3480156101ed57600080fd5b506101f66105b8565b60408051918252519081900360200190f35b34801561021457600080fd5b506101cd6004803603606081101561022b57600080fd5b50600160a060020a038135811691602081013590911690604001356105fb565b34801561025757600080fd5b50610260610706565b6040805160ff9092168252519081900360200190f35b34801561028257600080fd5b506101f66004803603602081101561029957600080fd5b5035600160a060020a031661070f565b3480156102b557600080fd5b506102be61072a565b005b3480156102cc57600080fd5b506102d56107b2565b60408051600160a060020a039092168252519081900360200190f35b3480156102fd57600080fd5b5061011f6107c1565b34801561031257600080fd5b506101cd6004803603604081101561032957600080fd5b50600160a060020a038135169060200135610819565b34801561034b57600080fd5b506101cd6004803603606081101561036257600080fd5b600160a060020a038235169160208101359181019060608101604082013564010000000081111561039257600080fd5b8201836020820111156103a457600080fd5b803590602001918460018302840111640100000000831117156103c657600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506108c9945050505050565b34801561041357600080fd5b506102d5610a2a565b34801561042857600080fd5b506101cd6004803603604081101561043f57600080fd5b50600160a060020a038135169060200135610a39565b34801561046157600080fd5b506101f66004803603604081101561047857600080fd5b50600160a060020a0381358116916020013516610af4565b34801561049c57600080fd5b506102be600480360360208110156104b357600080fd5b5035600160a060020a0316610b1f565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105495780601f1061051e57610100808354040283529160200191610549565b820191906000526020600020905b81548152906001019060200180831161052c57829003601f168201915b505050505081565b336000818152600760209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b600080805260066020527f54cdd369e4e8a8515e52ca72ec816c2101831ad1f18bf44102ed171459c9b4f8546005546105f69163ffffffff610b6516565b905090565b600160a060020a038316600090815260066020526040812054610624908363ffffffff610b6516565b600160a060020a0385166000908152600660209081526040808320939093556007815282822033835290522054610661908363ffffffff610b6516565b600160a060020a0380861660009081526007602090815260408083203384528252808320949094559186168152600690915220546106a5908363ffffffff610b7a16565b600160a060020a0380851660008181526006602090815260409182902094909455805186815290519193928816927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a35060019392505050565b60045460ff1681565b600160a060020a031660009081526006602052604090205490565b600154600160a060020a0316331461074157600080fd5b60015460008054604051600160a060020a0393841693909116917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600180546000805473ffffffffffffffffffffffffffffffffffffffff19908116600160a060020a03841617909155169055565b600054600160a060020a031681565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156105495780601f1061051e57610100808354040283529160200191610549565b33600090815260066020526040812054610839908363ffffffff610b6516565b3360009081526006602052604080822092909255600160a060020a0385168152205461086b908363ffffffff610b7a16565b600160a060020a0384166000818152600660209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b336000818152600760209081526040808320600160a060020a038816808552908352818420879055815187815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a36040517f8f4ffcb10000000000000000000000000000000000000000000000000000000081523360048201818152602483018690523060448401819052608060648501908152865160848601528651600160a060020a038a1695638f4ffcb195948a94938a939192909160a490910190602085019080838360005b838110156109b95781810151838201526020016109a1565b50505050905090810190601f1680156109e65780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b158015610a0857600080fd5b505af1158015610a1c573d6000803e3d6000fd5b506001979650505050505050565b600154600160a060020a031681565b60008054600160a060020a03163314610a5157600080fd5b60008054604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810186905290519186169263a9059cbb926044808401936020939083900390910190829087803b158015610ac157600080fd5b505af1158015610ad5573d6000803e3d6000fd5b505050506040513d6020811015610aeb57600080fd5b50519392505050565b600160a060020a03918216600090815260076020908152604080832093909416825291909152205490565b600054600160a060020a03163314610b3657600080fd5b6001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082821115610b7457600080fd5b50900390565b818101828110156105b257600080fdfea165627a7a723058206fdc59d3edd928fe186695224629f93d368ef5308388d3af4d978a24bc012a1e0029

Deployed Bytecode

0x608060405260043610610105576000357c0100000000000000000000000000000000000000000000000000000000900480638da5cb5b116100a7578063d4ee1d9011610076578063d4ee1d9014610407578063dc39d06d1461041c578063dd62ed3e14610455578063f2fde38b1461049057610105565b80638da5cb5b146102c057806395d89b41146102f1578063a9059cbb14610306578063cae9ca511461033f57610105565b806323b872dd116100e357806323b872dd14610208578063313ce5671461024b57806370a082311461027657806379ba5097146102a957610105565b806306fdde031461010a578063095ea7b31461019457806318160ddd146101e1575b600080fd5b34801561011657600080fd5b5061011f6104c3565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610159578181015183820152602001610141565b50505050905090810190601f1680156101865780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101a057600080fd5b506101cd600480360360408110156101b757600080fd5b50600160a060020a038135169060200135610551565b604080519115158252519081900360200190f35b3480156101ed57600080fd5b506101f66105b8565b60408051918252519081900360200190f35b34801561021457600080fd5b506101cd6004803603606081101561022b57600080fd5b50600160a060020a038135811691602081013590911690604001356105fb565b34801561025757600080fd5b50610260610706565b6040805160ff9092168252519081900360200190f35b34801561028257600080fd5b506101f66004803603602081101561029957600080fd5b5035600160a060020a031661070f565b3480156102b557600080fd5b506102be61072a565b005b3480156102cc57600080fd5b506102d56107b2565b60408051600160a060020a039092168252519081900360200190f35b3480156102fd57600080fd5b5061011f6107c1565b34801561031257600080fd5b506101cd6004803603604081101561032957600080fd5b50600160a060020a038135169060200135610819565b34801561034b57600080fd5b506101cd6004803603606081101561036257600080fd5b600160a060020a038235169160208101359181019060608101604082013564010000000081111561039257600080fd5b8201836020820111156103a457600080fd5b803590602001918460018302840111640100000000831117156103c657600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506108c9945050505050565b34801561041357600080fd5b506102d5610a2a565b34801561042857600080fd5b506101cd6004803603604081101561043f57600080fd5b50600160a060020a038135169060200135610a39565b34801561046157600080fd5b506101f66004803603604081101561047857600080fd5b50600160a060020a0381358116916020013516610af4565b34801561049c57600080fd5b506102be600480360360208110156104b357600080fd5b5035600160a060020a0316610b1f565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105495780601f1061051e57610100808354040283529160200191610549565b820191906000526020600020905b81548152906001019060200180831161052c57829003601f168201915b505050505081565b336000818152600760209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b600080805260066020527f54cdd369e4e8a8515e52ca72ec816c2101831ad1f18bf44102ed171459c9b4f8546005546105f69163ffffffff610b6516565b905090565b600160a060020a038316600090815260066020526040812054610624908363ffffffff610b6516565b600160a060020a0385166000908152600660209081526040808320939093556007815282822033835290522054610661908363ffffffff610b6516565b600160a060020a0380861660009081526007602090815260408083203384528252808320949094559186168152600690915220546106a5908363ffffffff610b7a16565b600160a060020a0380851660008181526006602090815260409182902094909455805186815290519193928816927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a35060019392505050565b60045460ff1681565b600160a060020a031660009081526006602052604090205490565b600154600160a060020a0316331461074157600080fd5b60015460008054604051600160a060020a0393841693909116917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600180546000805473ffffffffffffffffffffffffffffffffffffffff19908116600160a060020a03841617909155169055565b600054600160a060020a031681565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156105495780601f1061051e57610100808354040283529160200191610549565b33600090815260066020526040812054610839908363ffffffff610b6516565b3360009081526006602052604080822092909255600160a060020a0385168152205461086b908363ffffffff610b7a16565b600160a060020a0384166000818152600660209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b336000818152600760209081526040808320600160a060020a038816808552908352818420879055815187815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a36040517f8f4ffcb10000000000000000000000000000000000000000000000000000000081523360048201818152602483018690523060448401819052608060648501908152865160848601528651600160a060020a038a1695638f4ffcb195948a94938a939192909160a490910190602085019080838360005b838110156109b95781810151838201526020016109a1565b50505050905090810190601f1680156109e65780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b158015610a0857600080fd5b505af1158015610a1c573d6000803e3d6000fd5b506001979650505050505050565b600154600160a060020a031681565b60008054600160a060020a03163314610a5157600080fd5b60008054604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810186905290519186169263a9059cbb926044808401936020939083900390910190829087803b158015610ac157600080fd5b505af1158015610ad5573d6000803e3d6000fd5b505050506040513d6020811015610aeb57600080fd5b50519392505050565b600160a060020a03918216600090815260076020908152604080832093909416825291909152205490565b600054600160a060020a03163314610b3657600080fd5b6001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082821115610b7457600080fd5b50900390565b818101828110156105b257600080fdfea165627a7a723058206fdc59d3edd928fe186695224629f93d368ef5308388d3af4d978a24bc012a1e0029

Swarm Source

bzzr://6fdc59d3edd928fe186695224629f93d368ef5308388d3af4d978a24bc012a1e

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.