ETH Price: $3,289.52 (+0.49%)

Contract

0x7f38651d4F62e19c35c5265b6e0b5b94d79ea7A6
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve178194632023-08-01 10:10:23529 days ago1690884623IN
0x7f38651d...4d79ea7A6
0 ETH0.0010865323.36391949
Approve178193422023-08-01 9:45:59529 days ago1690883159IN
0x7f38651d...4d79ea7A6
0 ETH0.0009922221.33593723
Approve178193392023-08-01 9:45:23529 days ago1690883123IN
0x7f38651d...4d79ea7A6
0 ETH0.0008369518.09987199
Transfer178193072023-08-01 9:38:59529 days ago1690882739IN
0x7f38651d...4d79ea7A6
0 ETH0.0011655119.89435343

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
LK99Token

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2023-08-01
*/

/*                                                                       
                                                           @@@                  
                                                          @@@@@@@@@             
                     @@@@@@@@                                  @@@@@@@@%        
                @@@@@@@@@@@@                                         @@@@@      
            @@@@@@,                                                      @@@    
          @@@@                                                             @@   
       /@@@@                                                  @@@@@@@@@@@@      
     @@@@                                                  @@  @@@@@@@@@@@      
    @@@              .@@@@@@@                               @@@@   @@@@@@@@@    
    @         @@@@@                                        @@@@@   @@@@@@ @@@   
           @@  @@@@@@@@@@@@@                              @@@@@@@ @@@@@@@ @&@@  
           @@@     @@@@@@@@@@@                            @@ @@@@@@@@@@@@ @     
        @@@@@@@@   @@@@@@@@@@@@@                         @@@ @@@@@@@@@@@  @     
      @@@@  %@@@@@@@@@@@@@@@@@@@%                         @@  @@@@@@@@@@ @%     
      @@  @  #@@@@@@@@@@@@@@@@ @@                         @@   @@@@@@@@  @      
     @@   @@   @@@@@@@@@@@@@@  @@                          @@    @@@   @@       
     @    @@@   @@@@@@@@@@@@   @@                            @@        @        
            @@     @@@@@@     @@@                               @@@@@@ @@       
             (@@            @@@                                                 
                 @@@        @                                                   
                @@@@@@@@@/                                                                                   
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

contract LK99Token {
    string public name;
    string public symbol;
    uint8 public decimals;
    uint256 public totalSupply;
    address public taxAddress;
    uint256 public taxRate;

    mapping(address => uint256) public balanceOf;
    mapping(address => mapping(address => uint256)) public allowance;

    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);

    constructor() {
        name = "LK99";
        symbol = "LK99";
        decimals = 18;
        totalSupply = 10000000000000 * 10**uint256(decimals);
        taxAddress = 0xC6082521Bc568C1a5E3cB7474452671a7764D5e2;
        taxRate = 2;
        balanceOf[msg.sender] = totalSupply;
    }

    function transfer(address to, uint256 value) public returns (bool) {
        uint256 taxAmount = (value * taxRate) / 100;
        uint256 taxedValue = value - taxAmount;

        require(to != address(0), "Invalid address");
        require(balanceOf[msg.sender] >= value, "Insufficient balance");

        balanceOf[msg.sender] -= value;
        balanceOf[taxAddress] += taxAmount;
        balanceOf[to] += taxedValue;

        emit Transfer(msg.sender, to, taxedValue);
        emit Transfer(msg.sender, taxAddress, taxAmount);
        return true;
    }

    function approve(address spender, uint256 value) public returns (bool) {
        allowance[msg.sender][spender] = value;
        emit Approval(msg.sender, spender, value);
        return true;
    }

    function transferFrom(address from, address to, uint256 value) public returns (bool) {
        uint256 taxAmount = (value * taxRate) / 100;
        uint256 taxedValue = value - taxAmount;

        require(from != address(0), "Invalid address");
        require(to != address(0), "Invalid address");
        require(balanceOf[from] >= value, "Insufficient balance");
        require(allowance[from][msg.sender] >= value, "Allowance exceeded");

        balanceOf[from] -= value;
        balanceOf[taxAddress] += taxAmount;
        balanceOf[to] += taxedValue;
        allowance[from][msg.sender] -= value;

        emit Transfer(from, to, taxedValue);
        emit Transfer(from, taxAddress, taxAmount);
        return true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"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"}],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604080518082019091526004808252634c4b393960e01b60209092019182526200003f91600091620000e5565b50604080518082019091526004808252634c4b393960e01b60209092019182526200006d91600191620000e5565b506002805460ff1916601217908190556200008d9060ff16600a620001d8565b6200009f906509184e72a000620002cd565b6003819055600480546001600160a01b03191673c6082521bc568c1a5e3cb7474452671a7764d5e217905560026005553360009081526006602052604090205562000342565b828054620000f390620002ef565b90600052602060002090601f01602090048101928262000117576000855562000162565b82601f106200013257805160ff191683800117855562000162565b8280016001018555821562000162579182015b828111156200016257825182559160200191906001019062000145565b506200017092915062000174565b5090565b5b8082111562000170576000815560010162000175565b80825b60018086116200019f5750620001cf565b818704821115620001b457620001b46200032c565b80861615620001c257918102915b9490941c9380026200018e565b94509492505050565b6000620001e96000198484620001f0565b9392505050565b6000826200020157506001620001e9565b816200021057506000620001e9565b8160018114620002295760028114620002345762000268565b6001915050620001e9565b60ff8411156200024857620002486200032c565b6001841b9150848211156200026157620002616200032c565b50620001e9565b5060208310610133831016604e8410600b8410161715620002a0575081810a838111156200029a576200029a6200032c565b620001e9565b620002af84848460016200018b565b808604821115620002c457620002c46200032c565b02949350505050565b6000816000190483118215151615620002ea57620002ea6200032c565b500290565b6002810460018216806200030457607f821691505b602082108114156200032657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b61098780620003526000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c806370a082311161007157806370a0823114610129578063771a3a1d1461013c57806395d89b4114610144578063a9059cbb1461014c578063b7bda68f1461015f578063dd62ed3e14610174576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100ec57806323b872dd14610101578063313ce56714610114575b600080fd5b6100b6610187565b6040516100c39190610785565b60405180910390f35b6100df6100da36600461073d565b610215565b6040516100c3919061077a565b6100f461027f565b6040516100c3919061085b565b6100df61010f366004610702565b610285565b61011c6104c2565b6040516100c39190610864565b6100f46101373660046106af565b6104cb565b6100f46104dd565b6100b66104e3565b6100df61015a36600461073d565b6104f0565b610167610667565b6040516100c39190610766565b6100f46101823660046106d0565b610676565b60008054610194906108e0565b80601f01602080910402602001604051908101604052809291908181526020018280546101c0906108e0565b801561020d5780601f106101e25761010080835404028352916020019161020d565b820191906000526020600020905b8154815290600101906020018083116101f057829003601f168201915b505050505081565b3360008181526007602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061026e90869061085b565b60405180910390a350600192915050565b60035481565b60008060646005548461029891906108aa565b6102a2919061088a565b905060006102b082856108c9565b90506001600160a01b0386166102e15760405162461bcd60e51b81526004016102d890610804565b60405180910390fd5b6001600160a01b0385166103075760405162461bcd60e51b81526004016102d890610804565b6001600160a01b03861660009081526006602052604090205484111561033f5760405162461bcd60e51b81526004016102d89061082d565b6001600160a01b03861660009081526007602090815260408083203384529091529020548411156103825760405162461bcd60e51b81526004016102d8906107d8565b6001600160a01b038616600090815260066020526040812080548692906103aa9084906108c9565b90915550506004546001600160a01b0316600090815260066020526040812080548492906103d9908490610872565b90915550506001600160a01b03851660009081526006602052604081208054839290610406908490610872565b90915550506001600160a01b03861660009081526007602090815260408083203384529091528120805486929061043e9084906108c9565b92505081905550846001600160a01b0316866001600160a01b031660008051602061093283398151915283604051610476919061085b565b60405180910390a36004546040516001600160a01b0391821691881690600080516020610932833981519152906104ae90869061085b565b60405180910390a350600195945050505050565b60025460ff1681565b60066020526000908152604090205481565b60055481565b60018054610194906108e0565b60008060646005548461050391906108aa565b61050d919061088a565b9050600061051b82856108c9565b90506001600160a01b0385166105435760405162461bcd60e51b81526004016102d890610804565b336000908152600660205260409020548411156105725760405162461bcd60e51b81526004016102d89061082d565b33600090815260066020526040812080548692906105919084906108c9565b90915550506004546001600160a01b0316600090815260066020526040812080548492906105c0908490610872565b90915550506001600160a01b038516600090815260066020526040812080548392906105ed908490610872565b90915550506040516001600160a01b0386169033906000805160206109328339815191529061061d90859061085b565b60405180910390a36004546040516001600160a01b039091169033906000805160206109328339815191529061065490869061085b565b60405180910390a3506001949350505050565b6004546001600160a01b031681565b600760209081526000928352604080842090915290825290205481565b80356001600160a01b03811681146106aa57600080fd5b919050565b6000602082840312156106c0578081fd5b6106c982610693565b9392505050565b600080604083850312156106e2578081fd5b6106eb83610693565b91506106f960208401610693565b90509250929050565b600080600060608486031215610716578081fd5b61071f84610693565b925061072d60208501610693565b9150604084013590509250925092565b6000806040838503121561074f578182fd5b61075883610693565b946020939093013593505050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b818110156107b157858101830151858201604001528201610795565b818111156107c25783604083870101525b50601f01601f1916929092016040019392505050565b602080825260129082015271105b1b1bddd85b98d948195e18d95959195960721b604082015260600190565b6020808252600f908201526e496e76616c6964206164647265737360881b604082015260600190565b602080825260149082015273496e73756666696369656e742062616c616e636560601b604082015260600190565b90815260200190565b60ff91909116815260200190565b600082198211156108855761088561091b565b500190565b6000826108a557634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156108c4576108c461091b565b500290565b6000828210156108db576108db61091b565b500390565b6002810460018216806108f457607f821691505b6020821081141561091557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220f9c8309db6c1c4fe6900eaea18d8bbe660d1b825f069f2936918269c8194c3b564736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100a95760003560e01c806370a082311161007157806370a0823114610129578063771a3a1d1461013c57806395d89b4114610144578063a9059cbb1461014c578063b7bda68f1461015f578063dd62ed3e14610174576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100ec57806323b872dd14610101578063313ce56714610114575b600080fd5b6100b6610187565b6040516100c39190610785565b60405180910390f35b6100df6100da36600461073d565b610215565b6040516100c3919061077a565b6100f461027f565b6040516100c3919061085b565b6100df61010f366004610702565b610285565b61011c6104c2565b6040516100c39190610864565b6100f46101373660046106af565b6104cb565b6100f46104dd565b6100b66104e3565b6100df61015a36600461073d565b6104f0565b610167610667565b6040516100c39190610766565b6100f46101823660046106d0565b610676565b60008054610194906108e0565b80601f01602080910402602001604051908101604052809291908181526020018280546101c0906108e0565b801561020d5780601f106101e25761010080835404028352916020019161020d565b820191906000526020600020905b8154815290600101906020018083116101f057829003601f168201915b505050505081565b3360008181526007602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061026e90869061085b565b60405180910390a350600192915050565b60035481565b60008060646005548461029891906108aa565b6102a2919061088a565b905060006102b082856108c9565b90506001600160a01b0386166102e15760405162461bcd60e51b81526004016102d890610804565b60405180910390fd5b6001600160a01b0385166103075760405162461bcd60e51b81526004016102d890610804565b6001600160a01b03861660009081526006602052604090205484111561033f5760405162461bcd60e51b81526004016102d89061082d565b6001600160a01b03861660009081526007602090815260408083203384529091529020548411156103825760405162461bcd60e51b81526004016102d8906107d8565b6001600160a01b038616600090815260066020526040812080548692906103aa9084906108c9565b90915550506004546001600160a01b0316600090815260066020526040812080548492906103d9908490610872565b90915550506001600160a01b03851660009081526006602052604081208054839290610406908490610872565b90915550506001600160a01b03861660009081526007602090815260408083203384529091528120805486929061043e9084906108c9565b92505081905550846001600160a01b0316866001600160a01b031660008051602061093283398151915283604051610476919061085b565b60405180910390a36004546040516001600160a01b0391821691881690600080516020610932833981519152906104ae90869061085b565b60405180910390a350600195945050505050565b60025460ff1681565b60066020526000908152604090205481565b60055481565b60018054610194906108e0565b60008060646005548461050391906108aa565b61050d919061088a565b9050600061051b82856108c9565b90506001600160a01b0385166105435760405162461bcd60e51b81526004016102d890610804565b336000908152600660205260409020548411156105725760405162461bcd60e51b81526004016102d89061082d565b33600090815260066020526040812080548692906105919084906108c9565b90915550506004546001600160a01b0316600090815260066020526040812080548492906105c0908490610872565b90915550506001600160a01b038516600090815260066020526040812080548392906105ed908490610872565b90915550506040516001600160a01b0386169033906000805160206109328339815191529061061d90859061085b565b60405180910390a36004546040516001600160a01b039091169033906000805160206109328339815191529061065490869061085b565b60405180910390a3506001949350505050565b6004546001600160a01b031681565b600760209081526000928352604080842090915290825290205481565b80356001600160a01b03811681146106aa57600080fd5b919050565b6000602082840312156106c0578081fd5b6106c982610693565b9392505050565b600080604083850312156106e2578081fd5b6106eb83610693565b91506106f960208401610693565b90509250929050565b600080600060608486031215610716578081fd5b61071f84610693565b925061072d60208501610693565b9150604084013590509250925092565b6000806040838503121561074f578182fd5b61075883610693565b946020939093013593505050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b818110156107b157858101830151858201604001528201610795565b818111156107c25783604083870101525b50601f01601f1916929092016040019392505050565b602080825260129082015271105b1b1bddd85b98d948195e18d95959195960721b604082015260600190565b6020808252600f908201526e496e76616c6964206164647265737360881b604082015260600190565b602080825260149082015273496e73756666696369656e742062616c616e636560601b604082015260600190565b90815260200190565b60ff91909116815260200190565b600082198211156108855761088561091b565b500190565b6000826108a557634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156108c4576108c461091b565b500290565b6000828210156108db576108db61091b565b500390565b6002810460018216806108f457607f821691505b6020821081141561091557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220f9c8309db6c1c4fe6900eaea18d8bbe660d1b825f069f2936918269c8194c3b564736f6c63430008000033

Deployed Bytecode Sourcemap

1890:2328:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1916:18;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3259:202;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1996:26::-;;;:::i;:::-;;;;;;;:::i;3469:746::-;;;;;;:::i;:::-;;:::i;1968:21::-;;;:::i;:::-;;;;;;;:::i;2092:44::-;;;;;;:::i;:::-;;:::i;2061:22::-;;;:::i;1941:20::-;;;:::i;2681:570::-;;;;;;:::i;:::-;;:::i;2029:25::-;;;:::i;:::-;;;;;;;:::i;2143:64::-;;;;;;:::i;:::-;;:::i;1916:18::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3259:202::-;3351:10;3324:4;3341:21;;;:9;:21;;;;;;;;-1:-1:-1;;;;;3341:30:0;;;;;;;;;;:38;;;3395:36;3324:4;;3341:30;;3395:36;;;;3374:5;;3395:36;:::i;:::-;;;;;;;;-1:-1:-1;3449:4:0;3259:202;;;;:::o;1996:26::-;;;;:::o;3469:746::-;3548:4;3565:17;3605:3;3594:7;;3586:5;:15;;;;:::i;:::-;3585:23;;;;:::i;:::-;3565:43;-1:-1:-1;3619:18:0;3640:17;3565:43;3640:5;:17;:::i;:::-;3619:38;-1:-1:-1;;;;;;3678:18:0;;3670:46;;;;-1:-1:-1;;;3670:46:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;3735:16:0;;3727:44;;;;-1:-1:-1;;;3727:44:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3790:15:0;;;;;;:9;:15;;;;;;:24;-1:-1:-1;3790:24:0;3782:57;;;;-1:-1:-1;;;3782:57:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3858:15:0;;;;;;:9;:15;;;;;;;;3874:10;3858:27;;;;;;;;:36;-1:-1:-1;3858:36:0;3850:67;;;;-1:-1:-1;;;3850:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3930:15:0;;;;;;:9;:15;;;;;:24;;3949:5;;3930:15;:24;;3949:5;;3930:24;:::i;:::-;;;;-1:-1:-1;;3975:10:0;;-1:-1:-1;;;;;3975:10:0;3965:21;;;;:9;:21;;;;;:34;;3990:9;;3965:21;:34;;3990:9;;3965:34;:::i;:::-;;;;-1:-1:-1;;;;;;;4010:13:0;;;;;;:9;:13;;;;;:27;;4027:10;;4010:13;:27;;4027:10;;4010:27;:::i;:::-;;;;-1:-1:-1;;;;;;;4048:15:0;;;;;;:9;:15;;;;;;;;4064:10;4048:27;;;;;;;:36;;4079:5;;4048:15;:36;;4079:5;;4048:36;:::i;:::-;;;;;;;;4117:2;-1:-1:-1;;;;;4102:30:0;4111:4;-1:-1:-1;;;;;4102:30:0;-1:-1:-1;;;;;;;;;;;4121:10:0;4102:30;;;;;;:::i;:::-;;;;;;;;4163:10;;4148:37;;-1:-1:-1;;;;;4163:10:0;;;;4148:37;;;-1:-1:-1;;;;;;;;;;;4148:37:0;;;4175:9;;4148:37;:::i;:::-;;;;;;;;-1:-1:-1;4203:4:0;;3469:746;-1:-1:-1;;;;;3469:746:0:o;1968:21::-;;;;;;:::o;2092:44::-;;;;;;;;;;;;;:::o;2061:22::-;;;;:::o;1941:20::-;;;;;;;:::i;2681:570::-;2742:4;2759:17;2799:3;2788:7;;2780:5;:15;;;;:::i;:::-;2779:23;;;;:::i;:::-;2759:43;-1:-1:-1;2813:18:0;2834:17;2759:43;2834:5;:17;:::i;:::-;2813:38;-1:-1:-1;;;;;;2872:16:0;;2864:44;;;;-1:-1:-1;;;2864:44:0;;;;;;;:::i;:::-;2937:10;2927:21;;;;:9;:21;;;;;;:30;-1:-1:-1;2927:30:0;2919:63;;;;-1:-1:-1;;;2919:63:0;;;;;;;:::i;:::-;3005:10;2995:21;;;;:9;:21;;;;;:30;;3020:5;;2995:21;:30;;3020:5;;2995:30;:::i;:::-;;;;-1:-1:-1;;3046:10:0;;-1:-1:-1;;;;;3046:10:0;3036:21;;;;:9;:21;;;;;:34;;3061:9;;3036:21;:34;;3061:9;;3036:34;:::i;:::-;;;;-1:-1:-1;;;;;;;3081:13:0;;;;;;:9;:13;;;;;:27;;3098:10;;3081:13;:27;;3098:10;;3081:27;:::i;:::-;;;;-1:-1:-1;;3126:36:0;;-1:-1:-1;;;;;3126:36:0;;;3135:10;;-1:-1:-1;;;;;;;;;;;3126:36:0;;;3151:10;;3126:36;:::i;:::-;;;;;;;;3199:10;;3178:43;;-1:-1:-1;;;;;3199:10:0;;;;3187;;-1:-1:-1;;;;;;;;;;;3178:43:0;;;3211:9;;3178:43;:::i;:::-;;;;;;;;-1:-1:-1;3239:4:0;;2681:570;-1:-1:-1;;;;2681:570:0:o;2029:25::-;;;-1:-1:-1;;;;;2029:25:0;;:::o;2143:64::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;113:2;65:124;;;:::o;194:198::-;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;:::-;345:41;264:128;-1:-1:-1;;;264:128:1:o;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:266::-;;;1152:2;1140:9;1131:7;1127:23;1123:32;1120:2;;;1173:6;1165;1158:22;1120:2;1201:31;1222:9;1201:31;:::i;:::-;1191:41;1279:2;1264:18;;;;1251:32;;-1:-1:-1;;;1110:179:1:o;1294:203::-;-1:-1:-1;;;;;1458:32:1;;;;1440:51;;1428:2;1413:18;;1395:102::o;1502:187::-;1667:14;;1660:22;1642:41;;1630:2;1615:18;;1597:92::o;1694:603::-;;1835:2;1864;1853:9;1846:21;1896:6;1890:13;1939:6;1934:2;1923:9;1919:18;1912:34;1964:4;1977:140;1991:6;1988:1;1985:13;1977:140;;;2086:14;;;2082:23;;2076:30;2052:17;;;2071:2;2048:26;2041:66;2006:10;;1977:140;;;2135:6;2132:1;2129:13;2126:2;;;2205:4;2200:2;2191:6;2180:9;2176:22;2172:31;2165:45;2126:2;-1:-1:-1;2281:2:1;2260:15;-1:-1:-1;;2256:29:1;2241:45;;;;2288:2;2237:54;;1815:482;-1:-1:-1;;;1815:482:1:o;2302:342::-;2504:2;2486:21;;;2543:2;2523:18;;;2516:30;-1:-1:-1;;;2577:2:1;2562:18;;2555:48;2635:2;2620:18;;2476:168::o;2649:339::-;2851:2;2833:21;;;2890:2;2870:18;;;2863:30;-1:-1:-1;;;2924:2:1;2909:18;;2902:45;2979:2;2964:18;;2823:165::o;2993:344::-;3195:2;3177:21;;;3234:2;3214:18;;;3207:30;-1:-1:-1;;;3268:2:1;3253:18;;3246:50;3328:2;3313:18;;3167:170::o;3342:177::-;3488:25;;;3476:2;3461:18;;3443:76::o;3524:184::-;3696:4;3684:17;;;;3666:36;;3654:2;3639:18;;3621:87::o;3713:128::-;;3784:1;3780:6;3777:1;3774:13;3771:2;;;3790:18;;:::i;:::-;-1:-1:-1;3826:9:1;;3761:80::o;3846:217::-;;3912:1;3902:2;;-1:-1:-1;;;3937:31:1;;3991:4;3988:1;3981:15;4019:4;3944:1;4009:15;3902:2;-1:-1:-1;4048:9:1;;3892:171::o;4068:168::-;;4174:1;4170;4166:6;4162:14;4159:1;4156:21;4151:1;4144:9;4137:17;4133:45;4130:2;;;4181:18;;:::i;:::-;-1:-1:-1;4221:9:1;;4120:116::o;4241:125::-;;4309:1;4306;4303:8;4300:2;;;4314:18;;:::i;:::-;-1:-1:-1;4351:9:1;;4290:76::o;4371:380::-;4456:1;4446:12;;4503:1;4493:12;;;4514:2;;4568:4;4560:6;4556:17;4546:27;;4514:2;4621;4613:6;4610:14;4590:18;4587:38;4584:2;;;4667:10;4662:3;4658:20;4655:1;4648:31;4702:4;4699:1;4692:15;4730:4;4727:1;4720:15;4584:2;;4426:325;;;:::o;4756:127::-;4817:10;4812:3;4808:20;4805:1;4798:31;4848:4;4845:1;4838:15;4872:4;4869:1;4862:15

Swarm Source

ipfs://f9c8309db6c1c4fe6900eaea18d8bbe660d1b825f069f2936918269c8194c3b5

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.