ETH Price: $2,804.18 (+1.37%)

Contract

0x0EA560c60F92C70B06974210F3ce54c0DCEc4865
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve46706372017-12-03 21:56:072638 days ago1512338167IN
0x0EA560c6...0DCEc4865
0 ETH0.00017524
Approve46019222017-11-22 17:15:352650 days ago1511370935IN
0x0EA560c6...0DCEc4865
0 ETH0.0005248412
Approve46018802017-11-22 17:07:102650 days ago1511370430IN
0x0EA560c6...0DCEc4865
0 ETH0.0005248412
Transfer46018582017-11-22 17:02:092650 days ago1511370129IN
0x0EA560c6...0DCEc4865
0 ETH0.0008912824
Approve45962212017-11-21 19:13:182651 days ago1511291598IN
0x0EA560c6...0DCEc4865
0 ETH0.00017524
Transfer45931782017-11-21 7:24:042651 days ago1511249044IN
0x0EA560c6...0DCEc4865
0 ETH0.000000240.01
Transfer45931782017-11-21 7:24:042651 days ago1511249044IN
0x0EA560c6...0DCEc4865
0 ETH0.000000240.01
Transfer45931702017-11-21 7:21:592651 days ago1511248919IN
0x0EA560c6...0DCEc4865
0 ETH0.000002420.1
Transfer45931152017-11-21 7:11:092651 days ago1511248269IN
0x0EA560c6...0DCEc4865
0 ETH0.0010948721
Transfer45931072017-11-21 7:09:382651 days ago1511248178IN
0x0EA560c6...0DCEc4865
0 ETH0.000002420.1
Approve45928872017-11-21 6:16:532651 days ago1511245013IN
0x0EA560c6...0DCEc4865
0 ETH0.00035048
Transfer45928712017-11-21 6:12:552651 days ago1511244775IN
0x0EA560c6...0DCEc4865
0 ETH0.0010948721
Transfer45928202017-11-21 6:02:302651 days ago1511244150IN
0x0EA560c6...0DCEc4865
0 ETH0.0010948721
Transfer45927962017-11-21 5:57:342651 days ago1511243854IN
0x0EA560c6...0DCEc4865
0 ETH0.0007798721
Transfer45927942017-11-21 5:57:022651 days ago1511243822IN
0x0EA560c6...0DCEc4865
0 ETH0.0010948721
Transfer45927932017-11-21 5:56:532651 days ago1511243813IN
0x0EA560c6...0DCEc4865
0 ETH0.0010948721
Transfer45927922017-11-21 5:56:252651 days ago1511243785IN
0x0EA560c6...0DCEc4865
0 ETH0.0010948721
Approve45927812017-11-21 5:53:342651 days ago1511243614IN
0x0EA560c6...0DCEc4865
0 ETH0.00035048
Transfer45927682017-11-21 5:50:512651 days ago1511243451IN
0x0EA560c6...0DCEc4865
0 ETH0.0010948721
Transfer45927542017-11-21 5:47:412651 days ago1511243261IN
0x0EA560c6...0DCEc4865
0 ETH0.0010935321
Transfer45927362017-11-21 5:44:072651 days ago1511243047IN
0x0EA560c6...0DCEc4865
0 ETH0.0010948721
Transfer45927342017-11-21 5:43:592651 days ago1511243039IN
0x0EA560c6...0DCEc4865
0 ETH0.0010948721
Transfer45927332017-11-21 5:43:312651 days ago1511243011IN
0x0EA560c6...0DCEc4865
0 ETH0.0010948721
Transfer45927112017-11-21 5:37:112651 days ago1511242631IN
0x0EA560c6...0DCEc4865
0 ETH0.0007785321
Transfer45927082017-11-21 5:36:362651 days ago1511242596IN
0x0EA560c6...0DCEc4865
0 ETH0.0010948721
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:
Oligarch

Compiler Version
v0.4.16+commit.d7661dd9

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2021-10-20
*/

pragma solidity ^0.4.16;

contract owned {
    address public owner;

    function owned() public {
        owner = msg.sender;
    }

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

interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) public; }

contract TokenERC20 {
    // Public variables of the token
    string public name;
    string public symbol;
    uint8 public decimals = 18;
    // 18 decimals is the strongly suggested default, avoid changing it
    uint256 public totalSupply;

    // This creates an array with all balances
    mapping (address => uint256) public balanceOf;
    mapping (address => mapping (address => uint256)) public allowance;

    // This generates a public event on the blockchain that will notify clients
    event Transfer(address indexed from, address indexed to, uint256 value);

    // This notifies clients about the amount burnt
    event Burn(address indexed from, uint256 value);

    /**
     * Constrctor function
     *
     * Initializes contract with initial supply tokens to the creator of the contract
     */
    function TokenERC20(
        uint256 initialSupply,
        string tokenName,
        string tokenSymbol
    ) public {
        totalSupply = initialSupply * 10 ** uint256(decimals);  // Update total supply with the decimal amount
        balanceOf[msg.sender] = totalSupply;                // Give the creator all initial tokens
        name = tokenName;                                   // Set the name for display purposes
        symbol = tokenSymbol;                               // Set the symbol for display purposes
    }

    /**
     * Internal transfer, only can be called by this contract
     */
    function _transfer(address _from, address _to, uint _value) internal {
        // Prevent transfer to 0x0 address. Use burn() instead
        require(_to != 0x0);
        // Check if the sender has enough
        require(balanceOf[_from] >= _value);
        // Check for overflows
        require(balanceOf[_to] + _value > balanceOf[_to]);
        // Save this for an assertion in the future
        uint previousBalances = balanceOf[_from] + balanceOf[_to];
        // Subtract from the sender
        balanceOf[_from] -= _value;
        // Add the same to the recipient
        balanceOf[_to] += _value;
        Transfer(_from, _to, _value);
        // Asserts are used to use static analysis to find bugs in your code. They should never fail
        assert(balanceOf[_from] + balanceOf[_to] == previousBalances);
    }

    /**
     * Transfer tokens
     *
     * Send `_value` tokens to `_to` from your account
     *
     * @param _to The address of the recipient
     * @param _value the amount to send
     */
    function transfer(address _to, uint256 _value) public {
        _transfer(msg.sender, _to, _value);
    }

    /**
     * Transfer tokens from other address
     *
     * Send `_value` tokens to `_to` in behalf of `_from`
     *
     * @param _from The address of the sender
     * @param _to The address of the recipient
     * @param _value the amount to send
     */
    function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) {
        require(_value <= allowance[_from][msg.sender]);     // Check allowance
        allowance[_from][msg.sender] -= _value;
        _transfer(_from, _to, _value);
        return true;
    }

    /**
     * Set allowance for other address
     *
     * Allows `_spender` to spend no more than `_value` tokens in your behalf
     *
     * @param _spender The address authorized to spend
     * @param _value the max amount they can spend
     */
    function approve(address _spender, uint256 _value) public
        returns (bool success) {
        allowance[msg.sender][_spender] = _value;
        return true;
    }

    /**
     * Set allowance for other address and notify
     *
     * Allows `_spender` to spend no more than `_value` tokens in your behalf, and then ping the contract about it
     *
     * @param _spender The address authorized to spend
     * @param _value the max amount they can spend
     * @param _extraData some extra information to send to the approved contract
     */
    function approveAndCall(address _spender, uint256 _value, bytes _extraData)
        public
        returns (bool success) {
        tokenRecipient spender = tokenRecipient(_spender);
        if (approve(_spender, _value)) {
            spender.receiveApproval(msg.sender, _value, this, _extraData);
            return true;
        }
    }
}

/******************************************/
/*       OLIGARCH TOKEN STARTS HERE       */
/******************************************/

contract Oligarch is owned, TokenERC20 {

    uint256 public sellPrice;
    uint256 public buyPrice;

    /* Initializes contract with initial supply tokens to the creator of the contract */
    function Oligarch(
        uint256 initialSupply,
        string tokenName,
        string tokenSymbol
    ) TokenERC20(initialSupply, tokenName, tokenSymbol) public {}

    /* Internal transfer, only can be called by this contract */
    function _transfer(address _from, address _to, uint _value) internal {
        require (_to != 0x0);                               // Prevent transfer to 0x0 address. Use burn() instead
        require (balanceOf[_from] > _value);                // Check if the sender has enough
        require (balanceOf[_to] + _value > balanceOf[_to]); // Check for overflows
        balanceOf[_from] -= _value;                         // Subtract from the sender
        balanceOf[_to] += _value;                           // Add the same to the recipient
        Transfer(_from, _to, _value);
    }

    /// @notice Allow users to buy tokens for `newBuyPrice` eth and sell tokens for `newSellPrice` eth
    /// @param newSellPrice Price the users can sell to the contract
    /// @param newBuyPrice Price users can buy from the contract
    function setPrices(uint256 newSellPrice, uint256 newBuyPrice) onlyOwner public {
        sellPrice = newSellPrice;
        buyPrice = newBuyPrice;
    }

    /// @notice Buy tokens from contract by sending ether
    function buy() payable public {
        uint amount = msg.value / buyPrice;               // calculates the amount
        _transfer(this, msg.sender, amount);              // makes the transfers
    }

    /// @notice Sell `amount` tokens to contract
    /// @param amount amount of tokens to be sold
    function sell(uint256 amount) public {
        require(this.balance >= amount * sellPrice);      // checks if the contract has enough ether to buy
        _transfer(msg.sender, this, amount);              // makes the transfers
        msg.sender.transfer(amount * sellPrice);          // sends ether to the seller. It's important to do this last to avoid recursion attacks
    }
}

Contract Security Audit

Contract ABI

[{"constant":false,"inputs":[{"name":"newSellPrice","type":"uint256"},{"name":"newBuyPrice","type":"uint256"}],"name":"setPrices","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","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":"_value","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":"sellPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"buyPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":"buy","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"sell","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"initialSupply","type":"uint256"},{"name":"tokenName","type":"string"},{"name":"tokenSymbol","type":"string"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"}]

60606040526003805460ff19166012179055341561001c57600080fd5b604051610b15380380610b15833981016040528080519190602001805182019190602001805190910190505b8282825b5b60008054600160a060020a03191633600160a060020a03161790555b60035460ff16600a0a83026004819055600160a060020a03331660009081526005602052604090205560018280516100a59291602001906100c7565b5060028180516100b99291602001906100c7565b505b5050505b505050610167565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061010857805160ff1916838001178555610135565b82800160010185558215610135579182015b8281111561013557825182559160200191906001019061011a565b5b50610142929150610146565b5090565b61016491905b80821115610142576000815560010161014c565b5090565b90565b61099f806101766000396000f300606060405236156100e35763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305fefda781146100e857806306fdde0314610103578063095ea7b31461018e57806318160ddd146101c457806323b872dd146101e9578063313ce567146102255780634b7503341461024e57806370a08231146102735780638620410b146102a45780638da5cb5b146102c957806395d89b41146102f8578063a6f2ae3a14610383578063a9059cbb1461038d578063cae9ca51146103b1578063dd62ed3e1461042a578063e4849b3214610461575b600080fd5b34156100f357600080fd5b610101600435602435610479565b005b341561010e57600080fd5b6101166104a4565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101535780820151818401525b60200161013a565b50505050905090810190601f1680156101805780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561019957600080fd5b6101b0600160a060020a0360043516602435610542565b604051901515815260200160405180910390f35b34156101cf57600080fd5b6101d7610573565b60405190815260200160405180910390f35b34156101f457600080fd5b6101b0600160a060020a0360043581169060243516604435610579565b604051901515815260200160405180910390f35b341561023057600080fd5b6102386105f1565b60405160ff909116815260200160405180910390f35b341561025957600080fd5b6101d76105fa565b60405190815260200160405180910390f35b341561027e57600080fd5b6101d7600160a060020a0360043516610600565b60405190815260200160405180910390f35b34156102af57600080fd5b6101d7610612565b60405190815260200160405180910390f35b34156102d457600080fd5b6102dc610618565b604051600160a060020a03909116815260200160405180910390f35b341561030357600080fd5b610116610627565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101535780820151818401525b60200161013a565b50505050905090810190601f1680156101805780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101016106c5565b005b341561039857600080fd5b610101600160a060020a03600435166024356106e6565b005b34156103bc57600080fd5b6101b060048035600160a060020a03169060248035919060649060443590810190830135806020601f820181900481020160405190810160405281815292919060208401838380828437509496506106f695505050505050565b604051901515815260200160405180910390f35b341561043557600080fd5b6101d7600160a060020a036004358116906024351661082a565b60405190815260200160405180910390f35b341561046c57600080fd5b610101600435610847565b005b60005433600160a060020a0390811691161461049457600080fd5b600782905560088190555b5b5050565b60018054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561053a5780601f1061050f5761010080835404028352916020019161053a565b820191906000526020600020905b81548152906001019060200180831161051d57829003601f168201915b505050505081565b600160a060020a03338116600090815260066020908152604080832093861683529290522081905560015b92915050565b60045481565b600160a060020a038084166000908152600660209081526040808320339094168352929052908120548211156105ae57600080fd5b600160a060020a03808516600090815260066020908152604080832033909416835292905220805483900390556105e68484846108a8565b5060015b9392505050565b60035460ff1681565b60075481565b60056020526000908152604090205481565b60085481565b600054600160a060020a031681565b60028054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561053a5780601f1061050f5761010080835404028352916020019161053a565b820191906000526020600020905b81548152906001019060200180831161051d57829003601f168201915b505050505081565b6000600854348115156106d457fe5b0490506106e23033836108a8565b5b50565b61049f3383836108a8565b5b5050565b6000836107038185610542565b156108215780600160a060020a0316638f4ffcb1338630876040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b838110156107ba5780820151818401525b6020016107a1565b50505050905090810190601f1680156107e75780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b151561080857600080fd5b6102c65a03f1151561081957600080fd5b505050600191505b5b509392505050565b600660209081526000928352604080842090915290825290205481565b6007548102600160a060020a03301631101561086257600080fd5b61086d3330836108a8565b33600160a060020a03166108fc60075483029081150290604051600060405180830381858888f1935050505015156106e257600080fd5b5b50565b600160a060020a03821615156108bd57600080fd5b600160a060020a0383166000908152600560205260409020548190116108e257600080fd5b600160a060020a0382166000908152600560205260409020548181011161090857600080fd5b600160a060020a038084166000818152600560205260408082208054869003905592851680825290839020805485019055917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9084905190815260200160405180910390a35b5050505600a165627a7a723058207e5046f85185f388f792a280d2f4c0cf7c0a2faef48397c6aaa3e6606b5aa4a400290000000000000000000000000000000000000000000000000000000001f78a40000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000084f6c696761726368000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000452554c4500000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x606060405236156100e35763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305fefda781146100e857806306fdde0314610103578063095ea7b31461018e57806318160ddd146101c457806323b872dd146101e9578063313ce567146102255780634b7503341461024e57806370a08231146102735780638620410b146102a45780638da5cb5b146102c957806395d89b41146102f8578063a6f2ae3a14610383578063a9059cbb1461038d578063cae9ca51146103b1578063dd62ed3e1461042a578063e4849b3214610461575b600080fd5b34156100f357600080fd5b610101600435602435610479565b005b341561010e57600080fd5b6101166104a4565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101535780820151818401525b60200161013a565b50505050905090810190601f1680156101805780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561019957600080fd5b6101b0600160a060020a0360043516602435610542565b604051901515815260200160405180910390f35b34156101cf57600080fd5b6101d7610573565b60405190815260200160405180910390f35b34156101f457600080fd5b6101b0600160a060020a0360043581169060243516604435610579565b604051901515815260200160405180910390f35b341561023057600080fd5b6102386105f1565b60405160ff909116815260200160405180910390f35b341561025957600080fd5b6101d76105fa565b60405190815260200160405180910390f35b341561027e57600080fd5b6101d7600160a060020a0360043516610600565b60405190815260200160405180910390f35b34156102af57600080fd5b6101d7610612565b60405190815260200160405180910390f35b34156102d457600080fd5b6102dc610618565b604051600160a060020a03909116815260200160405180910390f35b341561030357600080fd5b610116610627565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101535780820151818401525b60200161013a565b50505050905090810190601f1680156101805780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101016106c5565b005b341561039857600080fd5b610101600160a060020a03600435166024356106e6565b005b34156103bc57600080fd5b6101b060048035600160a060020a03169060248035919060649060443590810190830135806020601f820181900481020160405190810160405281815292919060208401838380828437509496506106f695505050505050565b604051901515815260200160405180910390f35b341561043557600080fd5b6101d7600160a060020a036004358116906024351661082a565b60405190815260200160405180910390f35b341561046c57600080fd5b610101600435610847565b005b60005433600160a060020a0390811691161461049457600080fd5b600782905560088190555b5b5050565b60018054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561053a5780601f1061050f5761010080835404028352916020019161053a565b820191906000526020600020905b81548152906001019060200180831161051d57829003601f168201915b505050505081565b600160a060020a03338116600090815260066020908152604080832093861683529290522081905560015b92915050565b60045481565b600160a060020a038084166000908152600660209081526040808320339094168352929052908120548211156105ae57600080fd5b600160a060020a03808516600090815260066020908152604080832033909416835292905220805483900390556105e68484846108a8565b5060015b9392505050565b60035460ff1681565b60075481565b60056020526000908152604090205481565b60085481565b600054600160a060020a031681565b60028054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561053a5780601f1061050f5761010080835404028352916020019161053a565b820191906000526020600020905b81548152906001019060200180831161051d57829003601f168201915b505050505081565b6000600854348115156106d457fe5b0490506106e23033836108a8565b5b50565b61049f3383836108a8565b5b5050565b6000836107038185610542565b156108215780600160a060020a0316638f4ffcb1338630876040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b838110156107ba5780820151818401525b6020016107a1565b50505050905090810190601f1680156107e75780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b151561080857600080fd5b6102c65a03f1151561081957600080fd5b505050600191505b5b509392505050565b600660209081526000928352604080842090915290825290205481565b6007548102600160a060020a03301631101561086257600080fd5b61086d3330836108a8565b33600160a060020a03166108fc60075483029081150290604051600060405180830381858888f1935050505015156106e257600080fd5b5b50565b600160a060020a03821615156108bd57600080fd5b600160a060020a0383166000908152600560205260409020548190116108e257600080fd5b600160a060020a0382166000908152600560205260409020548181011161090857600080fd5b600160a060020a038084166000818152600560205260408082208054869003905592851680825290839020805485019055917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9084905190815260200160405180910390a35b5050505600a165627a7a723058207e5046f85185f388f792a280d2f4c0cf7c0a2faef48397c6aaa3e6606b5aa4a40029

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000000000000000000001f78a40000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000084f6c696761726368000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000452554c4500000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : initialSupply (uint256): 33000000
Arg [1] : tokenName (string): Oligarch
Arg [2] : tokenSymbol (string): RULE

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000001f78a40
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [4] : 4f6c696761726368000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 52554c4500000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

4900:2210:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6189:155;;;;;;;;;;;;;;;;;;428:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:2;8:100;;;99:1;94:3;90;84:5;80:1;75:3;71;64:6;8:100;52:2;45:3;8:100;;;12:14;3:109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3836:171:0;;;;;;;;;;-1:-1:-1;;;;;3836:171:0;;;;;;;;;;;;;;;;;;;;;;;;586:26;;;;;;;;;;;;;;;;;;;;;;;;;;;3271:296;;;;;;;;;;-1:-1:-1;;;;;3271:296:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;480:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4948:24;;;;;;;;;;;;;;;;;;;;;;;;;;;669:45;;;;;;;;;;-1:-1:-1;;;;;669:45:0;;;;;;;;;;;;;;;;;;;;4979:23;;;;;;;;;;;;;;;;;;;;;;;;;;;50:20;;;;;;;;;;;;;;;-1:-1:-1;;;;;50:20:0;;;;;;;;;;;;;;453;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:2;8:100;;;99:1;94:3;90;84:5;80:1;75:3;71;64:6;8:100;52:2;45:3;8:100;;;12:14;3:109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6411:204:0;;;;;;2884:107;;;;;;;;;;-1:-1:-1;;;;;2884:107:0;;;;;;;;;4406:347;;;;;;;;;;;;;-1:-1:-1;;;;;4406:347:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4406:347:0;;-1:-1:-1;4406:347:0;;-1:-1:-1;;;;;;4406:347:0;;;;;;;;;;;;;;;;;;721:66;;;;;;;;;;-1:-1:-1;;;;;721:66:0;;;;;;;;;;;;;;;;;;;;;;;;;6724:383;;;;;;;;;;;;;;;;6189:155;200:5;;186:10;-1:-1:-1;;;;;186:19:0;;;200:5;;186:19;178:28;;;;;;6279:9;:24;;;6314:8;:22;;;217:1;6189:155;;;:::o;428:18::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3836:171::-;-1:-1:-1;;;;;3947:10:0;3937:21;;3912:12;3937:21;;;:9;:21;;;;;;;;:31;;;;;;;;;:40;;;3995:4;3836:171;;;;;:::o;586:26::-;;;;:::o;3271:296::-;-1:-1:-1;;;;;3396:16:0;;;3353:12;3396:16;;;:9;:16;;;;;;;;3413:10;3396:28;;;;;;;;;;;;3386:38;;;3378:47;;;;;;-1:-1:-1;;;;;3459:16:0;;;;;;;:9;:16;;;;;;;;3476:10;3459:28;;;;;;;;;:38;;;;;;;3508:29;3469:5;3525:3;3491:6;3508:9;:29::i;:::-;-1:-1:-1;3555:4:0;3271:296;;;;;;:::o;480:26::-;;;;;;:::o;4948:24::-;;;;:::o;669:45::-;;;;;;;;;;;;;:::o;4979:23::-;;;;:::o;50:20::-;;;-1:-1:-1;;;;;50:20:0;;:::o;453:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;6411:204::-;6452:11;6478:8;;6466:9;:20;;;;;;;;6452:34;;6536:35;6546:4;6552:10;6564:6;6536:9;:35::i;:::-;6411:204;;:::o;2884:107::-;2949:34;2959:10;2971:3;2976:6;2949:9;:34::i;:::-;2884:107;;;:::o;4406:347::-;4516:12;4581:8;4605:25;4581:8;4623:6;4605:7;:25::i;:::-;4601:145;;;4647:7;-1:-1:-1;;;;;4647:23:0;;4671:10;4683:6;4691:4;4697:10;4647:61;;;;;;;;;;;;;-1:-1:-1;;;;;4647:61:0;-1:-1:-1;;;;;4647:61:0;;;;;;;;;;;-1:-1:-1;;;;;4647:61:0;-1:-1:-1;;;;;4647:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:2;8:100;;;99:1;94:3;90;84:5;80:1;75:3;71;64:6;8:100;52:2;45:3;8:100;;;12:14;3:109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4730:4:0;4723:11;;4601:145;4406:347;;;;;;;:::o;721:66::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;6724:383::-;6805:9;;6796:18;;-1:-1:-1;;;;;6780:4:0;:12;;:34;;6772:43;;;;;;6881:35;6891:10;6903:4;6909:6;6881:9;:35::i;:::-;6963:10;-1:-1:-1;;;;;6963:19:0;:39;6992:9;;6983:6;:18;6963:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6724:383;;:::o;5347:594::-;-1:-1:-1;;;;;5436:10:0;;;;5427:20;;;;;;-1:-1:-1;;;;;5552:16:0;;;;;;:9;:16;;;;;;:25;;;5543:35;;;;;;-1:-1:-1;;;;;5673:14:0;;;;;;:9;:14;;;;;;5647:23;;;:40;5638:50;;;;;;-1:-1:-1;;;;;5722:16:0;;;;;;;:9;:16;;;;;;:26;;;;;;;5811:14;;;;;;;;;;:24;;;;;;:14;5905:28;;5742:6;;5905:28;;;;;;;;;;;;;5347:594;;;;:::o

Swarm Source

bzzr://7e5046f85185f388f792a280d2f4c0cf7c0a2faef48397c6aaa3e6606b5aa4a4

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.