Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 7 from a total of 7 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 19159579 | 775 days ago | IN | 0 ETH | 0.00063762 | ||||
| Approve | 19159166 | 775 days ago | IN | 0 ETH | 0.00056099 | ||||
| Approve | 19159154 | 775 days ago | IN | 0 ETH | 0.00059593 | ||||
| Approve | 19159111 | 775 days ago | IN | 0 ETH | 0.00066173 | ||||
| Approve | 19159057 | 775 days ago | IN | 0 ETH | 0.00068293 | ||||
| Approve | 19159052 | 775 days ago | IN | 0 ETH | 0.00063937 | ||||
| Approve | 19158895 | 775 days ago | IN | 0 ETH | 0.00055785 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
PixelmonToken
Compiler Version
v0.4.17+commit.bdeb9e52
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2024-02-02
*/
/*
)) wW Ww wW Ww wWw W W \\\ /// .-. \\\ ///
(o0)-. (O)(O) (O)\ /(O) (O)_ (O)(O) ((O) (O)) c(O_O)c ((O)(O))
| (_)) (..) `. \/ .' / __) || | \ / | ,'.---.`, | \ ||
| .-' || \ / / ( | \ ||\\//|| / /|_|_|\ \ ||\\||
|( _||_ / \ ( _) | `. || \/ || | \_____/ | || \ |
\) (_/\_) .' /\ `. \ \_ (.-.__) || || '. `---' .` || ||
( (_.' `._) \__) `-' (_/ \_) `-...-' (_/ \_)
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.4.17;
/**
* @title SafeMath
* @dev Math operations with safety checks that throw on error
*/
library SafeMath {
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;
}
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 c;
}
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
assert(b <= a);
return a - b;
}
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
assert(c >= a);
return c;
}
}
/**
* @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 public owner;
/**
* @dev The Ownable constructor sets the original `owner` of the contract to the sender
* account.
*/
function Ownable() public {
owner = msg.sender;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(msg.sender == owner);
_;
}
/**
* @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 {
if (newOwner != address(0)) {
owner = newOwner;
}
}
}
/**
* @title ERC20Basic
* @dev Simpler version of ERC20 interface
* @dev see https://github.com/ethereum/EIPs/issues/20
*/
contract ERC20Basic {
uint public _totalSupply;
function totalSupply() public constant returns (uint);
function balanceOf(address who) public constant returns (uint);
function transfer(address to, uint value) public;
event Transfer(address indexed from, address indexed to, uint value);
}
/**
* @title ERC20 interface
* @dev see https://github.com/ethereum/EIPs/issues/20
*/
contract ERC20 is ERC20Basic {
function allowance(address owner, address spender) public constant returns (uint);
function transferFrom(address from, address to, uint value) public;
function approve(address spender, uint value) public;
event Approval(address indexed owner, address indexed spender, uint value);
}
/**
* @title Basic token
* @dev Basic version of StandardToken, with no allowances.
*/
contract BasicToken is Ownable, ERC20Basic {
using SafeMath for uint;
mapping(address => uint) public balances;
// additional variables for use if transaction fees ever became necessary
uint public basisPointsRate = 0;
uint public maximumFee = 0;
/**
* @dev Fix for the ERC20 short address attack.
*/
modifier onlyPayloadSize(uint size) {
require(!(msg.data.length < size + 4));
_;
}
/**
* @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, uint _value) public onlyPayloadSize(2 * 32) {
uint fee = (_value.mul(basisPointsRate)).div(10000);
if (fee > maximumFee) {
fee = maximumFee;
}
uint sendAmount = _value.sub(fee);
balances[msg.sender] = balances[msg.sender].sub(_value);
balances[_to] = balances[_to].add(sendAmount);
if (fee > 0) {
balances[owner] = balances[owner].add(fee);
Transfer(msg.sender, owner, fee);
}
Transfer(msg.sender, _to, sendAmount);
}
/**
* @dev Gets the balance of the specified address.
* @param _owner The address to query the the balance of.
* @return An uint representing the amount owned by the passed address.
*/
function balanceOf(address _owner) public constant returns (uint balance) {
return balances[_owner];
}
}
/**
* @title Standard ERC20 token
*
* @dev Implementation of the basic standard token.
* @dev https://github.com/ethereum/EIPs/issues/20
* @dev Based oncode by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
*/
contract StandardToken is BasicToken, ERC20 {
mapping (address => mapping (address => uint)) public allowed;
uint public constant MAX_UINT = 2**256 - 1;
/**
* @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 uint the amount of tokens to be transferred
*/
function transferFrom(address _from, address _to, uint _value) public onlyPayloadSize(3 * 32) {
var _allowance = allowed[_from][msg.sender];
// Check is not needed because sub(_allowance, _value) will already throw if this condition is not met
// if (_value > _allowance) throw;
uint fee = (_value.mul(basisPointsRate)).div(10000);
if (fee > maximumFee) {
fee = maximumFee;
}
if (_allowance < MAX_UINT) {
allowed[_from][msg.sender] = _allowance.sub(_value);
}
uint sendAmount = _value.sub(fee);
balances[_from] = balances[_from].sub(_value);
balances[_to] = balances[_to].add(sendAmount);
if (fee > 0) {
balances[owner] = balances[owner].add(fee);
Transfer(_from, owner, fee);
}
Transfer(_from, _to, sendAmount);
}
/**
* @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
* @param _spender The address which will spend the funds.
* @param _value The amount of tokens to be spent.
*/
function approve(address _spender, uint _value) public onlyPayloadSize(2 * 32) {
// To change the approve amount you first have to reduce the addresses`
// allowance to zero by calling `approve(_spender, 0)` if it is not
// already 0 to mitigate the race condition described here:
// https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
require(!((_value != 0) && (allowed[msg.sender][_spender] != 0)));
allowed[msg.sender][_spender] = _value;
Approval(msg.sender, _spender, _value);
}
/**
* @dev Function to check the amount of tokens than 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 uint specifying the amount of tokens still available for the spender.
*/
function allowance(address _owner, address _spender) public constant returns (uint remaining) {
return allowed[_owner][_spender];
}
}
contract UpgradedStandardToken is StandardToken{
// those methods are called by the legacy contract
// and they must ensure msg.sender to be the contract address
function transferByLegacy(address from, address to, uint value) public;
function transferFromByLegacy(address sender, address from, address spender, uint value) public;
function approveByLegacy(address from, address spender, uint value) public;
}
/**
* @title PixelmonToken
* ERC-20 with supply controls + add-ons to allow for offchain signing
* See EIP-712, EIP-2612, and EIP-3009 for details
*/
contract PixelmonToken is StandardToken {
string public name;
string public symbol;
uint public decimals;
address public upgradedAddress;
bool public deprecated;
function PixelmonToken(uint _initialSupply, string _name, string _symbol, uint _decimals) public {
_totalSupply = _initialSupply;
name = _name;
symbol = _symbol;
decimals = _decimals;
balances[owner] = _initialSupply;
deprecated = false;
}
// Forward ERC20 methods to upgraded contract if this one is deprecated
function transfer(address _to, uint _value) public {
if (deprecated) {
return UpgradedStandardToken(upgradedAddress).transferByLegacy(msg.sender, _to, _value);
} else {
return super.transfer(_to, _value);
}
}
// Forward ERC20 methods to upgraded contract if this one is deprecated
function transferFrom(address _from, address _to, uint _value) public {
if (deprecated) {
return UpgradedStandardToken(upgradedAddress).transferFromByLegacy(msg.sender, _from, _to, _value);
} else {
return super.transferFrom(_from, _to, _value);
}
}
// Forward ERC20 methods to upgraded contract if this one is deprecated
function balanceOf(address who) public constant returns (uint) {
if (deprecated) {
return UpgradedStandardToken(upgradedAddress).balanceOf(who);
} else {
return super.balanceOf(who);
}
}
// Forward ERC20 methods to upgraded contract if this one is deprecated
function approve(address _spender, uint _value) public onlyPayloadSize(2 * 32) {
if (deprecated) {
return UpgradedStandardToken(upgradedAddress).approveByLegacy(msg.sender, _spender, _value);
} else {
return super.approve(_spender, _value);
}
}
// Forward ERC20 methods to upgraded contract if this one is deprecated
function allowance(address _owner, address _spender) public constant returns (uint remaining) {
if (deprecated) {
return StandardToken(upgradedAddress).allowance(_owner, _spender);
} else {
return super.allowance(_owner, _spender);
}
}
// deprecate current contract in favour of a new one
function deprecate(address _upgradedAddress) public onlyOwner {
deprecated = true;
upgradedAddress = _upgradedAddress;
Deprecate(_upgradedAddress);
}
// deprecate current contract if favour of a new one
function totalSupply() public constant returns (uint) {
if (deprecated) {
return StandardToken(upgradedAddress).totalSupply();
} else {
return _totalSupply;
}
}
function setParams(uint newBasisPoints, uint newMaxFee) public onlyOwner {
// Ensure transparency by hardcoding limit beyond which fees can never be added
require(newBasisPoints < 20);
require(newMaxFee < 50);
basisPointsRate = newBasisPoints;
maximumFee = newMaxFee.mul(10**decimals);
Params(basisPointsRate, maximumFee);
}
// Called when contract is deprecated
event Deprecate(address newAddress);
// Called if contract ever adds fees
event Params(uint feeBasisPoints, uint maxFee);
}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":"_upgradedAddress","type":"address"}],"name":"deprecate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"deprecated","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","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":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"upgradedAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balances","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"maximumFee","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowed","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"who","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newBasisPoints","type":"uint256"},{"name":"newMaxFee","type":"uint256"}],"name":"setParams","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"basisPointsRate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"MAX_UINT","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_initialSupply","type":"uint256"},{"name":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_decimals","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newAddress","type":"address"}],"name":"Deprecate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"feeBasisPoints","type":"uint256"},{"indexed":false,"name":"maxFee","type":"uint256"}],"name":"Params","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"},{"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"}]Contract Creation Code
60606040526000600355600060045534156200001a57600080fd5b6040516200114c3803806200114c833981016040528080519190602001805182019190602001805182019190602001805160008054600160a060020a03191633600160a060020a0316179055600186905591506006905083805162000084929160200190620000cf565b5060078280516200009a929160200190620000cf565b50600855505060008054600160a060020a03168152600260205260409020556009805460a060020a60ff021916905562000174565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200011257805160ff191683800117855562000142565b8280016001018555821562000142579182015b828111156200014257825182559160200191906001019062000125565b506200015092915062000154565b5090565b6200017191905b808211156200015057600081556001016200015b565b90565b610fc880620001846000396000f300606060405236156101015763ffffffff60e060020a60003504166306fdde0381146101065780630753c30c14610190578063095ea7b3146101b15780630e136b19146101d357806318160ddd146101fa57806323b872dd1461021f57806326976e3f1461024757806327e235e314610276578063313ce5671461029557806335390714146102a85780633eaaf86b146102bb5780635c658165146102ce57806370a08231146102f35780638da5cb5b1461031257806395d89b4114610325578063a9059cbb14610338578063c0324c771461035a578063dd62ed3e14610373578063dd644f7214610398578063e5b5019a146103ab578063f2fde38b146103be575b600080fd5b341561011157600080fd5b6101196103dd565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561015557808201518382015260200161013d565b50505050905090810190601f1680156101825780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561019b57600080fd5b6101af600160a060020a036004351661047b565b005b34156101bc57600080fd5b6101af600160a060020a036004351660243561051e565b34156101de57600080fd5b6101e66105cb565b604051901515815260200160405180910390f35b341561020557600080fd5b61020d6105db565b60405190815260200160405180910390f35b341561022a57600080fd5b6101af600160a060020a0360043581169060243516604435610662565b341561025257600080fd5b61025a6106e9565b604051600160a060020a03909116815260200160405180910390f35b341561028157600080fd5b61020d600160a060020a03600435166106f8565b34156102a057600080fd5b61020d61070a565b34156102b357600080fd5b61020d610710565b34156102c657600080fd5b61020d610716565b34156102d957600080fd5b61020d600160a060020a036004358116906024351661071c565b34156102fe57600080fd5b61020d600160a060020a0360043516610739565b341561031d57600080fd5b61025a6107da565b341561033057600080fd5b6101196107e9565b341561034357600080fd5b6101af600160a060020a0360043516602435610854565b341561036557600080fd5b6101af6004356024356108f0565b341561037e57600080fd5b61020d600160a060020a0360043581169060243516610986565b34156103a357600080fd5b61020d610a31565b34156103b657600080fd5b61020d610a37565b34156103c957600080fd5b6101af600160a060020a0360043516610a3d565b60068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104735780601f1061044857610100808354040283529160200191610473565b820191906000526020600020905b81548152906001019060200180831161045657829003601f168201915b505050505081565b60005433600160a060020a0390811691161461049657600080fd5b6009805460a060020a74ff0000000000000000000000000000000000000000199091161773ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790557fcc358699805e9a8b7f77b522628c7cb9abd07d9efb86b6fb616af1609036a99e81604051600160a060020a03909116815260200160405180910390a150565b6040604436101561052e57600080fd5b60095460a060020a900460ff16156105bc57600954600160a060020a031663aee92d3333858560405160e060020a63ffffffff8616028152600160a060020a0393841660048201529190921660248201526044810191909152606401600060405180830381600087803b15156105a357600080fd5b6102c65a03f115156105b457600080fd5b5050506105c6565b6105c68383610a93565b505050565b60095460a060020a900460ff1681565b60095460009060a060020a900460ff161561065a57600954600160a060020a03166318160ddd6000604051602001526040518163ffffffff1660e060020a028152600401602060405180830381600087803b151561063857600080fd5b6102c65a03f1151561064957600080fd5b50505060405180519050905061065f565b506001545b90565b60095460a060020a900460ff16156106de57600954600160a060020a0316638b477adb3385858560405160e060020a63ffffffff8716028152600160a060020a0394851660048201529284166024840152921660448201526064810191909152608401600060405180830381600087803b15156105a357600080fd5b6105c6838383610b45565b600954600160a060020a031681565b60026020526000908152604090205481565b60085481565b60045481565b60015481565b600560209081526000928352604080842090915290825290205481565b60095460009060a060020a900460ff16156107c957600954600160a060020a03166370a082318360006040516020015260405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b15156107a757600080fd5b6102c65a03f115156107b857600080fd5b5050506040518051905090506107d5565b6107d282610d44565b90505b919050565b600054600160a060020a031681565b60078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104735780601f1061044857610100808354040283529160200191610473565b60095460a060020a900460ff16156108e257600954600160a060020a0316636e18980a33848460405160e060020a63ffffffff8616028152600160a060020a0393841660048201529190921660248201526044810191909152606401600060405180830381600087803b15156108c957600080fd5b6102c65a03f115156108da57600080fd5b5050506108ec565b6108ec8282610d5f565b5050565b60005433600160a060020a0390811691161461090b57600080fd5b6014821061091857600080fd5b6032811061092557600080fd5b6003829055600854610941908290600a0a63ffffffff610ee316565b60048190556003547fb044a1e409eac5c48e5af22d4af52670dd1a99059537a78b31b48c6500a6354e9160405191825260208201526040908101905180910390a15050565b60095460009060a060020a900460ff1615610a1e57600954600160a060020a031663dd62ed3e848460006040516020015260405160e060020a63ffffffff8516028152600160a060020a03928316600482015291166024820152604401602060405180830381600087803b15156109fc57600080fd5b6102c65a03f11515610a0d57600080fd5b505050604051805190509050610a2b565b610a288383610f19565b90505b92915050565b60035481565b60001981565b60005433600160a060020a03908116911614610a5857600080fd5b600160a060020a03811615610a90576000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b60406044361015610aa357600080fd5b8115801590610ad65750600160a060020a0333811660009081526005602090815260408083209387168352929052205415155b15610ae057600080fd5b600160a060020a03338116600081815260056020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a3505050565b6000808060606064361015610b5957600080fd5b600160a060020a0380881660009081526005602090815260408083203390941683529290522054600354909450610bab9061271090610b9f90889063ffffffff610ee316565b9063ffffffff610f4416565b9250600454831115610bbd5760045492505b600019841015610bff57610bd7848663ffffffff610f5b16565b600160a060020a03808916600090815260056020908152604080832033909416835292905220555b610c0f858463ffffffff610f5b16565b600160a060020a038816600090815260026020526040902054909250610c3b908663ffffffff610f5b16565b600160a060020a038089166000908152600260205260408082209390935590881681522054610c70908363ffffffff610f6d16565b600160a060020a038716600090815260026020526040812091909155831115610d065760008054600160a060020a0316815260026020526040902054610cbc908463ffffffff610f6d16565b60008054600160a060020a0390811682526002602052604080832093909355905481169190891690600080516020610f7d8339815191529086905190815260200160405180910390a35b85600160a060020a031687600160a060020a0316600080516020610f7d8339815191528460405190815260200160405180910390a350505050505050565b600160a060020a031660009081526002602052604090205490565b60008060406044361015610d7257600080fd5b610d8d612710610b9f60035487610ee390919063ffffffff16565b9250600454831115610d9f5760045492505b610daf848463ffffffff610f5b16565b600160a060020a033316600090815260026020526040902054909250610ddb908563ffffffff610f5b16565b600160a060020a033381166000908152600260205260408082209390935590871681522054610e10908363ffffffff610f6d16565b600160a060020a038616600090815260026020526040812091909155831115610ea75760008054600160a060020a0316815260026020526040902054610e5c908463ffffffff610f6d16565b60008054600160a060020a039081168252600260205260408083209390935590548116913390911690600080516020610f7d8339815191529086905190815260200160405180910390a35b84600160a060020a031633600160a060020a0316600080516020610f7d8339815191528460405190815260200160405180910390a35050505050565b600080831515610ef65760009150610f12565b50828202828482811515610f0657fe5b0414610f0e57fe5b8091505b5092915050565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205490565b6000808284811515610f5257fe5b04949350505050565b600082821115610f6757fe5b50900390565b600082820183811015610f0e57fe00ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820c648abfc46c0fdf6c4c8742ef68846df7173de56a623117df813f7831966ef8f0029000000000000000000000000000000000000000000069e10de76676d08000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000e506978656c6d6f6e20546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034d4f4e0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x606060405236156101015763ffffffff60e060020a60003504166306fdde0381146101065780630753c30c14610190578063095ea7b3146101b15780630e136b19146101d357806318160ddd146101fa57806323b872dd1461021f57806326976e3f1461024757806327e235e314610276578063313ce5671461029557806335390714146102a85780633eaaf86b146102bb5780635c658165146102ce57806370a08231146102f35780638da5cb5b1461031257806395d89b4114610325578063a9059cbb14610338578063c0324c771461035a578063dd62ed3e14610373578063dd644f7214610398578063e5b5019a146103ab578063f2fde38b146103be575b600080fd5b341561011157600080fd5b6101196103dd565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561015557808201518382015260200161013d565b50505050905090810190601f1680156101825780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561019b57600080fd5b6101af600160a060020a036004351661047b565b005b34156101bc57600080fd5b6101af600160a060020a036004351660243561051e565b34156101de57600080fd5b6101e66105cb565b604051901515815260200160405180910390f35b341561020557600080fd5b61020d6105db565b60405190815260200160405180910390f35b341561022a57600080fd5b6101af600160a060020a0360043581169060243516604435610662565b341561025257600080fd5b61025a6106e9565b604051600160a060020a03909116815260200160405180910390f35b341561028157600080fd5b61020d600160a060020a03600435166106f8565b34156102a057600080fd5b61020d61070a565b34156102b357600080fd5b61020d610710565b34156102c657600080fd5b61020d610716565b34156102d957600080fd5b61020d600160a060020a036004358116906024351661071c565b34156102fe57600080fd5b61020d600160a060020a0360043516610739565b341561031d57600080fd5b61025a6107da565b341561033057600080fd5b6101196107e9565b341561034357600080fd5b6101af600160a060020a0360043516602435610854565b341561036557600080fd5b6101af6004356024356108f0565b341561037e57600080fd5b61020d600160a060020a0360043581169060243516610986565b34156103a357600080fd5b61020d610a31565b34156103b657600080fd5b61020d610a37565b34156103c957600080fd5b6101af600160a060020a0360043516610a3d565b60068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104735780601f1061044857610100808354040283529160200191610473565b820191906000526020600020905b81548152906001019060200180831161045657829003601f168201915b505050505081565b60005433600160a060020a0390811691161461049657600080fd5b6009805460a060020a74ff0000000000000000000000000000000000000000199091161773ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790557fcc358699805e9a8b7f77b522628c7cb9abd07d9efb86b6fb616af1609036a99e81604051600160a060020a03909116815260200160405180910390a150565b6040604436101561052e57600080fd5b60095460a060020a900460ff16156105bc57600954600160a060020a031663aee92d3333858560405160e060020a63ffffffff8616028152600160a060020a0393841660048201529190921660248201526044810191909152606401600060405180830381600087803b15156105a357600080fd5b6102c65a03f115156105b457600080fd5b5050506105c6565b6105c68383610a93565b505050565b60095460a060020a900460ff1681565b60095460009060a060020a900460ff161561065a57600954600160a060020a03166318160ddd6000604051602001526040518163ffffffff1660e060020a028152600401602060405180830381600087803b151561063857600080fd5b6102c65a03f1151561064957600080fd5b50505060405180519050905061065f565b506001545b90565b60095460a060020a900460ff16156106de57600954600160a060020a0316638b477adb3385858560405160e060020a63ffffffff8716028152600160a060020a0394851660048201529284166024840152921660448201526064810191909152608401600060405180830381600087803b15156105a357600080fd5b6105c6838383610b45565b600954600160a060020a031681565b60026020526000908152604090205481565b60085481565b60045481565b60015481565b600560209081526000928352604080842090915290825290205481565b60095460009060a060020a900460ff16156107c957600954600160a060020a03166370a082318360006040516020015260405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b15156107a757600080fd5b6102c65a03f115156107b857600080fd5b5050506040518051905090506107d5565b6107d282610d44565b90505b919050565b600054600160a060020a031681565b60078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104735780601f1061044857610100808354040283529160200191610473565b60095460a060020a900460ff16156108e257600954600160a060020a0316636e18980a33848460405160e060020a63ffffffff8616028152600160a060020a0393841660048201529190921660248201526044810191909152606401600060405180830381600087803b15156108c957600080fd5b6102c65a03f115156108da57600080fd5b5050506108ec565b6108ec8282610d5f565b5050565b60005433600160a060020a0390811691161461090b57600080fd5b6014821061091857600080fd5b6032811061092557600080fd5b6003829055600854610941908290600a0a63ffffffff610ee316565b60048190556003547fb044a1e409eac5c48e5af22d4af52670dd1a99059537a78b31b48c6500a6354e9160405191825260208201526040908101905180910390a15050565b60095460009060a060020a900460ff1615610a1e57600954600160a060020a031663dd62ed3e848460006040516020015260405160e060020a63ffffffff8516028152600160a060020a03928316600482015291166024820152604401602060405180830381600087803b15156109fc57600080fd5b6102c65a03f11515610a0d57600080fd5b505050604051805190509050610a2b565b610a288383610f19565b90505b92915050565b60035481565b60001981565b60005433600160a060020a03908116911614610a5857600080fd5b600160a060020a03811615610a90576000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b60406044361015610aa357600080fd5b8115801590610ad65750600160a060020a0333811660009081526005602090815260408083209387168352929052205415155b15610ae057600080fd5b600160a060020a03338116600081815260056020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a3505050565b6000808060606064361015610b5957600080fd5b600160a060020a0380881660009081526005602090815260408083203390941683529290522054600354909450610bab9061271090610b9f90889063ffffffff610ee316565b9063ffffffff610f4416565b9250600454831115610bbd5760045492505b600019841015610bff57610bd7848663ffffffff610f5b16565b600160a060020a03808916600090815260056020908152604080832033909416835292905220555b610c0f858463ffffffff610f5b16565b600160a060020a038816600090815260026020526040902054909250610c3b908663ffffffff610f5b16565b600160a060020a038089166000908152600260205260408082209390935590881681522054610c70908363ffffffff610f6d16565b600160a060020a038716600090815260026020526040812091909155831115610d065760008054600160a060020a0316815260026020526040902054610cbc908463ffffffff610f6d16565b60008054600160a060020a0390811682526002602052604080832093909355905481169190891690600080516020610f7d8339815191529086905190815260200160405180910390a35b85600160a060020a031687600160a060020a0316600080516020610f7d8339815191528460405190815260200160405180910390a350505050505050565b600160a060020a031660009081526002602052604090205490565b60008060406044361015610d7257600080fd5b610d8d612710610b9f60035487610ee390919063ffffffff16565b9250600454831115610d9f5760045492505b610daf848463ffffffff610f5b16565b600160a060020a033316600090815260026020526040902054909250610ddb908563ffffffff610f5b16565b600160a060020a033381166000908152600260205260408082209390935590871681522054610e10908363ffffffff610f6d16565b600160a060020a038616600090815260026020526040812091909155831115610ea75760008054600160a060020a0316815260026020526040902054610e5c908463ffffffff610f6d16565b60008054600160a060020a039081168252600260205260408083209390935590548116913390911690600080516020610f7d8339815191529086905190815260200160405180910390a35b84600160a060020a031633600160a060020a0316600080516020610f7d8339815191528460405190815260200160405180910390a35050505050565b600080831515610ef65760009150610f12565b50828202828482811515610f0657fe5b0414610f0e57fe5b8091505b5092915050565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205490565b6000808284811515610f5257fe5b04949350505050565b600082821115610f6757fe5b50900390565b600082820183811015610f0e57fe00ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820c648abfc46c0fdf6c4c8742ef68846df7173de56a623117df813f7831966ef8f0029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000069e10de76676d08000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000e506978656c6d6f6e20546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034d4f4e0000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _initialSupply (uint256): 8000000000000000000000000
Arg [1] : _name (string): Pixelmon Token
Arg [2] : _symbol (string): MON
Arg [3] : _decimals (uint256): 18
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000069e10de76676d08000000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [5] : 506978656c6d6f6e20546f6b656e000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 4d4f4e0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
8597:3452:0:-;;;;;;;;-1:-1:-1;;;8597:3452:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8646:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:2;8:100;;;99:1;94:3;90;84:5;71:3;;;64:6;52:2;45:3;8:100;;;12:14;3:109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10998:181:0;;;;;;;;;;-1:-1:-1;;;;;10998:181:0;;;;;;;10252:302;;;;;;;;;;-1:-1:-1;;;;;10252:302:0;;;;;;;8762:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11245:218;;;;;;;;;;;;;;;;;;;;;;;;;;;9531:307;;;;;;;;;;-1:-1:-1;;;;;9531:307:0;;;;;;;;;;;;8725:30;;;;;;;;;;;;;;;-1:-1:-1;;;;;8725:30:0;;;;;;;;;;;;;;3600:40;;;;;;;;;;-1:-1:-1;;;;;3600:40:0;;;;;8698:20;;;;;;;;;;;;3766:26;;;;;;;;;;;;2702:24;;;;;;;;;;;;5390:61;;;;;;;;;;-1:-1:-1;;;;;5390:61:0;;;;;;;;;;9923:244;;;;;;;;;;-1:-1:-1;;;;;9923:244:0;;;;;1811:20;;;;;;;;;;;;8671;;;;;;;;;;;;9180:266;;;;;;;;;;-1:-1:-1;;;;;9180:266:0;;;;;;;11475:387;;;;;;;;;;;;;;;;10639:293;;;;;;;;;;-1:-1:-1;;;;;10639:293:0;;;;;;;;;;3728:31;;;;;;;;;;;;5460:42;;;;;;;;;;;;2383:151;;;;;;;;;;-1:-1:-1;;;;;2383:151:0;;;;;8646:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;10998:181::-;2183:5;;2169:10;-1:-1:-1;;;;;2169:19:0;;;2183:5;;2169:19;2161:28;;;;;;11071:10;:17;;-1:-1:-1;;;;;11071:17:0;;;;-1:-1:-1;;11099:34:0;-1:-1:-1;;;;;11099:34:0;;;;;11144:27;11099:34;11144:27;;-1:-1:-1;;;;;11144:27:0;;;;;;;;;;;;;;10998:181;:::o;10252:302::-;10323:6;3945:8;3927;:26;3925:29;3917:38;;;;;;10346:10;;-1:-1:-1;;;10346:10:0;;;;10342:205;;;10402:15;;-1:-1:-1;;;;;10402:15:0;10380:54;10435:10;10447:8;10457:6;10380:84;;-1:-1:-1;;;10380:84:0;;;;;;-1:-1:-1;;;;;10380:84:0;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10380:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10373:91;;10342:205;10504:31;10518:8;10528:6;10504:13;:31::i;:::-;10252:302;;;:::o;8762:22::-;;;-1:-1:-1;;;8762:22:0;;;;;:::o;11245:218::-;11314:10;;11293:4;;-1:-1:-1;;;11314:10:0;;;;11310:146;;;11362:15;;-1:-1:-1;;;;;11362:15:0;11348:42;11362:15;11348:44;;;;;;;;;;-1:-1:-1;;;11348:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11341:51;;;;11310:146;-1:-1:-1;11432:12:0;;11310:146;11245:218;:::o;9531:307::-;9616:10;;-1:-1:-1;;;9616:10:0;;;;9612:219;;;9672:15;;-1:-1:-1;;;;;9672:15:0;9650:59;9710:10;9722:5;9729:3;9734:6;9650:91;;-1:-1:-1;;;9650:91:0;;;;;;-1:-1:-1;;;;;9650:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9650:91:0;;;;;;;;;;;;;;;;;9612:219;9781:38;9800:5;9807:3;9812:6;9781:18;:38::i;8725:30::-;;;-1:-1:-1;;;;;8725:30:0;;:::o;3600:40::-;;;;;;;;;;;;;:::o;8698:20::-;;;;:::o;3766:26::-;;;;:::o;2702:24::-;;;;:::o;5390:61::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;9923:244::-;10001:10;;9980:4;;-1:-1:-1;;;10001:10:0;;;;9997:163;;;10057:15;;-1:-1:-1;;;;;10057:15:0;10035:48;10084:3;10057:15;10035:53;;;;;;;-1:-1:-1;;;10035:53:0;;;;;;-1:-1:-1;;;;;10035:53:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10028:60;;;;9997:163;10128:20;10144:3;10128:15;:20::i;:::-;10121:27;;9997:163;9923:244;;;:::o;1811:20::-;;;-1:-1:-1;;;;;1811:20:0;;:::o;8671:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9180:266;9246:10;;-1:-1:-1;;;9246:10:0;;;;9242:197;;;9302:15;;-1:-1:-1;;;;;9302:15:0;9280:55;9336:10;9348:3;9353:6;9280:80;;-1:-1:-1;;;9280:80:0;;;;;;-1:-1:-1;;;;;9280:80:0;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9280:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9273:87;;9242:197;9400:27;9415:3;9420:6;9400:14;:27::i;:::-;9180:266;;:::o;11475:387::-;2183:5;;2169:10;-1:-1:-1;;;;;2169:19:0;;;2183:5;;2169:19;2161:28;;;;;;11673:2;11656:19;;11648:28;;;;;;11707:2;11695:14;;11687:23;;;;;;11723:15;:32;;;11797:8;;11779:27;;:9;;11793:2;:12;11779:27;:13;:27;:::i;:::-;11766:10;:40;;;11826:15;;11819:35;;;;;;;;;;;;;;;;;;;;;;11475:387;;:::o;10639:293::-;10748:10;;10717:14;;-1:-1:-1;;;10748:10:0;;;;10744:181;;;10796:15;;-1:-1:-1;;;;;10796:15:0;10782:40;10823:6;10831:8;10796:15;10782:58;;;;;;;-1:-1:-1;;;10782:58:0;;;;;;-1:-1:-1;;;;;10782:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10775:65;;;;10744:181;10880:33;10896:6;10904:8;10880:15;:33::i;:::-;10873:40;;10744:181;10639:293;;;;:::o;3728:31::-;;;;:::o;5460:42::-;-1:-1:-1;;5460:42:0;:::o;2383:151::-;2183:5;;2169:10;-1:-1:-1;;;;;2169:19:0;;;2183:5;;2169:19;2161:28;;;;;;-1:-1:-1;;;;;2460:22:0;;;2456:71;;2499:5;:16;;-1:-1:-1;;2499:16:0;-1:-1:-1;;;;;2499:16:0;;;;;2456:71;2383:151;:::o;6940:573::-;7011:6;3945:8;3927;:26;3925:29;3917:38;;;;;;7351:11;;;;;7350:53;;-1:-1:-1;;;;;;7376:10:0;7368:19;;;;;;:7;:19;;;;;;;;:29;;;;;;;;;;:34;;7350:53;7348:56;7340:65;;;;;;-1:-1:-1;;;;;7426:10:0;7418:19;;;;;;:7;:19;;;;;;;;:29;;;;;;;;;;;;;;:38;;;7467;;7450:6;;7467:38;;;;;;;;;;;;;6940:573;;;:::o;5792:901::-;5897:14;;;5878:6;3945:8;3927;:26;3925:29;3917:38;;;;;;-1:-1:-1;;;;;5914:14:0;;;;;;;:7;:14;;;;;;;;5929:10;5914:26;;;;;;;;;;6134:15;;5914:26;;-1:-1:-1;6122:40:0;;6156:5;;6123:27;;:6;;:27;:10;:27;:::i;:::-;6122:33;:40;:33;:40;:::i;:::-;6111:51;;6183:10;;6177:3;:16;6173:65;;;6216:10;;6210:16;;6173:65;-1:-1:-1;;6252:10:0;:21;6248:105;;;6319:22;:10;6334:6;6319:22;:14;:22;:::i;:::-;-1:-1:-1;;;;;6290:14:0;;;;;;;:7;:14;;;;;;;;6305:10;6290:26;;;;;;;;;:51;6248:105;6381:15;:6;6392:3;6381:15;:10;:15;:::i;:::-;-1:-1:-1;;;;;6425:15:0;;;;;;:8;:15;;;;;;6363:33;;-1:-1:-1;6425:27:0;;6445:6;6425:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;6407:15:0;;;;;;;:8;:15;;;;;;:45;;;;6479:13;;;;;;;:29;;6497:10;6479:29;:17;:29;:::i;:::-;-1:-1:-1;;;;;6463:13:0;;;;;;:8;:13;;;;;:45;;;;6523:7;;6519:124;;;6565:15;6574:5;;-1:-1:-1;;;;;6574:5:0;6565:15;;:8;:15;;;;;;:24;;6585:3;6565:24;:19;:24;:::i;:::-;6547:15;6556:5;;-1:-1:-1;;;;;6556:5:0;;;6547:15;;:8;:15;;;;;;:42;;;;6620:5;;;;;6604:27;;;;-1:-1:-1;;;;;;;;;;;6604:27:0;6627:3;;6604:27;;;;;;;;;;;;;6519:124;6669:3;-1:-1:-1;;;;;6653:32:0;6662:5;-1:-1:-1;;;;;6653:32:0;-1:-1:-1;;;;;;;;;;;6674:10:0;6653:32;;;;;;;;;;;;;;5792:901;;;;;;;:::o;4939:116::-;-1:-1:-1;;;;;5031:16:0;4999:12;5031:16;;;:8;:16;;;;;;;4939:116::o;4148:573::-;4234:8;;4215:6;3945:8;3927;:26;3925:29;3917:38;;;;;;4245:40;4279:5;4246:27;4257:15;;4246:6;:10;;:27;;;;:::i;4245:40::-;4234:51;;4306:10;;4300:3;:16;4296:65;;;4339:10;;4333:16;;4296:65;4389:15;:6;4400:3;4389:15;:10;:15;:::i;:::-;-1:-1:-1;;;;;4447:10:0;4438:20;;;;;:8;:20;;;;;;4371:33;;-1:-1:-1;4438:32:0;;4463:6;4438:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;4424:10:0;4415:20;;;;;;:8;:20;;;;;;:55;;;;4497:13;;;;;;;:29;;4515:10;4497:29;:17;:29;:::i;:::-;-1:-1:-1;;;;;4481:13:0;;;;;;:8;:13;;;;;:45;;;;4541:7;;4537:129;;;4583:15;4592:5;;-1:-1:-1;;;;;4592:5:0;4583:15;;:8;:15;;;;;;:24;;4603:3;4583:24;:19;:24;:::i;:::-;4565:15;4574:5;;-1:-1:-1;;;;;4574:5:0;;;4565:15;;:8;:15;;;;;;:42;;;;4643:5;;;;;4631:10;4622:32;;;;-1:-1:-1;;;;;;;;;;;4622:32:0;4650:3;;4622:32;;;;;;;;;;;;;4537:129;4697:3;-1:-1:-1;;;;;4676:37:0;4685:10;-1:-1:-1;;;;;4676:37:0;-1:-1:-1;;;;;;;;;;;4702:10:0;4676:37;;;;;;;;;;;;;;4148:573;;;;;:::o;795:208::-;853:7;;877:6;;873:47;;;907:1;900:8;;;;873:47;-1:-1:-1;942:5:0;;;946:1;942;:5;965;;;;;;;;:10;958:18;;;;994:1;987:8;;795:208;;;;;;:::o;7846:145::-;-1:-1:-1;;;;;7958:15:0;;;7924:14;7958:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;7846:145::o;1011:288::-;1069:7;1168:9;1184:1;1180;:5;;;;;;;;;1011:288;-1:-1:-1;;;;1011:288:0:o;1307:123::-;1365:7;1392:6;;;;1385:14;;;;-1:-1:-1;1417:5:0;;;1307:123::o;1438:147::-;1496:7;1528:5;;;1551:6;;;;1544:14;;
Swarm Source
bzzr://c648abfc46c0fdf6c4c8742ef68846df7173de56a623117df813f7831966ef8f
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.