ETH Price: $2,524.23 (+2.33%)

Contract

0xc7D9c108D4E1dD1484D3e2568d7f74bfD763d356
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

TokenTracker

Transaction Hash
Method
Block
From
To
Approve210556492024-10-27 8:04:1127 hrs ago1730016251IN
SORA: XSTUSD Token
0 ETH0.000224854.83788008
Transfer210554122024-10-27 7:16:3528 hrs ago1730013395IN
SORA: XSTUSD Token
0 ETH0.000142634.80060749
Transfer210062112024-10-20 10:31:598 days ago1729420319IN
SORA: XSTUSD Token
0 ETH0.000350587.48925174
Approve209826822024-10-17 3:45:2311 days ago1729136723IN
SORA: XSTUSD Token
0 ETH0.0002457510.15735168
Approve209506722024-10-12 16:19:5915 days ago1728749999IN
SORA: XSTUSD Token
0 ETH0.0008925819.2041022
Approve209336452024-10-10 7:14:2318 days ago1728544463IN
SORA: XSTUSD Token
0 ETH0.0004661810.08729284
Approve208542832024-09-29 5:43:3529 days ago1727588615IN
SORA: XSTUSD Token
0 ETH0.000398538.57453351
Approve207779272024-09-18 13:58:4739 days ago1726667927IN
SORA: XSTUSD Token
0 ETH0.000418319.0514438
Approve207776492024-09-18 13:03:1139 days ago1726664591IN
SORA: XSTUSD Token
0 ETH0.000364847.89449354
Approve204627262024-08-05 13:40:5983 days ago1722865259IN
SORA: XSTUSD Token
0 ETH0.0031757968.75357583
Approve204495472024-08-03 17:35:4785 days ago1722706547IN
SORA: XSTUSD Token
0 ETH0.000236815.12410296
Approve204271162024-07-31 14:25:1188 days ago1722435911IN
SORA: XSTUSD Token
0 ETH0.0009213219.94086318
Approve204224662024-07-30 22:50:5989 days ago1722379859IN
SORA: XSTUSD Token
0 ETH0.000126892.74640162
Approve204224632024-07-30 22:50:2389 days ago1722379823IN
SORA: XSTUSD Token
0 ETH0.000123042.6630491
Approve203913642024-07-26 14:37:1193 days ago1722004631IN
SORA: XSTUSD Token
0 ETH0.000291836.31962504
Approve203911602024-07-26 13:56:1193 days ago1722002171IN
SORA: XSTUSD Token
0 ETH0.000255715.5346348
Approve203819932024-07-25 7:12:3595 days ago1721891555IN
SORA: XSTUSD Token
0 ETH0.000171773.71785212
Approve203801712024-07-25 1:07:2395 days ago1721869643IN
SORA: XSTUSD Token
0 ETH0.000155785.35298741
Approve203250712024-07-17 8:31:47103 days ago1721205107IN
SORA: XSTUSD Token
0 ETH0.0003948115.01708363
Approve203250702024-07-17 8:31:35103 days ago1721205095IN
SORA: XSTUSD Token
0 ETH0.0007149415.47806316
Approve199885802024-05-31 8:19:47150 days ago1717143587IN
SORA: XSTUSD Token
0 ETH0.000305476.57239116
Approve198559272024-05-12 19:08:23168 days ago1715540903IN
SORA: XSTUSD Token
0 ETH0.000208384.48334789
Approve198110902024-05-06 12:37:59174 days ago1714999079IN
SORA: XSTUSD Token
0 ETH0.000405118.71603844
Approve197788982024-05-02 0:34:47179 days ago1714610087IN
SORA: XSTUSD Token
0 ETH0.000234995.08754787
Approve195186162024-03-26 12:28:23215 days ago1711456103IN
SORA: XSTUSD Token
0 ETH0.0011968625.75057784
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To
136532072021-11-20 17:24:171072 days ago1637429057  Contract Creation0 ETH
Loading...
Loading

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

Contract Name:
MasterToken

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Apache-2.0 license

Contract Source Code (Solidity Multiple files format)

File 1 of 7: MasterToken.sol
pragma solidity ^0.7.4;
// "SPDX-License-Identifier: Apache License 2.0"

import "./ERC20Detailed.sol";
import "./ERC20Burnable.sol";
import "./Ownable.sol";

contract MasterToken is ERC20Burnable, ERC20Detailed, Ownable {

    bytes32 public _sidechainAssetId;

    /**
     * @dev Constructor that gives the specified address all of existing tokens.
     */
    constructor(
        string memory name, 
        string memory symbol, 
        uint8 decimals, 
        address beneficiary, 
        uint256 supply,
        bytes32 sidechainAssetId) 
        ERC20Detailed(name, symbol, decimals) {
        _sidechainAssetId = sidechainAssetId;    
        _mint(beneficiary, supply);
        
    }
    
    fallback() external {
        revert();
    }

    function mintTokens(address beneficiary, uint256 amount) public onlyOwner {
        _mint(beneficiary, amount);
    }

}

File 2 of 7: ERC20.sol
pragma solidity ^0.7.4;
// "SPDX-License-Identifier: Apache License 2.0"

import "./IERC20.sol";
import "./SafeMath.sol";

/**
 * @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
 *
 * This implementation emits additional Approval events, allowing applications to reconstruct the allowance status for
 * all accounts just by listening to said events. Note that this isn't required by the specification, and other
 * compliant implementations may not do it.
 */
contract ERC20 is IERC20 {
    using SafeMath for uint256;

    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

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

    /**
    * @dev Gets the balance of the specified address.
    * @param owner The address to query the balance of.
    * @return An uint256 representing the amount owned by the passed address.
    */
    function balanceOf(address owner) public view override 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 override 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 override returns (bool) {
        _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 override returns (bool) {
        _approve(msg.sender, spender, value);
        return true;
    }

    /**
     * @dev Transfer tokens from one address to another.
     * Note that while this function emits an Approval event, this is not required as per the specification,
     * and other compliant implementations may not emit the event.
     * @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 override returns (bool) {
        _transfer(from, to, value);
        _approve(from, msg.sender, _allowed[from][msg.sender].sub(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
     * Emits an Approval event.
     * @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) {
        _approve(msg.sender, spender, _allowed[msg.sender][spender].add(addedValue));
        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
     * Emits an Approval event.
     * @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) {
        _approve(msg.sender, spender, _allowed[msg.sender][spender].sub(subtractedValue));
        return true;
    }

    /**
    * @dev Transfer token for a specified addresses
    * @param from The address to transfer from.
    * @param to The address to transfer to.
    * @param value The amount to be transferred.
    */
    function _transfer(address from, address to, uint256 value) internal {
        require(to != address(0));

        _balances[from] = _balances[from].sub(value);
        _balances[to] = _balances[to].add(value);
        emit Transfer(from, to, value);
    }

    /**
     * @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 value The amount that will be created.
     */
    function _mint(address account, uint256 value) internal {
        require(account != address(0));

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

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

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

    /**
     * @dev Approve an address to spend another addresses' tokens.
     * @param owner The address that owns the tokens.
     * @param spender The address that will spend the tokens.
     * @param value The number of tokens that can be spent.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        require(spender != address(0));
        require(owner != address(0));

        _allowed[owner][spender] = value;
        emit Approval(owner, spender, value);
    }

    /**
     * @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.
     * Emits an Approval event (reflecting the reduced allowance).
     * @param account The account whose tokens will be burnt.
     * @param value The amount that will be burnt.
     */
    function _burnFrom(address account, uint256 value) internal {
        _burn(account, value);
        _approve(account, msg.sender, _allowed[account][msg.sender].sub(value));
    }
}

File 3 of 7: ERC20Burnable.sol
pragma solidity ^0.7.4;
// "SPDX-License-Identifier: Apache License 2.0"

import "./ERC20.sol";

/**
 * @title Burnable Token
 * @dev Token that can be irreversibly burned (destroyed).
 */
contract ERC20Burnable is ERC20 {
    /**
     * @dev Burns a specific amount of tokens.
     * @param value The amount of token to be burned.
     */
    function burn(uint256 value) public {
        _burn(msg.sender, value);
    }

    /**
     * @dev Burns a specific amount of tokens from the target address and decrements allowance
     * @param from address The address which you want to send tokens from
     * @param value uint256 The amount of token to be burned
     */
    function burnFrom(address from, uint256 value) public {
        _burnFrom(from, value);
    }
}

File 4 of 7: ERC20Detailed.sol
pragma solidity ^0.7.4;
// "SPDX-License-Identifier: Apache License 2.0"

import "./IERC20.sol";

/**
 * @title ERC20Detailed token
 * @dev The decimals are only for visualization purposes.
 * All the operations are done using the smallest and indivisible token unit,
 * just as on Ethereum all the operations are done in wei.
 */
abstract contract ERC20Detailed is IERC20 {
    string private _name;
    string private _symbol;
    uint8 private _decimals;

    constructor (
        string memory name_, 
        string memory symbol_, 
        uint8 decimals_) {
        _name = name_;
        _symbol = symbol_;
        _decimals = decimals_;
    } 

    /**
     * @return the name of the token.
     */
    function name() public view returns (string memory) {
        return _name;
    }

    /**
     * @return the symbol of the token.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @return the number of decimals of the token.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }
}

File 5 of 7: IERC20.sol
pragma solidity ^0.7.4;
// "SPDX-License-Identifier: MIT"

interface IERC20 {
    function totalSupply() external view returns (uint256);
    function balanceOf(address account) external view returns (uint256);
    function allowance(address owner, address spender) external view returns (uint256);
    function transfer(address recipient, uint256 amount) external returns (bool);
    function approve(address spender, uint256 amount) external returns (bool);
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 6 of 7: Ownable.sol
pragma solidity ^0.7.4;
// "SPDX-License-Identifier: Apache License 2.0"

/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control
 * functions, this simplifies the implementation of "user permissions".
 */
abstract contract Ownable {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev The Ownable constructor sets the original `owner` of the contract to the sender
     * account.
     */
    constructor () {
        _owner = msg.sender;
        emit OwnershipTransferred(address(0), _owner);
    }

    /**
     * @return the address of the owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(isOwner());
        _;
    }

    /**
     * @return true if `msg.sender` is the owner of the contract.
     */
    function isOwner() public view returns (bool) {
        return msg.sender == _owner;
    }

    /**
     * @dev Allows the current owner to relinquish control of the contract.
     * @notice Renouncing to ownership will leave the contract without an owner.
     * It will not be possible to call the functions with the `onlyOwner`
     * modifier anymore.
     */
    function renounceOwnership() public onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Allows the current owner to transfer control of the contract to a newOwner.
     * @param newOwner The address to transfer ownership to.
     */
    function transferOwnership(address newOwner) public onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers control of the contract to a newOwner.
     * @param newOwner The address to transfer ownership to.
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0));
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 7 of 7: SafeMath.sol
pragma solidity ^0.7.4;
// "SPDX-License-Identifier: Apache License 2.0"


/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint8","name":"decimals","type":"uint8"},{"internalType":"address","name":"beneficiary","type":"address"},{"internalType":"uint256","name":"supply","type":"uint256"},{"internalType":"bytes32","name":"sidechainAssetId","type":"bytes32"}],"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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"},{"stateMutability":"nonpayable","type":"fallback"},{"inputs":[],"name":"_sidechainAssetId","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"beneficiary","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c806379cc6790116100ad578063a9059cbb11610071578063a9059cbb14610356578063dd62ed3e14610382578063f0dda65c146103b0578063f2fde38b146103dc578063fcec35a91461040257610121565b806379cc6790146102ca5780638da5cb5b146102f65780638f32d59b1461031a57806395d89b4114610322578063a457c2d71461032a57610121565b8063313ce567116100f4578063313ce56714610233578063395093511461025157806342966c681461027d57806370a082311461029c578063715018a6146102c257610121565b806306fdde0314610126578063095ea7b3146101a357806318160ddd146101e357806323b872dd146101fd575b600080fd5b61012e61040a565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610168578181015183820152602001610150565b50505050905090810190601f1680156101955780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101cf600480360360408110156101b957600080fd5b506001600160a01b0381351690602001356104a0565b604080519115158252519081900360200190f35b6101eb6104b6565b60408051918252519081900360200190f35b6101cf6004803603606081101561021357600080fd5b506001600160a01b038135811691602081013590911690604001356104bc565b61023b61050d565b6040805160ff9092168252519081900360200190f35b6101cf6004803603604081101561026757600080fd5b506001600160a01b038135169060200135610516565b61029a6004803603602081101561029357600080fd5b503561054c565b005b6101eb600480360360208110156102b257600080fd5b50356001600160a01b0316610559565b61029a610574565b61029a600480360360408110156102e057600080fd5b506001600160a01b0381351690602001356105d5565b6102fe6105e3565b604080516001600160a01b039092168252519081900360200190f35b6101cf6105f7565b61012e61060d565b6101cf6004803603604081101561034057600080fd5b506001600160a01b03813516906020013561066e565b6101cf6004803603604081101561036c57600080fd5b506001600160a01b0381351690602001356106a4565b6101eb6004803603604081101561039857600080fd5b506001600160a01b03813581169160200135166106b1565b61029a600480360360408110156103c657600080fd5b506001600160a01b0381351690602001356106dc565b61029a600480360360208110156103f257600080fd5b50356001600160a01b03166106f7565b6101eb610711565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104965780601f1061046b57610100808354040283529160200191610496565b820191906000526020600020905b81548152906001019060200180831161047957829003601f168201915b5050505050905090565b60006104ad338484610778565b50600192915050565b60025490565b60006104c9848484610800565b6001600160a01b0384166000908152600160209081526040808320338085529252909120546105039186916104fe90866108bf565b610778565b5060019392505050565b60055460ff1690565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916104ad9185906104fe9086610717565b6105563382610901565b50565b6001600160a01b031660009081526020819052604090205490565b61057c6105f7565b61058557600080fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b6105df828261099c565b5050565b60055461010090046001600160a01b031690565b60055461010090046001600160a01b0316331490565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104965780601f1061046b57610100808354040283529160200191610496565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916104ad9185906104fe90866108bf565b60006104ad338484610800565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6106e46105f7565b6106ed57600080fd5b6105df82826109db565b6106ff6105f7565b61070857600080fd5b61055681610a77565b60065481565b600082820183811015610771576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b03821661078b57600080fd5b6001600160a01b03831661079e57600080fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03821661081357600080fd5b6001600160a01b03831660009081526020819052604090205461083690826108bf565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546108659082610717565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600061077183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610af1565b6001600160a01b03821661091457600080fd5b60025461092190826108bf565b6002556001600160a01b03821660009081526020819052604090205461094790826108bf565b6001600160a01b038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b6109a68282610901565b6001600160a01b0382166000908152600160209081526040808320338085529252909120546105df9184916104fe90856108bf565b6001600160a01b0382166109ee57600080fd5b6002546109fb9082610717565b6002556001600160a01b038216600090815260208190526040902054610a219082610717565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038116610a8a57600080fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b60008184841115610b805760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610b45578181015183820152602001610b2d565b50505050905090810190601f168015610b725780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50505090039056fea26469706673582212201745b67515403da237cfceff0ec52402e781e4bdab86640854feeb20c207f96464736f6c63430007060033

Deployed Bytecode Sourcemap

166:749:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;767:8;;;741:83:2;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2880:157:0;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;2880:157:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;1003:100;;;:::i;:::-;;;;;;;;;;;;;;;;3510:237;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;3510:237:0;;;;;;;;;;;;;;;;;:::i;1057:83:2:-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4262:203:0;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;4262:203:0;;;;;;;;:::i;358:79:1:-;;;;;;;;;;;;;;;;-1:-1:-1;358:79:1;;:::i;:::-;;1319:115:0;;;;;;;;;;;;;;;;-1:-1:-1;1319:115:0;-1:-1:-1;;;;;1319:115:0;;:::i;1446:140:5:-;;;:::i;696:95:1:-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;696:95:1;;;;;;;;:::i;733:79:5:-;;;:::i;:::-;;;;-1:-1:-1;;;;;733:79:5;;;;;;;;;;;;;;1068:92;;;:::i;891:87:2:-;;;:::i;4985:213:0:-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;4985:213:0;;;;;;;;:::i;2084:149::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;2084:149:0;;;;;;;;:::i;1773:140::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;1773:140:0;;;;;;;;;;:::i;791:119:4:-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;791:119:4;;;;;;;;:::i;1763:109:5:-;;;;;;;;;;;;;;;;-1:-1:-1;1763:109:5;-1:-1:-1;;;;;1763:109:5;;:::i;237:32:4:-;;;:::i;741:83:2:-;811:5;804:12;;;;;;;;-1:-1:-1;;804:12:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;778:13;;804:12;;811:5;;804:12;;811:5;804:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;741:83;:::o;2880:157:0:-;2954:4;2971:36;2980:10;2992:7;3001:5;2971:8;:36::i;:::-;-1:-1:-1;3025:4:0;2880:157;;;;:::o;1003:100::-;1083:12;;1003:100;:::o;3510:237::-;3598:4;3615:26;3625:4;3631:2;3635:5;3615:9;:26::i;:::-;-1:-1:-1;;;;;3679:14:0;;;;;;:8;:14;;;;;;;;3667:10;3679:26;;;;;;;;;3652:65;;3661:4;;3679:37;;3710:5;3679:30;:37::i;:::-;3652:8;:65::i;:::-;-1:-1:-1;3735:4:0;3510:237;;;;;:::o;1057:83:2:-;1123:9;;;;1057:83;:::o;4262:203:0:-;4368:10;4342:4;4389:20;;;:8;:20;;;;;;;;-1:-1:-1;;;;;4389:29:0;;;;;;;;;;4342:4;;4359:76;;4380:7;;4389:45;;4423:10;4389:33;:45::i;358:79:1:-;405:24;411:10;423:5;405;:24::i;:::-;358:79;:::o;1319:115:0:-;-1:-1:-1;;;;;1410:16:0;1383:7;1410:16;;;;;;;;;;;;1319:115::o;1446:140:5:-;945:9;:7;:9::i;:::-;937:18;;;;;;1529:6:::1;::::0;1508:40:::1;::::0;1545:1:::1;::::0;1529:6:::1;::::0;::::1;-1:-1:-1::0;;;;;1529:6:5::1;::::0;1508:40:::1;::::0;1545:1;;1508:40:::1;1559:6;:19:::0;;-1:-1:-1;;;;;;1559:19:5::1;::::0;;1446:140::o;696:95:1:-;761:22;771:4;777:5;761:9;:22::i;:::-;696:95;;:::o;733:79:5:-;798:6;;;;;-1:-1:-1;;;;;798:6:5;;733:79::o;1068:92::-;1146:6;;;;;-1:-1:-1;;;;;1146:6:5;1132:10;:20;;1068:92::o;891:87:2:-;963:7;956:14;;;;;;;;-1:-1:-1;;956:14:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;930:13;;956:14;;963:7;;956:14;;963:7;956:14;;;;;;;;;;;;;;;;;;;;;;;;4985:213:0;5096:10;5070:4;5117:20;;;:8;:20;;;;;;;;-1:-1:-1;;;;;5117:29:0;;;;;;;;;;5070:4;;5087:81;;5108:7;;5117:50;;5151:15;5117:33;:50::i;2084:149::-;2154:4;2171:32;2181:10;2193:2;2197:5;2171:9;:32::i;1773:140::-;-1:-1:-1;;;;;1881:15:0;;;1854:7;1881:15;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;1773:140::o;791:119:4:-;945:9:5;:7;:9::i;:::-;937:18;;;;;;876:26:4::1;882:11;895:6;876:5;:26::i;1763:109:5:-:0;945:9;:7;:9::i;:::-;937:18;;;;;;1836:28:::1;1855:8;1836:18;:28::i;237:32:4:-:0;;;;:::o;911:181:6:-;969:7;1001:5;;;1025:6;;;;1017:46;;;;;-1:-1:-1;;;1017:46:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;1083:1;911:181;-1:-1:-1;;;911:181:6:o;7079:254:0:-;-1:-1:-1;;;;;7172:21:0;;7164:30;;;;;;-1:-1:-1;;;;;7213:19:0;;7205:28;;;;;;-1:-1:-1;;;;;7246:15:0;;;;;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;:32;;;7294:31;;;;;;;;;;;;;;;;;7079:254;;;:::o;5420:262::-;-1:-1:-1;;;;;5508:16:0;;5500:25;;;;;;-1:-1:-1;;;;;5556:15:0;;:9;:15;;;;;;;;;;;:26;;5576:5;5556:19;:26::i;:::-;-1:-1:-1;;;;;5538:15:0;;;:9;:15;;;;;;;;;;;:44;;;;5609:13;;;;;;;:24;;5627:5;5609:17;:24::i;:::-;-1:-1:-1;;;;;5593:13:0;;;:9;:13;;;;;;;;;;;;:40;;;;5649:25;;;;;;;5593:13;;5649:25;;;;;;;;;;;;;5420:262;;;:::o;1367:136:6:-;1425:7;1452:43;1456:1;1459;1452:43;;;;;;;;;;;;;;;;;:3;:43::i;6537:269:0:-;-1:-1:-1;;;;;6612:21:0;;6604:30;;;;;;6662:12;;:23;;6679:5;6662:16;:23::i;:::-;6647:12;:38;-1:-1:-1;;;;;6717:18:0;;:9;:18;;;;;;;;;;;:29;;6740:5;6717:22;:29::i;:::-;-1:-1:-1;;;;;6696:18:0;;:9;:18;;;;;;;;;;;:50;;;;6762:36;;;;;;;6696:9;;6762:36;;;;;;;;;;;6537:269;;:::o;7732:182::-;7803:21;7809:7;7818:5;7803;:21::i;:::-;-1:-1:-1;;;;;7865:17:0;;;;;;:8;:17;;;;;;;;7853:10;7865:29;;;;;;;;;7835:71;;7844:7;;7865:40;;7899:5;7865:33;:40::i;6034:269::-;-1:-1:-1;;;;;6109:21:0;;6101:30;;;;;;6159:12;;:23;;6176:5;6159:16;:23::i;:::-;6144:12;:38;-1:-1:-1;;;;;6214:18:0;;:9;:18;;;;;;;;;;;:29;;6237:5;6214:22;:29::i;:::-;-1:-1:-1;;;;;6193:18:0;;:9;:18;;;;;;;;;;;:50;;;;6259:36;;;;;;;6193:18;;:9;;6259:36;;;;;;;;;;6034:269;;:::o;2022:187:5:-;-1:-1:-1;;;;;2096:22:5;;2088:31;;;;;;2156:6;;2135:38;;-1:-1:-1;;;;;2135:38:5;;;;2156:6;;;;;2135:38;;;;;2184:6;:17;;-1:-1:-1;;;;;2184:17:5;;;;;-1:-1:-1;;;;;;2184:17:5;;;;;;;;;2022:187::o;1798:192:6:-;1884:7;1920:12;1912:6;;;;1904:29;;;;-1:-1:-1;;;1904:29:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1956:5:6;;;1798:192::o

Swarm Source

ipfs://1745b67515403da237cfceff0ec52402e781e4bdab86640854feeb20c207f964

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

SORA is an on-chain governance system based around the XOR token that allows producers to make proposals for funding and all token holders make decisions how to allocate XOR so that the best goods and services get created.

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.