Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 2,312 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer | 11074188 | 1959 days ago | IN | 0 ETH | 0.00136416 | ||||
| Transfer | 11074139 | 1959 days ago | IN | 0 ETH | 0.00175026 | ||||
| Transfer | 11037951 | 1964 days ago | IN | 0 ETH | 0.00065998 | ||||
| Transfer | 11035236 | 1965 days ago | IN | 0 ETH | 0.00197764 | ||||
| Transfer | 11035220 | 1965 days ago | IN | 0 ETH | 0.00232461 | ||||
| Transfer | 11026576 | 1966 days ago | IN | 0 ETH | 0.0007252 | ||||
| Transfer | 10918213 | 1983 days ago | IN | 0 ETH | 0.00409817 | ||||
| Transfer | 10917834 | 1983 days ago | IN | 0 ETH | 0.00409938 | ||||
| Transfer | 10874513 | 1990 days ago | IN | 0 ETH | 0.00989466 | ||||
| Transfer | 10864130 | 1991 days ago | IN | 0 ETH | 0.00572121 | ||||
| Transfer | 10788406 | 2003 days ago | IN | 0 ETH | 0.01931417 | ||||
| Transfer | 10481537 | 2050 days ago | IN | 0 ETH | 0.00174476 | ||||
| Transfer | 10449291 | 2055 days ago | IN | 0 ETH | 0.00162304 | ||||
| Transfer | 10443832 | 2056 days ago | IN | 0 ETH | 0.00121728 | ||||
| Transfer | 10442041 | 2056 days ago | IN | 0 ETH | 0.00097382 | ||||
| Transfer | 10438005 | 2057 days ago | IN | 0 ETH | 0.00177843 | ||||
| Transfer | 10437666 | 2057 days ago | IN | 0 ETH | 0.00216746 | ||||
| Transfer | 10431138 | 2058 days ago | IN | 0 ETH | 0.00211143 | ||||
| Transfer | 10431069 | 2058 days ago | IN | 0 ETH | 0.00227861 | ||||
| Transfer | 10431056 | 2058 days ago | IN | 0 ETH | 0.0022791 | ||||
| Transfer | 10417607 | 2060 days ago | IN | 0 ETH | 0.00116409 | ||||
| Transfer | 10416541 | 2060 days ago | IN | 0 ETH | 0.00116081 | ||||
| Transfer | 10416538 | 2060 days ago | IN | 0 ETH | 0.00116047 | ||||
| Transfer | 10406387 | 2062 days ago | IN | 0 ETH | 0.00093829 | ||||
| Transfer | 10406195 | 2062 days ago | IN | 0 ETH | 0.00092299 |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
MyToken
Compiler Version
v0.4.22+commit.4cb486ee
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2019-08-31
*/
pragma solidity >=0.4.22 <0.6.0;
interface tokenRecipient {
function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) external;
}
contract TokenERC20 {
// Public variables of the token
string public name;
string public symbol;
uint8 public decimals = 18;
// 18 decimals is the strongly suggested default, avoid changing it
uint256 public totalSupply;
// This creates an array with all balances
mapping (address => uint256) public balanceOf;
mapping (address => mapping (address => uint256)) public allowance;
// This generates a public event on the blockchain that will notify clients
event Transfer(address indexed from, address indexed to, uint256 value);
// This generates a public event on the blockchain that will notify clients
event Approval(address indexed _owner, address indexed _spender, uint256 _value);
// This notifies clients about the amount burnt
event Burn(address indexed from, uint256 value);
/**
* Constructor function
*
* Initializes contract with initial supply tokens to the creator of the contract
*/
constructor(
uint256 initialSupply,
string memory tokenName,
string memory tokenSymbol
) public {
totalSupply = initialSupply * 10 ** uint256(decimals); // Update total supply with the decimal amount
balanceOf[msg.sender] = totalSupply; // Give the creator all initial tokens
name = tokenName; // Set the name for display purposes
symbol = tokenSymbol; // Set the symbol for display purposes
}
/**
* Internal transfer, only can be called by this contract
*/
function _transfer(address _from, address _to, uint _value) internal {
// Prevent transfer to 0x0 address. Use burn() instead
require(_to != address(0x0));
// Check if the sender has enough
require(balanceOf[_from] >= _value);
// Check for overflows
require(balanceOf[_to] + _value >= balanceOf[_to]);
// Save this for an assertion in the future
uint previousBalances = balanceOf[_from] + balanceOf[_to];
// Subtract from the sender
balanceOf[_from] -= _value;
// Add the same to the recipient
balanceOf[_to] += _value;
emit Transfer(_from, _to, _value);
// Asserts are used to use static analysis to find bugs in your code. They should never fail
assert(balanceOf[_from] + balanceOf[_to] == previousBalances);
}
/**
* Transfer tokens
*
* Send `_value` tokens to `_to` from your account
*
* @param _to The address of the recipient
* @param _value the amount to send
*/
function transfer(address _to, uint256 _value) public returns (bool success) {
_transfer(msg.sender, _to, _value);
return true;
}
/**
* Transfer tokens from other address
*
* Send `_value` tokens to `_to` on behalf of `_from`
*
* @param _from The address of the sender
* @param _to The address of the recipient
* @param _value the amount to send
*/
function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) {
require(_value <= allowance[_from][msg.sender]); // Check allowance
allowance[_from][msg.sender] -= _value;
_transfer(_from, _to, _value);
return true;
}
/**
* Set allowance for other address
*
* Allows `_spender` to spend no more than `_value` tokens on your behalf
*
* @param _spender The address authorized to spend
* @param _value the max amount they can spend
*/
function approve(address _spender, uint256 _value) public
returns (bool success) {
allowance[msg.sender][_spender] = _value;
emit Approval(msg.sender, _spender, _value);
return true;
}
/**
* Set allowance for other address and notify
*
* Allows `_spender` to spend no more than `_value` tokens on your behalf, and then ping the contract about it
*
* @param _spender The address authorized to spend
* @param _value the max amount they can spend
* @param _extraData some extra information to send to the approved contract
*/
function approveAndCall(address _spender, uint256 _value, bytes memory _extraData)
public
returns (bool success) {
tokenRecipient spender = tokenRecipient(_spender);
if (approve(_spender, _value)) {
spender.receiveApproval(msg.sender, _value, address(this), _extraData);
return true;
}
}
/**
* Destroy tokens
*
* Remove `_value` tokens from the system irreversibly
*
* @param _value the amount of money to burn
*/
function burn(uint256 _value) public returns (bool success) {
require(balanceOf[msg.sender] >= _value); // Check if the sender has enough
balanceOf[msg.sender] -= _value; // Subtract from the sender
totalSupply -= _value; // Updates totalSupply
emit Burn(msg.sender, _value);
return true;
}
/**
* Destroy tokens from other account
*
* Remove `_value` tokens from the system irreversibly on behalf of `_from`.
*
* @param _from the address of the sender
* @param _value the amount of money to burn
*/
function burnFrom(address _from, uint256 _value) public returns (bool success) {
require(balanceOf[_from] >= _value); // Check if the targeted balance is enough
require(_value <= allowance[_from][msg.sender]); // Check allowance
balanceOf[_from] -= _value; // Subtract from the targeted balance
allowance[_from][msg.sender] -= _value; // Subtract from the sender's allowance
totalSupply -= _value; // Update totalSupply
emit Burn(_from, _value);
return true;
}
}
contract owned {
address public owner;
event TransferOwnership(address from, address to);
constructor() public {
owner = msg.sender;
}
modifier onlyOwner {
require(msg.sender == owner);
_;
}
function transferOwnership(address newOwner) onlyOwner public {
emit TransferOwnership(owner, newOwner);
owner = newOwner;
}
}
contract MyToken is TokenERC20, owned{
constructor() TokenERC20(2900000000, "YDN", "YDN") public {
emit Transfer(0x0, msg.sender, totalSupply);
}
}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":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[{"name":"success","type":"bool"}],"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":"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":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"from","type":"address"},{"indexed":false,"name":"to","type":"address"}],"name":"TransferOwnership","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"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"}]Contract Creation Code
60806040526002805460ff1916601217905534801561001d57600080fd5b5060408051808201825260038082527f59444e00000000000000000000000000000000000000000000000000000000006020808401828152855180870187528481528083019390935260025460ff16600a0a63acda7d0090810294859055600160a060020a0333166000908152600490935295822093909355835191926100a39261011a565b5080516100b790600190602084019061011a565b505060068054600160a060020a033316600160a060020a031990911681179091556003546040805191825251919350600092507fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef919081900360200190a36101b5565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061015b57805160ff1916838001178555610188565b82800160010185558215610188579182015b8281111561018857825182559160200191906001019061016d565b50610194929150610198565b5090565b6101b291905b80821115610194576000815560010161019e565b90565b610a1b806101c46000396000f3006080604052600436106100cf5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100d4578063095ea7b31461015e57806318160ddd1461019657806323b872dd146101bd578063313ce567146101e757806342966c681461021257806370a082311461022a57806379cc67901461024b5780638da5cb5b1461026f57806395d89b41146102a0578063a9059cbb146102b5578063cae9ca51146102d9578063dd62ed3e14610342578063f2fde38b14610369575b600080fd5b3480156100e057600080fd5b506100e961038c565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561012357818101518382015260200161010b565b50505050905090810190601f1680156101505780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561016a57600080fd5b50610182600160a060020a036004351660243561041a565b604080519115158252519081900360200190f35b3480156101a257600080fd5b506101ab610484565b60408051918252519081900360200190f35b3480156101c957600080fd5b50610182600160a060020a036004358116906024351660443561048a565b3480156101f357600080fd5b506101fc610501565b6040805160ff9092168252519081900360200190f35b34801561021e57600080fd5b5061018260043561050a565b34801561023657600080fd5b506101ab600160a060020a0360043516610594565b34801561025757600080fd5b50610182600160a060020a03600435166024356105a6565b34801561027b57600080fd5b50610284610682565b60408051600160a060020a039092168252519081900360200190f35b3480156102ac57600080fd5b506100e9610691565b3480156102c157600080fd5b50610182600160a060020a03600435166024356106eb565b3480156102e557600080fd5b50604080516020600460443581810135601f8101849004840285018401909552848452610182948235600160a060020a03169460248035953695946064949201919081908401838280828437509497506107019650505050505050565b34801561034e57600080fd5b506101ab600160a060020a0360043581169060243516610838565b34801561037557600080fd5b5061038a600160a060020a0360043516610855565b005b6000805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104125780601f106103e757610100808354040283529160200191610412565b820191906000526020600020905b8154815290600101906020018083116103f557829003601f168201915b505050505081565b600160a060020a03338116600081815260056020908152604080832094871680845294825280832086905580518681529051929493927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60035481565b600160a060020a038084166000908152600560209081526040808320339094168352929052908120548211156104bf57600080fd5b600160a060020a03808516600090815260056020908152604080832033909416835292905220805483900390556104f78484846108e7565b5060019392505050565b60025460ff1681565b600160a060020a03331660009081526004602052604081205482111561052f57600080fd5b600160a060020a03331660008181526004602090815260409182902080548690039055600380548690039055815185815291517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59281900390910190a2506001919050565b60046020526000908152604090205481565b600160a060020a0382166000908152600460205260408120548211156105cb57600080fd5b600160a060020a03808416600090815260056020908152604080832033909416835292905220548211156105fe57600080fd5b600160a060020a038084166000818152600460209081526040808320805488900390556005825280832033909516835293815290839020805486900390556003805486900390558251858152925191927fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5929081900390910190a250600192915050565b600654600160a060020a031681565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104125780601f106103e757610100808354040283529160200191610412565b60006106f83384846108e7565b50600192915050565b60008361070e818561041a565b156108305780600160a060020a0316638f4ffcb1338630876040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b838110156107c45781810151838201526020016107ac565b50505050905090810190601f1680156107f15780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b15801561081357600080fd5b505af1158015610827573d6000803e3d6000fd5b50505050600191505b509392505050565b600560209081526000928352604080842090915290825290205481565b60065433600160a060020a0390811691161461087057600080fd5b60065460408051600160a060020a039283168152918316602083015280517f5c486528ec3e3f0ea91181cff8116f02bfa350e03b8b6f12e00765adbb5af85c9281900390910190a16006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6000600160a060020a03831615156108fe57600080fd5b600160a060020a03841660009081526004602052604090205482111561092357600080fd5b600160a060020a038316600090815260046020526040902054828101101561094a57600080fd5b50600160a060020a038083166000818152600460209081526040808320805495891680855282852080548981039091559486905281548801909155815187815291519390950194927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3600160a060020a038084166000908152600460205260408082205492871682529020540181146109e957fe5b505050505600a165627a7a723058202d9ad2b7482b3a8a649dffe5ec5577669b6b1f1e54c6ec8a55572176e6c322470029
Deployed Bytecode
0x6080604052600436106100cf5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100d4578063095ea7b31461015e57806318160ddd1461019657806323b872dd146101bd578063313ce567146101e757806342966c681461021257806370a082311461022a57806379cc67901461024b5780638da5cb5b1461026f57806395d89b41146102a0578063a9059cbb146102b5578063cae9ca51146102d9578063dd62ed3e14610342578063f2fde38b14610369575b600080fd5b3480156100e057600080fd5b506100e961038c565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561012357818101518382015260200161010b565b50505050905090810190601f1680156101505780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561016a57600080fd5b50610182600160a060020a036004351660243561041a565b604080519115158252519081900360200190f35b3480156101a257600080fd5b506101ab610484565b60408051918252519081900360200190f35b3480156101c957600080fd5b50610182600160a060020a036004358116906024351660443561048a565b3480156101f357600080fd5b506101fc610501565b6040805160ff9092168252519081900360200190f35b34801561021e57600080fd5b5061018260043561050a565b34801561023657600080fd5b506101ab600160a060020a0360043516610594565b34801561025757600080fd5b50610182600160a060020a03600435166024356105a6565b34801561027b57600080fd5b50610284610682565b60408051600160a060020a039092168252519081900360200190f35b3480156102ac57600080fd5b506100e9610691565b3480156102c157600080fd5b50610182600160a060020a03600435166024356106eb565b3480156102e557600080fd5b50604080516020600460443581810135601f8101849004840285018401909552848452610182948235600160a060020a03169460248035953695946064949201919081908401838280828437509497506107019650505050505050565b34801561034e57600080fd5b506101ab600160a060020a0360043581169060243516610838565b34801561037557600080fd5b5061038a600160a060020a0360043516610855565b005b6000805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104125780601f106103e757610100808354040283529160200191610412565b820191906000526020600020905b8154815290600101906020018083116103f557829003601f168201915b505050505081565b600160a060020a03338116600081815260056020908152604080832094871680845294825280832086905580518681529051929493927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60035481565b600160a060020a038084166000908152600560209081526040808320339094168352929052908120548211156104bf57600080fd5b600160a060020a03808516600090815260056020908152604080832033909416835292905220805483900390556104f78484846108e7565b5060019392505050565b60025460ff1681565b600160a060020a03331660009081526004602052604081205482111561052f57600080fd5b600160a060020a03331660008181526004602090815260409182902080548690039055600380548690039055815185815291517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59281900390910190a2506001919050565b60046020526000908152604090205481565b600160a060020a0382166000908152600460205260408120548211156105cb57600080fd5b600160a060020a03808416600090815260056020908152604080832033909416835292905220548211156105fe57600080fd5b600160a060020a038084166000818152600460209081526040808320805488900390556005825280832033909516835293815290839020805486900390556003805486900390558251858152925191927fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5929081900390910190a250600192915050565b600654600160a060020a031681565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104125780601f106103e757610100808354040283529160200191610412565b60006106f83384846108e7565b50600192915050565b60008361070e818561041a565b156108305780600160a060020a0316638f4ffcb1338630876040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b838110156107c45781810151838201526020016107ac565b50505050905090810190601f1680156107f15780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b15801561081357600080fd5b505af1158015610827573d6000803e3d6000fd5b50505050600191505b509392505050565b600560209081526000928352604080842090915290825290205481565b60065433600160a060020a0390811691161461087057600080fd5b60065460408051600160a060020a039283168152918316602083015280517f5c486528ec3e3f0ea91181cff8116f02bfa350e03b8b6f12e00765adbb5af85c9281900390910190a16006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6000600160a060020a03831615156108fe57600080fd5b600160a060020a03841660009081526004602052604090205482111561092357600080fd5b600160a060020a038316600090815260046020526040902054828101101561094a57600080fd5b50600160a060020a038083166000818152600460209081526040808320805495891680855282852080548981039091559486905281548801909155815187815291519390950194927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3600160a060020a038084166000908152600460205260408082205492871682529020540181146109e957fe5b505050505600a165627a7a723058202d9ad2b7482b3a8a649dffe5ec5577669b6b1f1e54c6ec8a55572176e6c322470029
Deployed Bytecode Sourcemap
6723:169:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;241:18;;8:9:-1;5:2;;;30:1;27;20:12;5:2;241:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;241:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3890:225;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3890:225:0;-1:-1:-1;;;;;3890:225:0;;;;;;;;;;;;;;;;;;;;;;;;;399:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;399:26:0;;;;;;;;;;;;;;;;;;;;3325:296;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3325:296:0;-1:-1:-1;;;;;3325:296:0;;;;;;;;;;;;293:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;293:26:0;;;;;;;;;;;;;;;;;;;;;;;5052:374;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5052:374:0;;;;;482:45;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;482:45:0;-1:-1:-1;;;;;482:45:0;;;;;5689:611;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5689:611:0;-1:-1:-1;;;;;5689:611:0;;;;;;;6329:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6329:20:0;;;;;;;;-1:-1:-1;;;;;6329:20:0;;;;;;;;;;;;;;266;;8:9:-1;5:2;;;30:1;27;20:12;5:2;266:20:0;;;;2893:152;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2893:152:0;-1:-1:-1;;;;;2893:152:0;;;;;;;4514:363;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4514:363:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;4514:363:0;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4514:363:0;;-1:-1:-1;4514:363:0;;-1:-1:-1;;;;;;;4514:363:0;534:66;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;534:66:0;-1:-1:-1;;;;;534:66:0;;;;;;;;;;6568:148;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6568:148:0;-1:-1:-1;;;;;6568:148:0;;;;;;;241:18;;;;;;;;;;;;;;;-1:-1:-1;;241:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3890:225::-;-1:-1:-1;;;;;4001:10:0;3991:21;;3966:12;3991:21;;;:9;:21;;;;;;;;:31;;;;;;;;;;;;:40;;;4047:38;;;;;;;3966:12;;3991:31;:21;4047:38;;;;;;;;;;;-1:-1:-1;4103:4:0;3890:225;;;;:::o;399:26::-;;;;:::o;3325:296::-;-1:-1:-1;;;;;3450:16:0;;;3407:12;3450:16;;;:9;:16;;;;;;;;3467:10;3450:28;;;;;;;;;;;;3440:38;;;3432:47;;;;;;-1:-1:-1;;;;;3513:16:0;;;;;;;:9;:16;;;;;;;;3530:10;3513:28;;;;;;;;;:38;;;;;;;3562:29;3523:5;3579:3;3545:6;3562:9;:29::i;:::-;-1:-1:-1;3609:4:0;3325:296;;;;;:::o;293:26::-;;;;;;:::o;5052:374::-;-1:-1:-1;;;;;5141:10:0;5131:21;5098:12;5131:21;;;:9;:21;;;;;;:31;-1:-1:-1;5131:31:0;5123:40;;;;;;-1:-1:-1;;;;;5220:10:0;5210:21;;;;;:9;:21;;;;;;;;;:31;;;;;;;5291:11;:21;;;;;;;5372:24;;;;;;;;;;;;;;;;;-1:-1:-1;5414:4:0;5052:374;;;:::o;482:45::-;;;;;;;;;;;;;:::o;5689:611::-;-1:-1:-1;;;;;5787:16:0;;5754:12;5787:16;;;:9;:16;;;;;;:26;-1:-1:-1;5787:26:0;5779:35;;;;;;-1:-1:-1;;;;;5901:16:0;;;;;;;:9;:16;;;;;;;;5918:10;5901:28;;;;;;;;;;5891:38;;;5883:47;;;;;;-1:-1:-1;;;;;5963:16:0;;;;;;;:9;:16;;;;;;;;:26;;;;;;;6062:9;:16;;;;;6079:10;6062:28;;;;;;;;;;;;:38;;;;;;;6163:11;:21;;;;;;;6251:19;;;;;;;5963:16;;6251:19;;;;;;;;;;;-1:-1:-1;6288:4:0;5689:611;;;;:::o;6329:20::-;;;-1:-1:-1;;;;;6329:20:0;;:::o;266:::-;;;;;;;;;;;;;;;-1:-1:-1;;266:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2893:152;2956:12;2981:34;2991:10;3003:3;3008:6;2981:9;:34::i;:::-;-1:-1:-1;3033:4:0;2893:152;;;;:::o;4514:363::-;4631:12;4696:8;4720:25;4696:8;4738:6;4720:7;:25::i;:::-;4716:154;;;4762:7;-1:-1:-1;;;;;4762:23:0;;4786:10;4798:6;4814:4;4821:10;4762:70;;;;;;;;;;;;;-1:-1:-1;;;;;4762:70:0;-1:-1:-1;;;;;4762:70:0;;;;;;;;;;;-1:-1:-1;;;;;4762:70:0;-1:-1:-1;;;;;4762:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;4762:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4762:70:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;4762:70:0;;;;4854:4;4847:11;;4716:154;4514:363;;;;;;:::o;534:66::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;6568:148::-;6534:5;;6520:10;-1:-1:-1;;;;;6520:19:0;;;6534:5;;6520:19;6512:28;;;;;;6665:5;;6647:34;;;-1:-1:-1;;;;;6665:5:0;;;6647:34;;;;;;;;;;;;;;;;;;;;;6692:5;:16;;-1:-1:-1;;6692:16:0;-1:-1:-1;;;;;6692:16:0;;;;;;;;;;6568:148::o;1830:852::-;2248:21;-1:-1:-1;;;;;1982:19:0;;;;1974:28;;;;;;-1:-1:-1;;;;;2064:16:0;;;;;;:9;:16;;;;;;:26;-1:-1:-1;2064:26:0;2056:35;;;;;;-1:-1:-1;;;;;2169:14:0;;;;;;:9;:14;;;;;;2142:23;;;:41;;2134:50;;;;;;-1:-1:-1;;;;;;2291:14:0;;;;;;;:9;:14;;;;;;;;;;2272:16;;;;;;;;;;;2353:26;;;;;;2432:14;;;;:24;;;;;;;2472:28;;;;;;;2272:33;;;;;:16;2472:28;;;;;;;;;;;-1:-1:-1;;;;;2639:14:0;;;;;;;:9;:14;;;;;;;2620:16;;;;;;;;:33;:53;;2613:61;;;;1830:852;;;;:::o
Swarm Source
bzzr://2d9ad2b7482b3a8a649dffe5ec5577669b6b1f1e54c6ec8a55572176e6c32247
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.