POL Price: $0.089981 (+2.95%)
 

Overview

POL Balance

Polygon PoS Chain LogoPolygon PoS Chain LogoPolygon PoS Chain Logo0 POL

POL Value

$0.00

Token Holdings

More Info

Private Name Tags

TokenTracker

Multichain Info

No addresses found
Transaction Hash
Block
From
To
Transfer730368452025-06-21 9:49:30300 days ago1750499370IN
0xC396b319...58C029998
0 POL0.00357672120
Transfer730366432025-06-21 9:42:22300 days ago1750498942IN
0xC396b319...58C029998
0 POL0.0014071830.00000005
Burn718970262025-05-24 5:48:03328 days ago1748065683IN
0xC396b319...58C029998
0 POL0.0007185330.00008457
Approve718968362025-05-24 5:41:19328 days ago1748065279IN
0xC396b319...58C029998
0 POL0.0008710530.00008457
Transfer718967772025-05-24 5:39:13328 days ago1748065153IN
0xC396b319...58C029998
0 POL0.0009720840.00006342
Approve718965462025-05-24 5:31:03328 days ago1748064663IN
0xC396b319...58C029998
0 POL0.0013833330.00010731
Transfer703775382025-04-16 15:52:03365 days ago1744818723IN
0xC396b319...58C029998
0 POL0.0037524880
Transfer703773892025-04-16 15:46:45365 days ago1744818405IN
0xC396b319...58C029998
0 POL0.0015508230.0000094
Transfer691499922025-03-17 6:47:43396 days ago1742194063IN
0xC396b319...58C029998
0 POL0.0014075430.00000015
Transfer691497782025-03-17 6:39:50396 days ago1742193590IN
0xC396b319...58C029998
0 POL0.0013176930.00000017
Transfer691497002025-03-17 6:37:04396 days ago1742193424IN
0xC396b319...58C029998
0 POL0.0013176930.00000019
Transfer691496332025-03-17 6:34:40396 days ago1742193280IN
0xC396b319...58C029998
0 POL0.0013176930.00000017
Transfer688756812025-03-10 11:30:55403 days ago1741606255IN
0xC396b319...58C029998
0 POL0.0020706840.03789868
Transfer687971782025-03-08 12:50:50404 days ago1741438250IN
0xC396b319...58C029998
0 POL0.0015515430.00000004
Transfer685156782025-03-01 12:06:46411 days ago1740830806IN
0xC396b319...58C029998
0 POL0.0015511930.00021374
Transfer685151712025-03-01 11:48:44411 days ago1740829724IN
0xC396b319...58C029998
0 POL0.0015519730.01544999
Transfer685145532025-03-01 11:26:45412 days ago1740828405IN
0xC396b319...58C029998
0 POL0.0015862530.67126041

Parent Transaction Hash Block From To
View All Internal Transactions
Cross-Chain Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
TRONADO

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at polygonscan.com on 2025-03-01
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

/**
 * @title TRONADO (TRDO)
 * @dev An ERC20 token with burn functionality. Total supply is fixed at deployment.
 */
contract TRONADO {
    string public name = "TRONADO";
    string public symbol = "TRDO";
    uint8 public decimals = 18;
    uint256 public totalSupply;

    // Balances of addresses
    mapping(address => uint256) private balances;

    // Allowances for spending
    mapping(address => mapping(address => uint256)) private allowances;

    // Events
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);
    event Burn(address indexed burner, uint256 value);

    /**
     * @dev Constructor to initialize the total supply and assign it to the deployer.
     */
    constructor() {
        totalSupply = 250_000_000 * 10 ** decimals; // 250,000,000 TRDO with 18 decimals
        balances[msg.sender] = totalSupply;

        emit Transfer(address(0), msg.sender, totalSupply); // Transfer from 0x0 to deployer
    }

    /**
     * @dev Returns the balance of the specified address.
     * @param account The address to query the balance for.
     */
    function balanceOf(address account) public view returns (uint256) {
        return balances[account];
    }

    /**
     * @dev Transfers tokens to a specified address.
     * @param to The recipient's address.
     * @param amount The number of tokens to transfer.
     */
    function transfer(address to, uint256 amount) public returns (bool) {
        require(to != address(0), "Transfer to the zero address is not allowed");
        require(balances[msg.sender] >= amount, "Insufficient balance");

        _transfer(msg.sender, to, amount);
        return true;
    }

    /**
     * @dev Internal function to perform token transfers.
     */
    function _transfer(address from, address to, uint256 amount) internal {
        balances[from] -= amount;
        balances[to] += amount;

        emit Transfer(from, to, amount);
    }

    /**
     * @dev Approves a spender to spend a specific amount on behalf of the owner.
     * @param spender The address allowed to spend.
     * @param amount The number of tokens approved.
     */
    function approve(address spender, uint256 amount) public returns (bool) {
        require(spender != address(0), "Approve to the zero address is not allowed");

        allowances[msg.sender][spender] = amount;

        emit Approval(msg.sender, spender, amount);
        return true;
    }

    /**
     * @dev Returns the remaining number of tokens a spender is allowed to spend on behalf of an owner.
     * @param owner The address of the token owner.
     * @param spender The address of the spender.
     */
    function allowance(address owner, address spender) public view returns (uint256) {
        return allowances[owner][spender];
    }

    /**
     * @dev Transfers tokens from one address to another using an allowance.
     * @param from The address of the token owner.
     * @param to The recipient's address.
     * @param amount The number of tokens to transfer.
     */
    function transferFrom(address from, address to, uint256 amount) public returns (bool) {
        require(to != address(0), "Transfer to the zero address is not allowed");
        require(allowances[from][msg.sender] >= amount, "Transfer amount exceeds allowance");
        require(balances[from] >= amount, "Insufficient balance");

        allowances[from][msg.sender] -= amount;
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Burns a specific amount of tokens, reducing the total supply.
     * @param amount The number of tokens to burn.
     */
    function burn(uint256 amount) public {
        require(balances[msg.sender] >= amount, "Insufficient balance to burn");

        balances[msg.sender] -= amount;
        totalSupply -= amount;

        emit Burn(msg.sender, amount);
        emit Transfer(msg.sender, address(0), amount);
    }
}

Contract Security Audit

Contract ABI

API
[{"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":"burner","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Burn","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":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","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":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60c0604052600760809081526654524f4e41444f60c81b60a0525f906100259082610170565b506040805180820190915260048152635452444f60e01b602082015260019061004e9082610170565b506002805460ff19166012179055348015610067575f80fd5b506002546100799060ff16600a610323565b61008790630ee6b280610338565b6003819055335f81815260046020908152604080832085905551938452919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361034f565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061010057607f821691505b60208210810361011e57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561016b57805f5260205f20601f840160051c810160208510156101495750805b601f840160051c820191505b81811015610168575f8155600101610155565b50505b505050565b81516001600160401b03811115610189576101896100d8565b61019d8161019784546100ec565b84610124565b6020601f8211600181146101cf575f83156101b85750848201515b5f19600385901b1c1916600184901b178455610168565b5f84815260208120601f198516915b828110156101fe57878501518255602094850194600190920191016101de565b508482101561021b57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b6001815b60018411156102795780850481111561025d5761025d61022a565b600184161561026b57908102905b60019390931c928002610242565b935093915050565b5f8261028f5750600161031d565b8161029b57505f61031d565b81600181146102b157600281146102bb576102d7565b600191505061031d565b60ff8411156102cc576102cc61022a565b50506001821b61031d565b5060208310610133831016604e8410600b84101617156102fa575081810a61031d565b6103065f19848461023e565b805f19048211156103195761031961022a565b0290505b92915050565b5f61033160ff841683610281565b9392505050565b808202811582820484141761031d5761031d61022a565b6108c38061035c5f395ff3fe608060405234801561000f575f80fd5b506004361061009b575f3560e01c806342966c681161006357806342966c681461012957806370a082311461013e57806395d89b4114610166578063a9059cbb1461016e578063dd62ed3e14610181575f80fd5b806306fdde031461009f578063095ea7b3146100bd57806318160ddd146100e057806323b872dd146100f7578063313ce5671461010a575b5f80fd5b6100a76101b9565b6040516100b491906106b6565b60405180910390f35b6100d06100cb366004610706565b610244565b60405190151581526020016100b4565b6100e960035481565b6040519081526020016100b4565b6100d061010536600461072e565b610317565b6002546101179060ff1681565b60405160ff90911681526020016100b4565b61013c610137366004610768565b610465565b005b6100e961014c36600461077f565b6001600160a01b03165f9081526004602052604090205490565b6100a761056d565b6100d061017c366004610706565b61057a565b6100e961018f36600461079f565b6001600160a01b039182165f90815260056020908152604080832093909416825291909152205490565b5f80546101c5906107d0565b80601f01602080910402602001604051908101604052809291908181526020018280546101f1906107d0565b801561023c5780601f106102135761010080835404028352916020019161023c565b820191905f5260205f20905b81548152906001019060200180831161021f57829003601f168201915b505050505081565b5f6001600160a01b0383166102b35760405162461bcd60e51b815260206004820152602a60248201527f417070726f766520746f20746865207a65726f2061646472657373206973206e6044820152691bdd08185b1b1bddd95960b21b60648201526084015b60405180910390fd5b335f8181526005602090815260408083206001600160a01b03881680855290835292819020869055518581529192917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a35060015b92915050565b5f6001600160a01b03831661033e5760405162461bcd60e51b81526004016102aa90610808565b6001600160a01b0384165f9081526005602090815260408083203384529091529020548211156103ba5760405162461bcd60e51b815260206004820152602160248201527f5472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636044820152606560f81b60648201526084016102aa565b6001600160a01b0384165f908152600460205260409020548211156104185760405162461bcd60e51b8152602060048201526014602482015273496e73756666696369656e742062616c616e636560601b60448201526064016102aa565b6001600160a01b0384165f9081526005602090815260408083203384529091528120805484929061044a908490610867565b9091555061045b905084848461060a565b5060019392505050565b335f908152600460205260409020548111156104c35760405162461bcd60e51b815260206004820152601c60248201527f496e73756666696369656e742062616c616e636520746f206275726e0000000060448201526064016102aa565b335f90815260046020526040812080548392906104e1908490610867565b925050819055508060035f8282546104f99190610867565b909155505060405181815233907fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59060200160405180910390a26040518181525f9033907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a350565b600180546101c5906107d0565b5f6001600160a01b0383166105a15760405162461bcd60e51b81526004016102aa90610808565b335f908152600460205260409020548211156105f65760405162461bcd60e51b8152602060048201526014602482015273496e73756666696369656e742062616c616e636560601b60448201526064016102aa565b61060133848461060a565b50600192915050565b6001600160a01b0383165f9081526004602052604081208054839290610631908490610867565b90915550506001600160a01b0382165f908152600460205260408120805483929061065d90849061087a565b92505081905550816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516106a991815260200190565b60405180910390a3505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610701575f80fd5b919050565b5f8060408385031215610717575f80fd5b610720836106eb565b946020939093013593505050565b5f805f60608486031215610740575f80fd5b610749846106eb565b9250610757602085016106eb565b929592945050506040919091013590565b5f60208284031215610778575f80fd5b5035919050565b5f6020828403121561078f575f80fd5b610798826106eb565b9392505050565b5f80604083850312156107b0575f80fd5b6107b9836106eb565b91506107c7602084016106eb565b90509250929050565b600181811c908216806107e457607f821691505b60208210810361080257634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252602b908201527f5472616e7366657220746f20746865207a65726f20616464726573732069732060408201526a1b9bdd08185b1b1bddd95960aa1b606082015260800190565b634e487b7160e01b5f52601160045260245ffd5b8181038181111561031157610311610853565b808201808211156103115761031161085356fea26469706673582212200d8431260b6c2b158d252658ef36ca9e8bb86e6b39e4d624359bbf92fe8bb91b64736f6c634300081a0033

Deployed Bytecode

0x608060405234801561000f575f80fd5b506004361061009b575f3560e01c806342966c681161006357806342966c681461012957806370a082311461013e57806395d89b4114610166578063a9059cbb1461016e578063dd62ed3e14610181575f80fd5b806306fdde031461009f578063095ea7b3146100bd57806318160ddd146100e057806323b872dd146100f7578063313ce5671461010a575b5f80fd5b6100a76101b9565b6040516100b491906106b6565b60405180910390f35b6100d06100cb366004610706565b610244565b60405190151581526020016100b4565b6100e960035481565b6040519081526020016100b4565b6100d061010536600461072e565b610317565b6002546101179060ff1681565b60405160ff90911681526020016100b4565b61013c610137366004610768565b610465565b005b6100e961014c36600461077f565b6001600160a01b03165f9081526004602052604090205490565b6100a761056d565b6100d061017c366004610706565b61057a565b6100e961018f36600461079f565b6001600160a01b039182165f90815260056020908152604080832093909416825291909152205490565b5f80546101c5906107d0565b80601f01602080910402602001604051908101604052809291908181526020018280546101f1906107d0565b801561023c5780601f106102135761010080835404028352916020019161023c565b820191905f5260205f20905b81548152906001019060200180831161021f57829003601f168201915b505050505081565b5f6001600160a01b0383166102b35760405162461bcd60e51b815260206004820152602a60248201527f417070726f766520746f20746865207a65726f2061646472657373206973206e6044820152691bdd08185b1b1bddd95960b21b60648201526084015b60405180910390fd5b335f8181526005602090815260408083206001600160a01b03881680855290835292819020869055518581529192917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a35060015b92915050565b5f6001600160a01b03831661033e5760405162461bcd60e51b81526004016102aa90610808565b6001600160a01b0384165f9081526005602090815260408083203384529091529020548211156103ba5760405162461bcd60e51b815260206004820152602160248201527f5472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636044820152606560f81b60648201526084016102aa565b6001600160a01b0384165f908152600460205260409020548211156104185760405162461bcd60e51b8152602060048201526014602482015273496e73756666696369656e742062616c616e636560601b60448201526064016102aa565b6001600160a01b0384165f9081526005602090815260408083203384529091528120805484929061044a908490610867565b9091555061045b905084848461060a565b5060019392505050565b335f908152600460205260409020548111156104c35760405162461bcd60e51b815260206004820152601c60248201527f496e73756666696369656e742062616c616e636520746f206275726e0000000060448201526064016102aa565b335f90815260046020526040812080548392906104e1908490610867565b925050819055508060035f8282546104f99190610867565b909155505060405181815233907fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59060200160405180910390a26040518181525f9033907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a350565b600180546101c5906107d0565b5f6001600160a01b0383166105a15760405162461bcd60e51b81526004016102aa90610808565b335f908152600460205260409020548211156105f65760405162461bcd60e51b8152602060048201526014602482015273496e73756666696369656e742062616c616e636560601b60448201526064016102aa565b61060133848461060a565b50600192915050565b6001600160a01b0383165f9081526004602052604081208054839290610631908490610867565b90915550506001600160a01b0382165f908152600460205260408120805483929061065d90849061087a565b92505081905550816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516106a991815260200190565b60405180910390a3505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610701575f80fd5b919050565b5f8060408385031215610717575f80fd5b610720836106eb565b946020939093013593505050565b5f805f60608486031215610740575f80fd5b610749846106eb565b9250610757602085016106eb565b929592945050506040919091013590565b5f60208284031215610778575f80fd5b5035919050565b5f6020828403121561078f575f80fd5b610798826106eb565b9392505050565b5f80604083850312156107b0575f80fd5b6107b9836106eb565b91506107c7602084016106eb565b90509250929050565b600181811c908216806107e457607f821691505b60208210810361080257634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252602b908201527f5472616e7366657220746f20746865207a65726f20616464726573732069732060408201526a1b9bdd08185b1b1bddd95960aa1b606082015260800190565b634e487b7160e01b5f52601160045260245ffd5b8181038181111561031157610311610853565b808201808211156103115761031161085356fea26469706673582212200d8431260b6c2b158d252658ef36ca9e8bb86e6b39e4d624359bbf92fe8bb91b64736f6c634300081a0033

Deployed Bytecode Sourcemap

182:4000:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;206:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2355:297;;;;;;:::i;:::-;;:::i;:::-;;;1085:14:1;;1078:22;1060:41;;1048:2;1033:18;2355:297:0;920:187:1;312:26:0;;;;;;;;;1258:25:1;;;1246:2;1231:18;312:26:0;1112:177:1;3275:451:0;;;;;;:::i;:::-;;:::i;279:26::-;;;;;;;;;;;;1845:4:1;1833:17;;;1815:36;;1803:2;1788:18;279:26:0;1673:184:1;3879:300:0;;;;;;:::i;:::-;;:::i;:::-;;1276:109;;;;;;:::i;:::-;-1:-1:-1;;;;;1360:17:0;1333:7;1360:17;;;:8;:17;;;;;;;1276:109;243:29;;;:::i;1564:301::-;;;;;;:::i;:::-;;:::i;2887:133::-;;;;;;:::i;:::-;-1:-1:-1;;;;;2986:17:0;;;2959:7;2986:17;;;:10;:17;;;;;;;;:26;;;;;;;;;;;;;2887:133;206:30;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2355:297::-;2421:4;-1:-1:-1;;;;;2446:21:0;;2438:76;;;;-1:-1:-1;;;2438:76:0;;3136:2:1;2438:76:0;;;3118:21:1;3175:2;3155:18;;;3148:30;3214:34;3194:18;;;3187:62;-1:-1:-1;;;3265:18:1;;;3258:40;3315:19;;2438:76:0;;;;;;;;;2538:10;2527:22;;;;:10;:22;;;;;;;;-1:-1:-1;;;;;2527:31:0;;;;;;;;;;;;:40;;;2585:37;1258:25:1;;;2527:31:0;;2538:10;2585:37;;1231:18:1;2585:37:0;;;;;;;-1:-1:-1;2640:4:0;2355:297;;;;;:::o;3275:451::-;3355:4;-1:-1:-1;;;;;3380:16:0;;3372:72;;;;-1:-1:-1;;;3372:72:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3463:16:0;;;;;;:10;:16;;;;;;;;3480:10;3463:28;;;;;;;;:38;-1:-1:-1;3463:38:0;3455:84;;;;-1:-1:-1;;;3455:84:0;;3959:2:1;3455:84:0;;;3941:21:1;3998:2;3978:18;;;3971:30;4037:34;4017:18;;;4010:62;-1:-1:-1;;;4088:18:1;;;4081:31;4129:19;;3455:84:0;3757:397:1;3455:84:0;-1:-1:-1;;;;;3558:14:0;;;;;;:8;:14;;;;;;:24;-1:-1:-1;3558:24:0;3550:57;;;;-1:-1:-1;;;3550:57:0;;4361:2:1;3550:57:0;;;4343:21:1;4400:2;4380:18;;;4373:30;-1:-1:-1;;;4419:18:1;;;4412:50;4479:18;;3550:57:0;4159:344:1;3550:57:0;-1:-1:-1;;;;;3620:16:0;;;;;;:10;:16;;;;;;;;3637:10;3620:28;;;;;;;:38;;3652:6;;3620:16;:38;;3652:6;;3620:38;:::i;:::-;;;;-1:-1:-1;3669:27:0;;-1:-1:-1;3679:4:0;3685:2;3689:6;3669:9;:27::i;:::-;-1:-1:-1;3714:4:0;3275:451;;;;;:::o;3879:300::-;3944:10;3935:20;;;;:8;:20;;;;;;:30;-1:-1:-1;3935:30:0;3927:71;;;;-1:-1:-1;;;3927:71:0;;4975:2:1;3927:71:0;;;4957:21:1;5014:2;4994:18;;;4987:30;5053;5033:18;;;5026:58;5101:18;;3927:71:0;4773:352:1;3927:71:0;4020:10;4011:20;;;;:8;:20;;;;;:30;;4035:6;;4011:20;:30;;4035:6;;4011:30;:::i;:::-;;;;;;;;4067:6;4052:11;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;;4091:24:0;;1258:25:1;;;4096:10:0;;4091:24;;1246:2:1;1231:18;4091:24:0;;;;;;;4131:40;;1258:25:1;;;4160:1:0;;4140:10;;4131:40;;1246:2:1;1231:18;4131:40:0;;;;;;;3879:300;:::o;243:29::-;;;;;;;:::i;1564:301::-;1626:4;-1:-1:-1;;;;;1651:16:0;;1643:72;;;;-1:-1:-1;;;1643:72:0;;;;;;;:::i;:::-;1743:10;1734:20;;;;:8;:20;;;;;;:30;-1:-1:-1;1734:30:0;1726:63;;;;-1:-1:-1;;;1726:63:0;;4361:2:1;1726:63:0;;;4343:21:1;4400:2;4380:18;;;4373:30;-1:-1:-1;;;4419:18:1;;;4412:50;4479:18;;1726:63:0;4159:344:1;1726:63:0;1802:33;1812:10;1824:2;1828:6;1802:9;:33::i;:::-;-1:-1:-1;1853:4:0;1564:301;;;;:::o;1950:190::-;-1:-1:-1;;;;;2031:14:0;;;;;;:8;:14;;;;;:24;;2049:6;;2031:14;:24;;2049:6;;2031:24;:::i;:::-;;;;-1:-1:-1;;;;;;;2066:12:0;;;;;;:8;:12;;;;;:22;;2082:6;;2066:12;:22;;2082:6;;2066:22;:::i;:::-;;;;;;;;2121:2;-1:-1:-1;;;;;2106:26:0;2115:4;-1:-1:-1;;;;;2106:26:0;;2125:6;2106:26;;;;1258:25:1;;1246:2;1231:18;;1112:177;2106:26:0;;;;;;;;1950:190;;;:::o;14:418:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:173::-;505:20;;-1:-1:-1;;;;;554:31:1;;544:42;;534:70;;600:1;597;590:12;534:70;437:173;;;:::o;615:300::-;683:6;691;744:2;732:9;723:7;719:23;715:32;712:52;;;760:1;757;750:12;712:52;783:29;802:9;783:29;:::i;:::-;773:39;881:2;866:18;;;;853:32;;-1:-1:-1;;;615:300:1:o;1294:374::-;1371:6;1379;1387;1440:2;1428:9;1419:7;1415:23;1411:32;1408:52;;;1456:1;1453;1446:12;1408:52;1479:29;1498:9;1479:29;:::i;:::-;1469:39;;1527:38;1561:2;1550:9;1546:18;1527:38;:::i;:::-;1294:374;;1517:48;;-1:-1:-1;;;1634:2:1;1619:18;;;;1606:32;;1294:374::o;1862:226::-;1921:6;1974:2;1962:9;1953:7;1949:23;1945:32;1942:52;;;1990:1;1987;1980:12;1942:52;-1:-1:-1;2035:23:1;;1862:226;-1:-1:-1;1862:226:1:o;2093:186::-;2152:6;2205:2;2193:9;2184:7;2180:23;2176:32;2173:52;;;2221:1;2218;2211:12;2173:52;2244:29;2263:9;2244:29;:::i;:::-;2234:39;2093:186;-1:-1:-1;;;2093:186:1:o;2284:260::-;2352:6;2360;2413:2;2401:9;2392:7;2388:23;2384:32;2381:52;;;2429:1;2426;2419:12;2381:52;2452:29;2471:9;2452:29;:::i;:::-;2442:39;;2500:38;2534:2;2523:9;2519:18;2500:38;:::i;:::-;2490:48;;2284:260;;;;;:::o;2549:380::-;2628:1;2624:12;;;;2671;;;2692:61;;2746:4;2738:6;2734:17;2724:27;;2692:61;2799:2;2791:6;2788:14;2768:18;2765:38;2762:161;;2845:10;2840:3;2836:20;2833:1;2826:31;2880:4;2877:1;2870:15;2908:4;2905:1;2898:15;2762:161;;2549:380;;;:::o;3345:407::-;3547:2;3529:21;;;3586:2;3566:18;;;3559:30;3625:34;3620:2;3605:18;;3598:62;-1:-1:-1;;;3691:2:1;3676:18;;3669:41;3742:3;3727:19;;3345:407::o;4508:127::-;4569:10;4564:3;4560:20;4557:1;4550:31;4600:4;4597:1;4590:15;4624:4;4621:1;4614:15;4640:128;4707:9;;;4728:11;;;4725:37;;;4742:18;;:::i;5130:125::-;5195:9;;;5216:10;;;5213:36;;;5229:18;;:::i

Swarm Source

ipfs://0d8431260b6c2b158d252658ef36ca9e8bb86e6b39e4d624359bbf92fe8bb91b

Block Transaction Gas Used Reward
view all blocks produced

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
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.