ETH Price: $3,335.73 (-1.23%)

Contract

0xBcc66ed2aB491e9aE7Bf8386541Fb17421Fa9d35
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve214121632024-12-16 2:42:117 days ago1734316931IN
Roll: SKULL Token
0 ETH0.0006348413.63882071
Approve213857352024-12-12 10:09:3511 days ago1733998175IN
Roll: SKULL Token
0 ETH0.0009926821.50941442
Transfer211361582024-11-07 13:45:2345 days ago1730987123IN
Roll: SKULL Token
0 ETH0.0004421314.69164899
Transfer206026952024-08-25 2:41:59120 days ago1724553719IN
Roll: SKULL Token
0 ETH0.0000521.1025801
Approve205974452024-08-24 9:04:23121 days ago1724490263IN
Roll: SKULL Token
0 ETH0.000033811.39358291
Approve205011172024-08-10 22:11:23134 days ago1723327883IN
Roll: SKULL Token
0 ETH0.000046131
Approve204785722024-08-07 18:44:59137 days ago1723056299IN
Roll: SKULL Token
0 ETH0.000340997.38099113
Approve203970452024-07-27 9:40:23149 days ago1722073223IN
Roll: SKULL Token
0 ETH0.000059891.28686173
Approve202754672024-07-10 10:21:47166 days ago1720606907IN
Roll: SKULL Token
0 ETH0.000166366.2431119
Approve202754572024-07-10 10:19:47166 days ago1720606787IN
Roll: SKULL Token
0 ETH0.000158263.42580433
Approve202754542024-07-10 10:19:11166 days ago1720606751IN
Roll: SKULL Token
0 ETH0.000220874.74529221
Approve202754492024-07-10 10:18:11166 days ago1720606691IN
Roll: SKULL Token
0 ETH0.00031916.85558444
Approve202711182024-07-09 19:47:23166 days ago1720554443IN
Roll: SKULL Token
0 ETH0.000159873.43469815
Approve202659622024-07-09 2:29:35167 days ago1720492175IN
Roll: SKULL Token
0 ETH0.000077431.67618868
Approve200269702024-06-05 16:58:11200 days ago1717606691IN
Roll: SKULL Token
0 ETH0.0009964121.59030681
Approve197418112024-04-26 20:09:47240 days ago1714162187IN
Roll: SKULL Token
0 ETH0.000263875.71759919
Approve196297902024-04-11 3:45:23256 days ago1712807123IN
Roll: SKULL Token
0 ETH0.0006087813.17392915
Approve194983092024-03-23 15:51:59274 days ago1711209119IN
Roll: SKULL Token
0 ETH0.0008784919.04021365
Transfer192880932024-02-23 5:05:35304 days ago1708664735IN
Roll: SKULL Token
0 ETH0.0011519838.29475097
Approve192793192024-02-21 23:32:11305 days ago1708558331IN
Roll: SKULL Token
0 ETH0.0020036243.41454506
Approve192719982024-02-20 22:51:11306 days ago1708469471IN
Roll: SKULL Token
0 ETH0.0025590254.9771874
Transfer192383032024-02-16 5:11:11311 days ago1708060271IN
Roll: SKULL Token
0 ETH0.0007017223.33622708
Transfer192382742024-02-16 5:05:23311 days ago1708059923IN
Roll: SKULL Token
0 ETH0.0005737119.0792333
Transfer192029842024-02-11 6:15:47316 days ago1707632147IN
Roll: SKULL Token
0 ETH0.0006356121.13792844
Transfer191884372024-02-09 5:17:11318 days ago1707455831IN
Roll: SKULL Token
0 ETH0.0015444451.34107507
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block
From
To
86200112019-09-25 19:33:001915 days ago1569439980  Contract Creation0 ETH
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xd1B183f4...d84Ba049d
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
SocialMoney

Compiler Version
v0.5.0+commit.1d4f565a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license
/**
 *Submitted for verification at Etherscan.io on 2020-08-27
*/

pragma solidity 0.5.0;

/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
interface IERC20 {
  function totalSupply() external view returns (uint256);

  function balanceOf(address who) external view returns (uint256);

  function allowance(address owner, address spender)
    external view returns (uint256);

  function transfer(address to, uint256 value) external returns (bool);

  function approve(address spender, uint256 value)
    external returns (bool);

  function transferFrom(address from, address to, uint256 value)
    external returns (bool);

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

  event Approval(
    address indexed owner,
    address indexed spender,
    uint256 value
  );
}

/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {

  /**
  * @dev Multiplies two numbers, throws on overflow.
  */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
    }
        uint256 c = a * b;
        assert(c / a == b);
        return c;
    }

  /**
  * @dev Integer division of two numbers, truncating the quotient.
  */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
    // assert(b > 0); // Solidity automatically throws when dividing by 0
    // uint256 c = a / b;
    // assert(a == b * c + a % b); // There is no case in which this doesn't hold
        return a / b;
    }

  /**
  * @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).
  */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        assert(b <= a);
        return a - b;
    }

  /**
  * @dev Adds two numbers, throws on overflow.
  */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        assert(c >= a);
        return c;
    }
}

    /**
    * @title Standard ERC20 token
    *
    * @dev Implementation of the basic standard token.
    * https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md
    * Originally based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
    */
contract ERC20 is IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowed;

    uint256 private _totalSupply;
    string public name;
    string public symbol;
    uint8 public decimals;

    /**
    * @dev Total number of tokens in existence
    */
    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }

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

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


    /**
    * @dev Transfer token for a specified address
    * @param to The address to transfer to.
    * @param value The amount to be transferred.
    */
    function transfer(address to, uint256 value) public returns (bool) {
        require(value <= _balances[msg.sender]);
        require(to != address(0));

        _balances[msg.sender] = _balances[msg.sender].sub(value);
        _balances[to] = _balances[to].add(value);
        emit Transfer(msg.sender, to, value);
        return true;
    }

    /**
    * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
    * Beware that changing an allowance with this method brings the risk that someone may use both the old
    * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this
    * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards:
    * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
    * @param spender The address which will spend the funds.
    * @param value The amount of tokens to be spent.
    */
    function approve(address spender, uint256 value) public returns (bool) {
        require(spender != address(0));

        _allowed[msg.sender][spender] = value;
        emit Approval(msg.sender, spender, value);
        return true;
    }

    /**
    * @dev Transfer tokens from one address to another
    * @param from address The address which you want to send tokens from
    * @param to address The address which you want to transfer to
    * @param value uint256 the amount of tokens to be transferred
    */
    function transferFrom(
        address from,
        address to,
        uint256 value
    )
        public
        returns (bool)
    {
        require(value <= _balances[from]);
        require(value <= _allowed[from][msg.sender]);
        require(to != address(0));

        _balances[from] = _balances[from].sub(value);
        _balances[to] = _balances[to].add(value);
        _allowed[from][msg.sender] = _allowed[from][msg.sender].sub(value);
        emit Transfer(from, to, value);
        return true;
    }

    /**
    * @dev Increase the amount of tokens that an owner allowed to a spender.
    * approve should be called when allowed_[_spender] == 0. To increment
    * allowed value is better to use this function to avoid 2 calls (and wait until
    * the first transaction is mined)
    * From MonolithDAO Token.sol
    * @param spender The address which will spend the funds.
    * @param addedValue The amount of tokens to increase the allowance by.
    */
    function increaseAllowance(
        address spender,
        uint256 addedValue
    )
        public
        returns (bool)
    {
        require(spender != address(0));

        _allowed[msg.sender][spender] = (
        _allowed[msg.sender][spender].add(addedValue));
        emit Approval(msg.sender, spender, _allowed[msg.sender][spender]);
        return true;
    }

    /**
    * @dev Decrease the amount of tokens that an owner allowed to a spender.
    * approve should be called when allowed_[_spender] == 0. To decrement
    * allowed value is better to use this function to avoid 2 calls (and wait until
    * the first transaction is mined)
    * From MonolithDAO Token.sol
    * @param spender The address which will spend the funds.
    * @param subtractedValue The amount of tokens to decrease the allowance by.
    */
    function decreaseAllowance(
        address spender,
        uint256 subtractedValue
    )
        public
        returns (bool)
    {
        require(spender != address(0));

        _allowed[msg.sender][spender] = (
        _allowed[msg.sender][spender].sub(subtractedValue));
        emit Approval(msg.sender, spender, _allowed[msg.sender][spender]);
        return true;
    }

    /**
    * @dev Internal function that mints an amount of the token and assigns it to
    * an account. This encapsulates the modification of balances such that the
    * proper events are emitted.
    * @param account The account that will receive the created tokens.
    * @param amount The amount that will be created.
    */
    function _mint(address account, uint256 amount) internal {
        require(account != address(0));
        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    /**
    * @dev Internal function that burns an amount of the token of a given
    * account.
    * @param account The account whose tokens will be burnt.
    * @param amount The amount that will be burnt.
    */
    function _burn(address account, uint256 amount) internal {
        require(account != address(0));
        require(amount <= _balances[account]);

        _totalSupply = _totalSupply.sub(amount);
        _balances[account] = _balances[account].sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
    * @dev Internal function that burns an amount of the token of a given
    * account, deducting from the sender's allowance for said account. Uses the
    * internal burn function.
    * @param account The account whose tokens will be burnt.
    * @param amount The amount that will be burnt.
    */
    function _burnFrom(address account, uint256 amount) internal {
        require(amount <= _allowed[account][msg.sender]);

        // Should https://github.com/OpenZeppelin/zeppelin-solidity/issues/707 be accepted,
        // this function needs to emit an event with the updated approval.
        _allowed[account][msg.sender] = _allowed[account][msg.sender].sub(
        amount);
        _burn(account, amount);
    }

    function burnFrom(address account, uint256 amount) public {
        _burnFrom(account, amount);
    }
}

/**
 * @title Template contract for social money, to be used by TokenFactory
 * @author Jake Goh Si Yuan @ jakegsy, [email protected]
 */



contract SocialMoney is ERC20 {

    /**
     * @dev Constructor on SocialMoney
     * @param _name string Name parameter of Token
     * @param _symbol string Symbol parameter of Token
     * @param _decimals uint8 Decimals parameter of Token
     * @param _proportions uint256[3] Parameter that dictates how totalSupply will be divvied up,
                            _proportions[0] = Vesting Beneficiary Initial Supply
                            _proportions[1] = Turing Supply
                            _proportions[2] = Vesting Beneficiary Vesting Supply
     * @param _vestingBeneficiary address Address of the Vesting Beneficiary
     * @param _platformWallet Address of Turing platform wallet
     * @param _tokenVestingInstance address Address of Token Vesting contract
     */
    constructor(
        string memory _name,
        string memory _symbol,
        uint8 _decimals,
        uint256[3] memory _proportions,
        address _vestingBeneficiary,
        address _platformWallet,
        address _tokenVestingInstance
    )
    public
    {
        name = _name;
        symbol = _symbol;
        decimals = _decimals;

        uint256 totalProportions = _proportions[0].add(_proportions[1]).add(_proportions[2]);

        _mint(_vestingBeneficiary, _proportions[0]);
        _mint(_platformWallet, _proportions[1]);
        _mint(_tokenVestingInstance, _proportions[2]);

        //Sanity check that the totalSupply is exactly where we want it to be
        assert(totalProportions == totalSupply());
    }
}

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":"value","type":"uint256"}],"name":"approve","outputs":[{"name":"","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":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"},{"name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_decimals","type":"uint8"},{"name":"_proportions","type":"uint256[3]"},{"name":"_vestingBeneficiary","type":"address"},{"name":"_platformWallet","type":"address"},{"name":"_tokenVestingInstance","type":"address"}],"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":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]

Deployed Bytecode

0x6080604052600436106100b95763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100be578063095ea7b31461014857806318160ddd1461019557806323b872dd146101bc578063313ce567146101ff578063395093511461022a57806370a082311461026357806379cc67901461029657806395d89b41146102d1578063a457c2d7146102e6578063a9059cbb1461031f578063dd62ed3e14610358575b600080fd5b3480156100ca57600080fd5b506100d3610393565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561010d5781810151838201526020016100f5565b50505050905090810190601f16801561013a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561015457600080fd5b506101816004803603604081101561016b57600080fd5b50600160a060020a038135169060200135610421565b604080519115158252519081900360200190f35b3480156101a157600080fd5b506101aa61049f565b60408051918252519081900360200190f35b3480156101c857600080fd5b50610181600480360360608110156101df57600080fd5b50600160a060020a038135811691602081013590911690604001356104a5565b34801561020b57600080fd5b5061021461061a565b6040805160ff9092168252519081900360200190f35b34801561023657600080fd5b506101816004803603604081101561024d57600080fd5b50600160a060020a038135169060200135610623565b34801561026f57600080fd5b506101aa6004803603602081101561028657600080fd5b5035600160a060020a03166106d3565b3480156102a257600080fd5b506102cf600480360360408110156102b957600080fd5b50600160a060020a0381351690602001356106ee565b005b3480156102dd57600080fd5b506100d36106fc565b3480156102f257600080fd5b506101816004803603604081101561030957600080fd5b50600160a060020a038135169060200135610757565b34801561032b57600080fd5b506101816004803603604081101561034257600080fd5b50600160a060020a0381351690602001356107a2565b34801561036457600080fd5b506101aa6004803603604081101561037b57600080fd5b50600160a060020a0381358116916020013516610881565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104195780601f106103ee57610100808354040283529160200191610419565b820191906000526020600020905b8154815290600101906020018083116103fc57829003601f168201915b505050505081565b6000600160a060020a038316151561043857600080fd5b336000818152600160209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60025490565b600160a060020a0383166000908152602081905260408120548211156104ca57600080fd5b600160a060020a03841660009081526001602090815260408083203384529091529020548211156104fa57600080fd5b600160a060020a038316151561050f57600080fd5b600160a060020a038416600090815260208190526040902054610538908363ffffffff6108ac16565b600160a060020a03808616600090815260208190526040808220939093559085168152205461056d908363ffffffff6108be16565b600160a060020a038085166000908152602081815260408083209490945591871681526001825282812033825290915220546105af908363ffffffff6108ac16565b600160a060020a03808616600081815260016020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b60055460ff1681565b6000600160a060020a038316151561063a57600080fd5b336000908152600160209081526040808320600160a060020a038716845290915290205461066e908363ffffffff6108be16565b336000818152600160209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a031660009081526020819052604090205490565b6106f882826108d4565b5050565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104195780601f106103ee57610100808354040283529160200191610419565b6000600160a060020a038316151561076e57600080fd5b336000908152600160209081526040808320600160a060020a038716845290915290205461066e908363ffffffff6108ac16565b336000908152602081905260408120548211156107be57600080fd5b600160a060020a03831615156107d357600080fd5b336000908152602081905260409020546107f3908363ffffffff6108ac16565b3360009081526020819052604080822092909255600160a060020a03851681522054610825908363ffffffff6108be16565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b6000828211156108b857fe5b50900390565b6000828201838110156108cd57fe5b9392505050565b600160a060020a038216600090815260016020908152604080832033845290915290205481111561090457600080fd5b600160a060020a0382166000908152600160209081526040808320338452909152902054610938908263ffffffff6108ac16565b600160a060020a03831660009081526001602090815260408083203384529091529020556106f88282600160a060020a038216151561097657600080fd5b600160a060020a03821660009081526020819052604090205481111561099b57600080fd5b6002546109ae908263ffffffff6108ac16565b600255600160a060020a0382166000908152602081905260409020546109da908263ffffffff6108ac16565b600160a060020a038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a3505056fea165627a7a723058208bbc107e65f5b009a02e35e5f20307f164501526f7e8e3c5d4eb32ae921131b90029

Deployed Bytecode Sourcemap

9829:1571:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2600:18;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2600:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;2600:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4848:244;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4848:244:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;4848:244:0;;;;;;;;;;;;;;;;;;;;;;;;;;;2747:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2747:91:0;;;;;;;;;;;;;;;;;;;;5381:533;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5381:533:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;5381:533:0;;;;;;;;;;;;;;;;;;2652:21;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2652:21:0;;;;;;;;;;;;;;;;;;;;;;;6388:383;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6388:383:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;6388:383:0;;;;;;;;;3058:106;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3058:106:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;3058:106:0;-1:-1:-1;;;;;3058:106:0;;;9572:103;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9572:103:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;9572:103:0;;;;;;;;;;;2625:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2625:20:0;;;;7250:393;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7250:393:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;7250:393:0;;;;;;;;;3859:350;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3859:350:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;3859:350:0;;;;;;;;;3498:188;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3498:188:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;3498:188:0;;;;;;;;;;;2600:18;;;;;;;;;;;;;;;-1:-1:-1;;2600:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4848:244::-;4913:4;-1:-1:-1;;;;;4938:21:0;;;;4930:30;;;;;;4982:10;4973:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;4973:29:0;;;;;;;;;;;;:37;;;5026:36;;;;;;;4973:29;;4982:10;5026:36;;;;;;;;;;;-1:-1:-1;5080:4:0;4848:244;;;;:::o;2747:91::-;2818:12;;2747:91;:::o;5381:533::-;-1:-1:-1;;;;;5551:15:0;;5512:4;5551:15;;;;;;;;;;;5542:24;;;5534:33;;;;;;-1:-1:-1;;;;;5595:14:0;;;;;;:8;:14;;;;;;;;5610:10;5595:26;;;;;;;;5586:35;;;5578:44;;;;;;-1:-1:-1;;;;;5641:16:0;;;;5633:25;;;;;;-1:-1:-1;;;;;5689:15:0;;:9;:15;;;;;;;;;;;:26;;5709:5;5689:26;:19;:26;:::i;:::-;-1:-1:-1;;;;;5671:15:0;;;:9;:15;;;;;;;;;;;:44;;;;5742:13;;;;;;;:24;;5760:5;5742:24;:17;:24;:::i;:::-;-1:-1:-1;;;;;5726:13:0;;;:9;:13;;;;;;;;;;;:40;;;;5806:14;;;;;:8;:14;;;;;5821:10;5806:26;;;;;;;:37;;5837:5;5806:37;:30;:37;:::i;:::-;-1:-1:-1;;;;;5777:14:0;;;;;;;:8;:14;;;;;;;;5792:10;5777:26;;;;;;;;:66;;;;5859:25;;;;;;;;;;;5777:14;;5859:25;;;;;;;;;;;-1:-1:-1;5902:4:0;5381:533;;;;;:::o;2652:21::-;;;;;;:::o;6388:383::-;6511:4;-1:-1:-1;;;;;6541:21:0;;;;6533:30;;;;;;6628:10;6619:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;6619:29:0;;;;;;;;;;:45;;6653:10;6619:45;:33;:45;:::i;:::-;6585:10;6576:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;6576:29:0;;;;;;;;;;;;:89;;;6681:60;;;;;;6576:29;;6681:60;;;;;;;;;;;-1:-1:-1;6759:4:0;6388:383;;;;:::o;3058:106::-;-1:-1:-1;;;;;3140:16:0;3113:7;3140:16;;;;;;;;;;;;3058:106::o;9572:103::-;9641:26;9651:7;9660:6;9641:9;:26::i;:::-;9572:103;;:::o;2625:20::-;;;;;;;;;;;;;;;-1:-1:-1;;2625:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7250:393;7378:4;-1:-1:-1;;;;;7408:21:0;;;;7400:30;;;;;;7495:10;7486:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;7486:29:0;;;;;;;;;;:50;;7520:15;7486:50;:33;:50;:::i;3859:350::-;3964:10;3920:4;3954:21;;;;;;;;;;;3945:30;;;3937:39;;;;;;-1:-1:-1;;;;;3995:16:0;;;;3987:25;;;;;;4059:10;4049:9;:21;;;;;;;;;;;:32;;4075:5;4049:32;:25;:32;:::i;:::-;4035:10;4025:9;:21;;;;;;;;;;;:56;;;;-1:-1:-1;;;;;4108:13:0;;;;;;:24;;4126:5;4108:24;:17;:24;:::i;:::-;-1:-1:-1;;;;;4092:13:0;;:9;:13;;;;;;;;;;;;:40;;;;4148:31;;;;;;;4092:13;;4157:10;;4148:31;;;;;;;;;;-1:-1:-1;4197:4:0;3859:350;;;;:::o;3498:188::-;-1:-1:-1;;;;;3654:15:0;;;3622:7;3654:15;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;3498:188::o;1708:123::-;1766:7;1793:6;;;;1786:14;;;;-1:-1:-1;1818:5:0;;;1708:123::o;1900:147::-;1958:7;1990:5;;;2013:6;;;;2006:14;;;;2038:1;1900:147;-1:-1:-1;;;1900:147:0:o;9138:426::-;-1:-1:-1;;;;;9228:17:0;;;;;;:8;:17;;;;;;;;9246:10;9228:29;;;;;;;;9218:39;;;9210:48;;;;;;-1:-1:-1;;;;;9472:17:0;;;;;;:8;:17;;;;;;;;9490:10;9472:29;;;;;;;;:51;;9516:6;9472:51;:33;:51;:::i;:::-;-1:-1:-1;;;;;9440:17:0;;;;;;:8;:17;;;;;;;;9458:10;9440:29;;;;;;;:83;9534:22;9449:7;9549:6;-1:-1:-1;;;;;8567:21:0;;;;8559:30;;;;;;-1:-1:-1;;;;;8618:18:0;;:9;:18;;;;;;;;;;;8608:28;;;8600:37;;;;;;8665:12;;:24;;8682:6;8665:24;:16;:24;:::i;:::-;8650:12;:39;-1:-1:-1;;;;;8721:18:0;;:9;:18;;;;;;;;;;;:30;;8744:6;8721:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;8700:18:0;;:9;:18;;;;;;;;;;;:51;;;;8767:37;;;;;;;8700:9;;8767:37;;;;;;;;;;;8491:321;;:::o

Swarm Source

bzzr://8bbc107e65f5b009a02e35e5f20307f164501526f7e8e3c5d4eb32ae921131b9

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

OVERVIEW

Earn, redeem, send and trade social tokens across the internet. Web 2.0 or Web 3.0, it’s easy with Roll.

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]
[ 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.