Latest 25 from a total of 11,294 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 24637677 | 2 hrs ago | IN | 0 ETH | 0.00000214 | ||||
| Approve | 24637677 | 2 hrs ago | IN | 0 ETH | 0.00000121 | ||||
| Approve | 24635303 | 10 hrs ago | IN | 0 ETH | 0.00010847 | ||||
| Approve | 24631174 | 24 hrs ago | IN | 0 ETH | 0.00000629 | ||||
| Approve | 24623885 | 2 days ago | IN | 0 ETH | 0.00000531 | ||||
| Approve | 24617668 | 2 days ago | IN | 0 ETH | 0.00009599 | ||||
| Approve | 24615701 | 3 days ago | IN | 0 ETH | 0.00000761 | ||||
| Approve | 24615443 | 3 days ago | IN | 0 ETH | 0.000006 | ||||
| Approve | 24615403 | 3 days ago | IN | 0 ETH | 0.00000626 | ||||
| Approve | 24609664 | 4 days ago | IN | 0 ETH | 0.00000602 | ||||
| Approve | 24609657 | 4 days ago | IN | 0 ETH | 0.00000381 | ||||
| Approve | 24609207 | 4 days ago | IN | 0 ETH | 0.00000597 | ||||
| Transfer | 24608184 | 4 days ago | IN | 0 ETH | 0.00000458 | ||||
| Transfer | 24608178 | 4 days ago | IN | 0 ETH | 0.00000455 | ||||
| Transfer | 24608026 | 4 days ago | IN | 0 ETH | 0.0000046 | ||||
| Transfer | 24607997 | 4 days ago | IN | 0 ETH | 0.00000444 | ||||
| Approve | 24607907 | 4 days ago | IN | 0 ETH | 0.00000138 | ||||
| Approve | 24607853 | 4 days ago | IN | 0 ETH | 0.00000167 | ||||
| Approve | 24607792 | 4 days ago | IN | 0 ETH | 0.00000212 | ||||
| Approve | 24606220 | 4 days ago | IN | 0 ETH | 0.00000117 | ||||
| Approve | 24606219 | 4 days ago | IN | 0 ETH | 0.00000647 | ||||
| Transfer | 24605816 | 4 days ago | IN | 0 ETH | 0.00000459 | ||||
| Transfer | 24605807 | 4 days ago | IN | 0 ETH | 0.0000047 | ||||
| Approve | 24603811 | 4 days ago | IN | 0 ETH | 0.00000641 | ||||
| Approve | 24602356 | 5 days ago | IN | 0 ETH | 0.00000207 |
Latest 1 internal transaction
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| - | 11294630 | 1937 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
MasterToken
Compiler Version
v0.5.9+commit.c68bc34e
Contract Source Code (Solidity Multiple files format)
pragma solidity ^0.5.8;
import "./ERC20Detailed.sol";
import "./ERC20Burnable.sol";
import "./Ownable.sol";
contract MasterToken is ERC20Burnable, ERC20Detailed, Ownable {
/**
* @dev Constructor that gives the specified address all of existing tokens.
*/
constructor(string memory name, string memory symbol, uint8 decimals, address beneficiary, uint256 supply) public ERC20Detailed(name, symbol, decimals) {
_mint(beneficiary, supply);
}
function mintTokens(address beneficiary, uint256 amount) public onlyOwner {
_mint(beneficiary, amount);
}
}
pragma solidity ^0.5.8;
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 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 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) {
_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) {
_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 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));
}
}
pragma solidity ^0.5.8;
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);
}
}
pragma solidity ^0.5.8;
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.
*/
contract ERC20Detailed is IERC20 {
string private _name;
string private _symbol;
uint8 private _decimals;
constructor (string memory name, string memory symbol, uint8 decimals) public {
_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;
}
}
pragma solidity ^0.5.8;
/**
* @title ERC20 interface
* @dev see https://github.com/ethereum/EIPs/issues/20
*/
interface IERC20 {
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);
function totalSupply() external view returns (uint256);
function balanceOf(address who) external view returns (uint256);
function allowance(address owner, address spender) external view returns (uint256);
event Transfer(address indexed from, address indexed to, uint256 value);
event Approval(address indexed owner, address indexed spender, uint256 value);
}
pragma solidity ^0.5.8;
/**
* @title Ownable
* @dev The Ownable contract has an owner address, and provides basic authorization control
* functions, this simplifies the implementation of "user permissions".
*/
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 () internal {
_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;
}
}
pragma solidity ^0.5.8;
/**
* @title SafeMath
* @dev Unsigned math operations with safety checks that revert on error
*/
library SafeMath {
/**
* @dev Multiplies two unsigned integers, reverts on 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-solidity/pull/522
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b);
return c;
}
/**
* @dev Integer division of two unsigned integers truncating the quotient, reverts on division by zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
// Solidity only automatically asserts when dividing by 0
require(b > 0);
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
/**
* @dev Subtracts two unsigned integers, reverts on overflow (i.e. if subtrahend is greater than minuend).
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
require(b <= a);
uint256 c = a - b;
return c;
}
/**
* @dev Adds two unsigned integers, reverts on overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a);
return c;
}
/**
* @dev Divides two unsigned integers and returns the remainder (unsigned integer modulo),
* reverts when dividing by zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
require(b != 0);
return a % b;
}
}
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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":false,"inputs":[{"name":"value","type":"uint256"}],"name":"burn","outputs":[],"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":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"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":"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"},{"constant":false,"inputs":[{"name":"beneficiary","type":"address"},{"name":"amount","type":"uint256"}],"name":"mintTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"name","type":"string"},{"name":"symbol","type":"string"},{"name":"decimals","type":"uint8"},{"name":"beneficiary","type":"address"},{"name":"supply","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"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"}]Contract Creation Code
60806040523480156200001157600080fd5b5060405162000df738038062000df7833981810160405260a08110156200003757600080fd5b8101908080516401000000008111156200005057600080fd5b820160208101848111156200006457600080fd5b81516401000000008111828201871017156200007f57600080fd5b505092919060200180516401000000008111156200009c57600080fd5b82016020810184811115620000b057600080fd5b8151640100000000811182820187101715620000cb57600080fd5b50506020808301516040840151606090940151875193965090945091869186918691620000fe916003918601906200026e565b508151620001149060049060208501906200026e565b506005805460ff191660ff9290921691909117610100600160a81b03191661010033810291909117918290556040516001600160a01b0391909204169250600091507f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a36200019082826001600160e01b036200019b16565b505050505062000313565b6001600160a01b038216620001af57600080fd5b620001cb816002546200025460201b620008781790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620001fe9183906200087862000254821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000828201838110156200026757600080fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002b157805160ff1916838001178555620002e1565b82800160010185558215620002e1579182015b82811115620002e1578251825591602001919060010190620002c4565b50620002ef929150620002f3565b5090565b6200031091905b80821115620002ef5760008155600101620002fa565b90565b610ad480620003236000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806379cc6790116100a2578063a457c2d711610071578063a457c2d71461031f578063a9059cbb1461034b578063dd62ed3e14610377578063f0dda65c146103a5578063f2fde38b146103d157610116565b806379cc6790146102bf5780638da5cb5b146102eb5780638f32d59b1461030f57806395d89b411461031757610116565b8063313ce567116100e9578063313ce56714610228578063395093511461024657806342966c681461027257806370a0823114610291578063715018a6146102b757610116565b806306fdde031461011b578063095ea7b31461019857806318160ddd146101d857806323b872dd146101f2575b600080fd5b6101236103f7565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015d578181015183820152602001610145565b50505050905090810190601f16801561018a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101c4600480360360408110156101ae57600080fd5b506001600160a01b03813516906020013561048d565b604080519115158252519081900360200190f35b6101e06104a3565b60408051918252519081900360200190f35b6101c46004803603606081101561020857600080fd5b506001600160a01b038135811691602081013590911690604001356104a9565b610230610500565b6040805160ff9092168252519081900360200190f35b6101c46004803603604081101561025c57600080fd5b506001600160a01b038135169060200135610509565b61028f6004803603602081101561028857600080fd5b5035610545565b005b6101e0600480360360208110156102a757600080fd5b50356001600160a01b0316610552565b61028f61056d565b61028f600480360360408110156102d557600080fd5b506001600160a01b0381351690602001356105ce565b6102f36105dc565b604080516001600160a01b039092168252519081900360200190f35b6101c46105f0565b610123610606565b6101c46004803603604081101561033557600080fd5b506001600160a01b038135169060200135610667565b6101c46004803603604081101561036157600080fd5b506001600160a01b0381351690602001356106a3565b6101e06004803603604081101561038d57600080fd5b506001600160a01b03813581169160200135166106b0565b61028f600480360360408110156103bb57600080fd5b506001600160a01b0381351690602001356106db565b61028f600480360360208110156103e757600080fd5b50356001600160a01b03166106f6565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104835780601f1061045857610100808354040283529160200191610483565b820191906000526020600020905b81548152906001019060200180831161046657829003601f168201915b5050505050905090565b600061049a338484610710565b50600192915050565b60025490565b60006104b6848484610798565b6001600160a01b0384166000908152600160209081526040808320338085529252909120546104f69186916104f1908663ffffffff61086316565b610710565b5060019392505050565b60055460ff1690565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161049a9185906104f1908663ffffffff61087816565b61054f3382610891565b50565b6001600160a01b031660009081526020819052604090205490565b6105756105f0565b61057e57600080fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b6105d88282610938565b5050565b60055461010090046001600160a01b031690565b60055461010090046001600160a01b0316331490565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104835780601f1061045857610100808354040283529160200191610483565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161049a9185906104f1908663ffffffff61086316565b600061049a338484610798565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6106e36105f0565b6106ec57600080fd5b6105d8828261097d565b6106fe6105f0565b61070757600080fd5b61054f81610a25565b6001600160a01b03821661072357600080fd5b6001600160a01b03831661073657600080fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0382166107ab57600080fd5b6001600160a01b0383166000908152602081905260409020546107d4908263ffffffff61086316565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610809908263ffffffff61087816565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008282111561087257600080fd5b50900390565b60008282018381101561088a57600080fd5b9392505050565b6001600160a01b0382166108a457600080fd5b6002546108b7908263ffffffff61086316565b6002556001600160a01b0382166000908152602081905260409020546108e3908263ffffffff61086316565b6001600160a01b038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b6109428282610891565b6001600160a01b0382166000908152600160209081526040808320338085529252909120546105d89184916104f1908563ffffffff61086316565b6001600160a01b03821661099057600080fd5b6002546109a3908263ffffffff61087816565b6002556001600160a01b0382166000908152602081905260409020546109cf908263ffffffff61087816565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038116610a3857600080fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b031990921691909117905556fea265627a7a72305820fa329fcee27915c2b5eaa0049de68e3ffcff5cbfd2d8921823aa008539ea547764736f6c6343000509003200000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000014536f72612056616c696461746f7220546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000356414c0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101165760003560e01c806379cc6790116100a2578063a457c2d711610071578063a457c2d71461031f578063a9059cbb1461034b578063dd62ed3e14610377578063f0dda65c146103a5578063f2fde38b146103d157610116565b806379cc6790146102bf5780638da5cb5b146102eb5780638f32d59b1461030f57806395d89b411461031757610116565b8063313ce567116100e9578063313ce56714610228578063395093511461024657806342966c681461027257806370a0823114610291578063715018a6146102b757610116565b806306fdde031461011b578063095ea7b31461019857806318160ddd146101d857806323b872dd146101f2575b600080fd5b6101236103f7565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015d578181015183820152602001610145565b50505050905090810190601f16801561018a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101c4600480360360408110156101ae57600080fd5b506001600160a01b03813516906020013561048d565b604080519115158252519081900360200190f35b6101e06104a3565b60408051918252519081900360200190f35b6101c46004803603606081101561020857600080fd5b506001600160a01b038135811691602081013590911690604001356104a9565b610230610500565b6040805160ff9092168252519081900360200190f35b6101c46004803603604081101561025c57600080fd5b506001600160a01b038135169060200135610509565b61028f6004803603602081101561028857600080fd5b5035610545565b005b6101e0600480360360208110156102a757600080fd5b50356001600160a01b0316610552565b61028f61056d565b61028f600480360360408110156102d557600080fd5b506001600160a01b0381351690602001356105ce565b6102f36105dc565b604080516001600160a01b039092168252519081900360200190f35b6101c46105f0565b610123610606565b6101c46004803603604081101561033557600080fd5b506001600160a01b038135169060200135610667565b6101c46004803603604081101561036157600080fd5b506001600160a01b0381351690602001356106a3565b6101e06004803603604081101561038d57600080fd5b506001600160a01b03813581169160200135166106b0565b61028f600480360360408110156103bb57600080fd5b506001600160a01b0381351690602001356106db565b61028f600480360360208110156103e757600080fd5b50356001600160a01b03166106f6565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104835780601f1061045857610100808354040283529160200191610483565b820191906000526020600020905b81548152906001019060200180831161046657829003601f168201915b5050505050905090565b600061049a338484610710565b50600192915050565b60025490565b60006104b6848484610798565b6001600160a01b0384166000908152600160209081526040808320338085529252909120546104f69186916104f1908663ffffffff61086316565b610710565b5060019392505050565b60055460ff1690565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161049a9185906104f1908663ffffffff61087816565b61054f3382610891565b50565b6001600160a01b031660009081526020819052604090205490565b6105756105f0565b61057e57600080fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b6105d88282610938565b5050565b60055461010090046001600160a01b031690565b60055461010090046001600160a01b0316331490565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104835780601f1061045857610100808354040283529160200191610483565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161049a9185906104f1908663ffffffff61086316565b600061049a338484610798565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6106e36105f0565b6106ec57600080fd5b6105d8828261097d565b6106fe6105f0565b61070757600080fd5b61054f81610a25565b6001600160a01b03821661072357600080fd5b6001600160a01b03831661073657600080fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0382166107ab57600080fd5b6001600160a01b0383166000908152602081905260409020546107d4908263ffffffff61086316565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610809908263ffffffff61087816565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008282111561087257600080fd5b50900390565b60008282018381101561088a57600080fd5b9392505050565b6001600160a01b0382166108a457600080fd5b6002546108b7908263ffffffff61086316565b6002556001600160a01b0382166000908152602081905260409020546108e3908263ffffffff61086316565b6001600160a01b038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b6109428282610891565b6001600160a01b0382166000908152600160209081526040808320338085529252909120546105d89184916104f1908563ffffffff61086316565b6001600160a01b03821661099057600080fd5b6002546109a3908263ffffffff61087816565b6002556001600160a01b0382166000908152602081905260409020546109cf908263ffffffff61087816565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038116610a3857600080fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b031990921691909117905556fea265627a7a72305820fa329fcee27915c2b5eaa0049de68e3ffcff5cbfd2d8921823aa008539ea547764736f6c63430005090032
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000014536f72612056616c696461746f7220546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000356414c0000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Sora Validator Token
Arg [1] : symbol (string): VAL
Arg [2] : decimals (uint8): 18
Arg [3] : beneficiary (address): 0x0000000000000000000000000000000000000001
Arg [4] : supply (uint256): 0
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [6] : 536f72612056616c696461746f7220546f6b656e000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [8] : 56414c0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
110:487:4:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;110:487:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;628:81:2;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;628:81:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2723:145:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;2723:145:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;924:89;;;:::i;:::-;;;;;;;;;;;;;;;;3331:224;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;3331:224:0;;;;;;;;;;;;;;;;;:::i;930:81:2:-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4058:200:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;4058:200:0;;;;;;;;:::i;295:77:1:-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;295:77:1;;:::i;:::-;;1222:104:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;1222:104:0;-1:-1:-1;;;;;1222:104:0;;:::i;1347:137:5:-;;;:::i;624:93:1:-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;624:93:1;;;;;;;;:::i;659:77:5:-;;;:::i;:::-;;;;-1:-1:-1;;;;;659:77:5;;;;;;;;;;;;;;979:90;;;:::i;771:85:2:-;;;:::i;4766:210:0:-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;4766:210:0;;;;;;;;:::i;1950:137::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;1950:137:0;;;;;;;;:::i;1657:129::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;1657:129:0;;;;;;;;;;:::i;477:117:4:-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;477:117:4;;;;;;;;:::i;1655:107:5:-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;1655:107:5;-1:-1:-1;;;;;1655:107:5;;:::i;628:81:2:-;697:5;690:12;;;;;;;;-1:-1:-1;;690:12:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;665:13;;690:12;;697:5;;690:12;;697:5;690:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;628:81;:::o;2723:145:0:-;2788:4;2804:36;2813:10;2825:7;2834:5;2804:8;:36::i;:::-;-1:-1:-1;2857:4:0;2723:145;;;;:::o;924:89::-;994:12;;924:89;:::o;3331:224::-;3410:4;3426:26;3436:4;3442:2;3446:5;3426:9;:26::i;:::-;-1:-1:-1;;;;;3489:14:0;;;;;;:8;:14;;;;;;;;3477:10;3489:26;;;;;;;;;3462:65;;3471:4;;3489:37;;3520:5;3489:37;:30;:37;:::i;:::-;3462:8;:65::i;:::-;-1:-1:-1;3544:4:0;3331:224;;;;;:::o;930:81:2:-;995:9;;;;930:81;:::o;4058:200:0:-;4163:10;4138:4;4184:20;;;:8;:20;;;;;;;;-1:-1:-1;;;;;4184:29:0;;;;;;;;;;4138:4;;4154:76;;4175:7;;4184:45;;4218:10;4184:45;:33;:45;:::i;295:77:1:-;341:24;347:10;359:5;341;:24::i;:::-;295:77;:::o;1222:104:0:-;-1:-1:-1;;;;;1303:16:0;1277:7;1303:16;;;;;;;;;;;;1222:104::o;1347:137:5:-;863:9;:7;:9::i;:::-;855:18;;;;;;1429:6;;1408:40;;1445:1;;1429:6;;;-1:-1:-1;;;;;1429:6:5;;1408:40;;1445:1;;1408:40;1458:6;:19;;-1:-1:-1;;;;;;1458:19:5;;;1347:137::o;624:93:1:-;688:22;698:4;704:5;688:9;:22::i;:::-;624:93;;:::o;659:77:5:-;723:6;;;;;-1:-1:-1;;;;;723:6:5;;659:77::o;979:90::-;1056:6;;;;;-1:-1:-1;;;;;1056:6:5;1042:10;:20;;979:90::o;771:85:2:-;842:7;835:14;;;;;;;;-1:-1:-1;;835:14:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;810:13;;835:14;;842:7;;835:14;;842:7;835:14;;;;;;;;;;;;;;;;;;;;;;;;4766:210:0;4876:10;4851:4;4897:20;;;:8;:20;;;;;;;;-1:-1:-1;;;;;4897:29:0;;;;;;;;;;4851:4;;4867:81;;4888:7;;4897:50;;4931:15;4897:50;:33;:50;:::i;1950:137::-;2011:4;2027:32;2037:10;2049:2;2053:5;2027:9;:32::i;1657:129::-;-1:-1:-1;;;;;1755:15:0;;;1729:7;1755:15;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;1657:129::o;477:117:4:-;863:9:5;:7;:9::i;:::-;855:18;;;;;;561:26:4;567:11;580:6;561:5;:26::i;1655:107:5:-;863:9;:7;:9::i;:::-;855:18;;;;;;1727:28;1746:8;1727:18;:28::i;6806:248:0:-;-1:-1:-1;;;;;6898:21:0;;6890:30;;;;;;-1:-1:-1;;;;;6938:19:0;;6930:28;;;;;;-1:-1:-1;;;;;6969:15:0;;;;;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;:32;;;7016:31;;;;;;;;;;;;;;;;;6806:248;;;:::o;5190:256::-;-1:-1:-1;;;;;5277:16:0;;5269:25;;;;;;-1:-1:-1;;;;;5323:15:0;;:9;:15;;;;;;;;;;;:26;;5343:5;5323:26;:19;:26;:::i;:::-;-1:-1:-1;;;;;5305:15:0;;;:9;:15;;;;;;;;;;;:44;;;;5375:13;;;;;;;:24;;5393:5;5375:24;:17;:24;:::i;:::-;-1:-1:-1;;;;;5359:13:0;;;:9;:13;;;;;;;;;;;;:40;;;;5414:25;;;;;;;5359:13;;5414:25;;;;;;;;;;;;;5190:256;;;:::o;1205:145:6:-;1263:7;1295:1;1290;:6;;1282:15;;;;;;-1:-1:-1;1319:5:6;;;1205:145::o;1431:::-;1489:7;1520:5;;;1543:6;;;;1535:15;;;;;;1568:1;1431:145;-1:-1:-1;;;1431:145:6:o;6278:263:0:-;-1:-1:-1;;;;;6352:21:0;;6344:30;;;;;;6400:12;;:23;;6417:5;6400:23;:16;:23;:::i;:::-;6385:12;:38;-1:-1:-1;;;;;6454:18:0;;:9;:18;;;;;;;;;;;:29;;6477:5;6454:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;6433:18:0;;:9;:18;;;;;;;;;;;:50;;;;6498:36;;;;;;;6433:9;;6498:36;;;;;;;;;;;6278:263;;:::o;7443:179::-;7513:21;7519:7;7528:5;7513;:21::i;:::-;-1:-1:-1;;;;;7574:17:0;;;;;;:8;:17;;;;;;;;7562:10;7574:29;;;;;;;;;7544:71;;7553:7;;7574:40;;7608:5;7574:40;:33;:40;:::i;5789:263::-;-1:-1:-1;;;;;5863:21:0;;5855:30;;;;;;5911:12;;:23;;5928:5;5911:23;:16;:23;:::i;:::-;5896:12;:38;-1:-1:-1;;;;;5965:18:0;;:9;:18;;;;;;;;;;;:29;;5988:5;5965:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;5944:18:0;;:9;:18;;;;;;;;;;;:50;;;;6009:36;;;;;;;5944:18;;:9;;6009:36;;;;;;;;;;5789:263;;:::o;1906:183:5:-;-1:-1:-1;;;;;1979:22:5;;1971:31;;;;;;2038:6;;2017:38;;-1:-1:-1;;;;;2017:38:5;;;;2038:6;;;;;2017:38;;;;;2065:6;:17;;-1:-1:-1;;;;;2065:17:5;;;;;-1:-1:-1;;;;;;2065:17:5;;;;;;;;;1906:183::o
Swarm Source
bzzr://fa329fcee27915c2b5eaa0049de68e3ffcff5cbfd2d8921823aa008539ea5477
Loading...
Loading
Loading...
Loading
OVERVIEW
VAL is the validator reward token for the SORA Network. SORA is a decentralized world economic system.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.