Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 324 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 22040931 | 382 days ago | IN | 0 ETH | 0.00004175 | ||||
| Transfer | 22040652 | 382 days ago | IN | 0 ETH | 0.00004346 | ||||
| Approve | 20851107 | 548 days ago | IN | 0 ETH | 0.00014701 | ||||
| Approve | 20015588 | 664 days ago | IN | 0 ETH | 0.00033044 | ||||
| Transfer | 20015548 | 664 days ago | IN | 0 ETH | 0.00031539 | ||||
| Approve | 16383492 | 1174 days ago | IN | 0 ETH | 0.00108446 | ||||
| Approve | 12369771 | 1791 days ago | IN | 0 ETH | 0.00245909 | ||||
| Approve | 11948367 | 1856 days ago | IN | 0 ETH | 0.00372103 | ||||
| Approve | 11696035 | 1894 days ago | IN | 0 ETH | 0.00209529 | ||||
| Transfer | 11696001 | 1894 days ago | IN | 0 ETH | 0.0010736 | ||||
| Approve | 11492283 | 1926 days ago | IN | 0 ETH | 0.00228976 | ||||
| Approve | 11490060 | 1926 days ago | IN | 0 ETH | 0.00132894 | ||||
| Transfer | 11489958 | 1926 days ago | IN | 0 ETH | 0.00098097 | ||||
| Approve | 11468191 | 1929 days ago | IN | 0 ETH | 0.00584733 | ||||
| Transfer | 11468124 | 1929 days ago | IN | 0 ETH | 0.00226011 | ||||
| Approve | 11458826 | 1931 days ago | IN | 0 ETH | 0.00256928 | ||||
| Approve | 11434323 | 1935 days ago | IN | 0 ETH | 0.00075294 | ||||
| Approve | 11434307 | 1935 days ago | IN | 0 ETH | 0.00164456 | ||||
| Approve | 11393054 | 1941 days ago | IN | 0 ETH | 0.00101885 | ||||
| Transfer | 11239078 | 1965 days ago | IN | 0 ETH | 0.00180332 | ||||
| Approve | 11239036 | 1965 days ago | IN | 0 ETH | 0.00040603 | ||||
| Approve | 11239036 | 1965 days ago | IN | 0 ETH | 0.00071665 | ||||
| Approve | 11186356 | 1973 days ago | IN | 0 ETH | 0.00067775 | ||||
| Transfer | 11146366 | 1979 days ago | IN | 0 ETH | 0.00200216 | ||||
| Approve | 11133508 | 1981 days ago | IN | 0 ETH | 0.001377 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
UniDAppToken
Compiler Version
v0.4.24+commit.e67f0147
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2020-09-15
*/
pragma solidity ^0.4.24;
/**
* @title SafeMath
* @dev Math operations with safety checks that throw on error
*/
library SafeMath {
/**
* @dev Multiplies two numbers, throws on overflow.
*/
function mul(uint256 _a, uint256 _b) internal pure returns (uint256 c) {
// Gas optimization: this is cheaper than asserting '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;
}
c = _a * _b;
assert(c / _a == _b);
return c;
}
/**
* @dev Integer division of two numbers, truncating the quotient.
*/
function div(uint256 _a, uint256 _b) internal pure returns (uint256) {
// assert(_b > 0); // Solidity automatically throws when dividing by 0
// uint256 c = _a / _b;
// assert(_a == _b * c + _a % _b); // There is no case in which this doesn't hold
return _a / _b;
}
/**
* @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).
*/
function sub(uint256 _a, uint256 _b) internal pure returns (uint256) {
assert(_b <= _a);
return _a - _b;
}
/**
* @dev Adds two numbers, throws on overflow.
*/
function add(uint256 _a, uint256 _b) internal pure returns (uint256 c) {
c = _a + _b;
assert(c >= _a);
return c;
}
}
/**
* @title ERC20Basic
* @dev Simpler version of ERC20 interface
* See https://github.com/ethereum/EIPs/issues/179
*/
contract ERC20Basic {
function totalSupply() public view returns (uint256);
function balanceOf(address _who) public view returns (uint256);
function transfer(address _to, uint256 _value) public returns (bool);
event Transfer(address indexed from, address indexed to, uint256 value);
}
/**
* @title Basic token
* @dev Basic version of StandardToken, with no allowances.
*/
contract BasicToken is ERC20Basic {
using SafeMath for uint256;
mapping(address => uint256) internal balances;
uint256 internal totalSupply_;
/**
* @dev Total number of tokens in existence
*/
function totalSupply() public view returns (uint256) {
return totalSupply_;
}
/**
* @dev Transfer token for a specified address
* @param _to The address to transfer to.
* @param _value The amount to be transferred.
*/
function transfer(address _to, uint256 _value) public returns (bool) {
require(_value <= balances[msg.sender]);
require(_to != address(0));
balances[msg.sender] = balances[msg.sender].sub(_value);
balances[_to] = balances[_to].add(_value);
emit Transfer(msg.sender, _to, _value);
return true;
}
/**
* @dev Gets the balance of the specified address.
* @param _owner The address to query the the balance of.
* @return An uint256 representing the amount owned by the passed address.
*/
function balanceOf(address _owner) public view returns (uint256) {
return balances[_owner];
}
}
/**
* @title ERC20 interface
* @dev see https://github.com/ethereum/EIPs/issues/20
*/
contract ERC20 is ERC20Basic {
function allowance(address _owner, address _spender)
public view returns (uint256);
function transferFrom(address _from, address _to, uint256 _value)
public returns (bool);
function approve(address _spender, uint256 _value) public returns (bool);
event Approval(
address indexed owner,
address indexed spender,
uint256 value
);
}
/**
* @title Standard ERC20 token
*
* @dev Implementation of the basic standard token.
* https://github.com/ethereum/EIPs/issues/20
* Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
*/
contract StandardToken is ERC20, BasicToken {
mapping (address => mapping (address => uint256)) internal allowed;
/**
* @dev Transfer tokens from one address to another
* @param _from address The address which you want to send tokens from
* @param _to address The address which you want to transfer to
* @param _value uint256 the amount of tokens to be transferred
*/
function transferFrom(
address _from,
address _to,
uint256 _value
)
public
returns (bool)
{
require(_value <= balances[_from]);
require(_value <= allowed[_from][msg.sender]);
require(_to != address(0));
balances[_from] = balances[_from].sub(_value);
balances[_to] = balances[_to].add(_value);
allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
emit Transfer(_from, _to, _value);
return true;
}
/**
* @dev 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) {
allowed[msg.sender][_spender] = _value;
emit Approval(msg.sender, _spender, _value);
return true;
}
/**
* @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 Increase the amount of tokens that an owner allowed to a spender.
* approve should be called when allowed[_spender] == 0. To increment
* allowed value is better to use this function to avoid 2 calls (and wait until
* the first transaction is mined)
* From MonolithDAO Token.sol
* @param _spender The address which will spend the funds.
* @param _addedValue The amount of tokens to increase the allowance by.
*/
function increaseApproval(
address _spender,
uint256 _addedValue
)
public
returns (bool)
{
allowed[msg.sender][_spender] = (
allowed[msg.sender][_spender].add(_addedValue));
emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
return true;
}
/**
* @dev Decrease the amount of tokens that an owner allowed to a spender.
* approve should be called when allowed[_spender] == 0. To decrement
* allowed value is better to use this function to avoid 2 calls (and wait until
* the first transaction is mined)
* From MonolithDAO Token.sol
* @param _spender The address which will spend the funds.
* @param _subtractedValue The amount of tokens to decrease the allowance by.
*/
function decreaseApproval(
address _spender,
uint256 _subtractedValue
)
public
returns (bool)
{
uint256 oldValue = allowed[msg.sender][_spender];
if (_subtractedValue >= oldValue) {
allowed[msg.sender][_spender] = 0;
} else {
allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
}
emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
return true;
}
}
/**
* @title UniDAppToken
* @dev Simple ERC20 Token , where all tokens are pre-assigned to the initialAddress.
* Note they can later distribute these tokens as they wish using `transfer` and other
* `StandardToken` functions.
*/
contract UniDAppToken is StandardToken {
string public constant name = "UniDApp";
string public constant symbol = "UDP";
uint8 public constant decimals = 18;
uint256 public constant INITIAL_SUPPLY = 30000000 * (10 ** uint256(decimals));
/**
* @dev Constructor that gives initialAddress all of existing tokens.
*/
constructor() public {
totalSupply_ = INITIAL_SUPPLY;
address initialAddress = 0x867Dc2Fd3Ed771d4b1816964392b949a9502e8D9 ;
balances[initialAddress] = INITIAL_SUPPLY;
emit Transfer(address(0), initialAddress, INITIAL_SUPPLY);
}
}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":"INITIAL_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":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":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"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
608060405234801561001057600080fd5b506a18d0bf423c03d8de000000600181905573867dc2fd3ed771d4b1816964392b949a9502e8d9600081815260208181527fadf9f6126b7a94b0a5e0b97ef99e9d95598499151cfffc4237265f98755e24998490556040805194855251929384937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35061083b806100ac6000396000f3006080604052600436106100b95763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100be578063095ea7b31461014857806318160ddd1461018057806323b872dd146101a75780632ff2e9dc146101d1578063313ce567146101e6578063661884631461021157806370a082311461023557806395d89b4114610256578063a9059cbb1461026b578063d73dd6231461028f578063dd62ed3e146102b3575b600080fd5b3480156100ca57600080fd5b506100d36102da565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561010d5781810151838201526020016100f5565b50505050905090810190601f16801561013a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561015457600080fd5b5061016c600160a060020a0360043516602435610311565b604080519115158252519081900360200190f35b34801561018c57600080fd5b50610195610377565b60408051918252519081900360200190f35b3480156101b357600080fd5b5061016c600160a060020a036004358116906024351660443561037d565b3480156101dd57600080fd5b506101956104f2565b3480156101f257600080fd5b506101fb610501565b6040805160ff9092168252519081900360200190f35b34801561021d57600080fd5b5061016c600160a060020a0360043516602435610506565b34801561024157600080fd5b50610195600160a060020a03600435166105f5565b34801561026257600080fd5b506100d3610610565b34801561027757600080fd5b5061016c600160a060020a0360043516602435610647565b34801561029b57600080fd5b5061016c600160a060020a0360043516602435610726565b3480156102bf57600080fd5b50610195600160a060020a03600435811690602435166107bf565b60408051808201909152600781527f556e694441707000000000000000000000000000000000000000000000000000602082015281565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60015490565b600160a060020a0383166000908152602081905260408120548211156103a257600080fd5b600160a060020a03841660009081526002602090815260408083203384529091529020548211156103d257600080fd5b600160a060020a03831615156103e757600080fd5b600160a060020a038416600090815260208190526040902054610410908363ffffffff6107ea16565b600160a060020a038086166000908152602081905260408082209390935590851681522054610445908363ffffffff6107fc16565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054610487908363ffffffff6107ea16565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b6a18d0bf423c03d8de00000081565b601281565b336000908152600260209081526040808320600160a060020a038616845290915281205480831061055a57336000908152600260209081526040808320600160a060020a038816845290915281205561058f565b61056a818463ffffffff6107ea16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526020819052604090205490565b60408051808201909152600381527f5544500000000000000000000000000000000000000000000000000000000000602082015281565b3360009081526020819052604081205482111561066357600080fd5b600160a060020a038316151561067857600080fd5b33600090815260208190526040902054610698908363ffffffff6107ea16565b3360009081526020819052604080822092909255600160a060020a038516815220546106ca908363ffffffff6107fc16565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b336000908152600260209081526040808320600160a060020a038616845290915281205461075a908363ffffffff6107fc16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b6000828211156107f657fe5b50900390565b8181018281101561080957fe5b929150505600a165627a7a7230582004522604ae6f62511dcc395d19b8e24eeac3be247aea5cfdee94170293c872370029
Deployed Bytecode
0x6080604052600436106100b95763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100be578063095ea7b31461014857806318160ddd1461018057806323b872dd146101a75780632ff2e9dc146101d1578063313ce567146101e6578063661884631461021157806370a082311461023557806395d89b4114610256578063a9059cbb1461026b578063d73dd6231461028f578063dd62ed3e146102b3575b600080fd5b3480156100ca57600080fd5b506100d36102da565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561010d5781810151838201526020016100f5565b50505050905090810190601f16801561013a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561015457600080fd5b5061016c600160a060020a0360043516602435610311565b604080519115158252519081900360200190f35b34801561018c57600080fd5b50610195610377565b60408051918252519081900360200190f35b3480156101b357600080fd5b5061016c600160a060020a036004358116906024351660443561037d565b3480156101dd57600080fd5b506101956104f2565b3480156101f257600080fd5b506101fb610501565b6040805160ff9092168252519081900360200190f35b34801561021d57600080fd5b5061016c600160a060020a0360043516602435610506565b34801561024157600080fd5b50610195600160a060020a03600435166105f5565b34801561026257600080fd5b506100d3610610565b34801561027757600080fd5b5061016c600160a060020a0360043516602435610647565b34801561029b57600080fd5b5061016c600160a060020a0360043516602435610726565b3480156102bf57600080fd5b50610195600160a060020a03600435811690602435166107bf565b60408051808201909152600781527f556e694441707000000000000000000000000000000000000000000000000000602082015281565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60015490565b600160a060020a0383166000908152602081905260408120548211156103a257600080fd5b600160a060020a03841660009081526002602090815260408083203384529091529020548211156103d257600080fd5b600160a060020a03831615156103e757600080fd5b600160a060020a038416600090815260208190526040902054610410908363ffffffff6107ea16565b600160a060020a038086166000908152602081905260408082209390935590851681522054610445908363ffffffff6107fc16565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054610487908363ffffffff6107ea16565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b6a18d0bf423c03d8de00000081565b601281565b336000908152600260209081526040808320600160a060020a038616845290915281205480831061055a57336000908152600260209081526040808320600160a060020a038816845290915281205561058f565b61056a818463ffffffff6107ea16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526020819052604090205490565b60408051808201909152600381527f5544500000000000000000000000000000000000000000000000000000000000602082015281565b3360009081526020819052604081205482111561066357600080fd5b600160a060020a038316151561067857600080fd5b33600090815260208190526040902054610698908363ffffffff6107ea16565b3360009081526020819052604080822092909255600160a060020a038516815220546106ca908363ffffffff6107fc16565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b336000908152600260209081526040808320600160a060020a038616845290915281205461075a908363ffffffff6107fc16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b6000828211156107f657fe5b50900390565b8181018281101561080957fe5b929150505600a165627a7a7230582004522604ae6f62511dcc395d19b8e24eeac3be247aea5cfdee94170293c872370029
Deployed Bytecode Sourcemap
7968:600:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8014:39;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8014:39: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;8014:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5351:192;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5351:192:0;-1:-1:-1;;;;;5351:192:0;;;;;;;;;;;;;;;;;;;;;;;;;2168:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2168:85:0;;;;;;;;;;;;;;;;;;;;4235:487;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4235:487:0;-1:-1:-1;;;;;4235:487:0;;;;;;;;;;;;8142:77;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8142:77:0;;;;8100:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8100:35:0;;;;;;;;;;;;;;;;;;;;;;;7270:447;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7270:447:0;-1:-1:-1;;;;;7270:447:0;;;;;;;2952:101;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2952:101:0;-1:-1:-1;;;;;2952:101:0;;;;;8058:37;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8058:37:0;;;;2414:329;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2414:329:0;-1:-1:-1;;;;;2414:329:0;;;;;;;6495:307;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6495:307:0;-1:-1:-1;;;;;6495:307:0;;;;;;;5870:162;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5870:162:0;-1:-1:-1;;;;;5870:162:0;;;;;;;;;;8014:39;;;;;;;;;;;;;;;;;;;:::o;5351:192::-;5439:10;5418:4;5431:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;5431:29:0;;;;;;;;;;;:38;;;5481;;;;;;;5418:4;;5431:29;;5439:10;;5481:38;;;;;;;;-1:-1:-1;5533:4:0;5351:192;;;;:::o;2168:85::-;2235:12;;2168:85;:::o;4235:487::-;-1:-1:-1;;;;;4381:15:0;;4347:4;4381:15;;;;;;;;;;;4371:25;;;4363:34;;;;;;-1:-1:-1;;;;;4422:14:0;;;;;;:7;:14;;;;;;;;4437:10;4422:26;;;;;;;;4412:36;;;4404:45;;;;;;-1:-1:-1;;;;;4464:17:0;;;;4456:26;;;;;;-1:-1:-1;;;;;4509:15:0;;:8;:15;;;;;;;;;;;:27;;4529:6;4509:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;4491:15:0;;;:8;:15;;;;;;;;;;;:45;;;;4559:13;;;;;;;:25;;4577:6;4559:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;4543:13:0;;;:8;:13;;;;;;;;;;;:41;;;;4620:14;;;;;:7;:14;;;;;4635:10;4620:26;;;;;;;:38;;4651:6;4620:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;4591:14:0;;;;;;;:7;:14;;;;;;;;4606:10;4591:26;;;;;;;;:67;;;;4670:28;;;;;;;;;;;4591:14;;4670:28;;;;;;;;;;;-1:-1:-1;4712:4:0;4235:487;;;;;:::o;8142:77::-;8183:36;8142:77;:::o;8100:35::-;8133:2;8100:35;:::o;7270:447::-;7424:10;7381:4;7416:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7416:29:0;;;;;;;;;;7456:28;;;7452:169;;7503:10;7527:1;7495:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7495:29:0;;;;;;;;;:33;7452:169;;;7583:30;:8;7596:16;7583:30;:12;:30;:::i;:::-;7559:10;7551:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7551:29:0;;;;;;;;;:62;7452:169;7641:10;7663:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7632:61:0;;7663:29;;;;;;;;;;;7632:61;;;;;;;;;7641:10;7632:61;;;;;;;;;;;-1:-1:-1;7707:4:0;;7270:447;-1:-1:-1;;;7270:447:0:o;2952:101::-;-1:-1:-1;;;;;3031:16:0;3008:7;3031:16;;;;;;;;;;;;2952:101::o;8058:37::-;;;;;;;;;;;;;;;;;;;:::o;2414:329::-;2517:10;2477:4;2508:20;;;;;;;;;;;2498:30;;;2490:39;;;;;;-1:-1:-1;;;;;2544:17:0;;;;2536:26;;;;;;2603:10;2594:8;:20;;;;;;;;;;;:32;;2619:6;2594:32;:24;:32;:::i;:::-;2580:10;2571:8;:20;;;;;;;;;;;:55;;;;-1:-1:-1;;;;;2649:13:0;;;;;;:25;;2667:6;2649:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;2633:13:0;;:8;:13;;;;;;;;;;;;:41;;;;2686:33;;;;;;;2633:13;;2695:10;;2686:33;;;;;;;;;;-1:-1:-1;2733:4:0;2414:329;;;;:::o;6495:307::-;6666:10;6601:4;6658:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6658:29:0;;;;;;;;;;:46;;6692:11;6658:46;:33;:46;:::i;:::-;6625:10;6617:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6617:29:0;;;;;;;;;;;;:88;;;6717:61;;;;;;6617:29;;6717:61;;;;;;;;;;;-1:-1:-1;6792:4:0;6495:307;;;;:::o;5870:162::-;-1:-1:-1;;;;;6001:15:0;;;5975:7;6001:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;5870:162::o;1097:119::-;1157:7;1180:8;;;;1173:16;;;;-1:-1:-1;1203:7:0;;;1097:119::o;1283:132::-;1365:7;;;1386;;;;1379:15;;;;1283:132;;;;:::o
Swarm Source
bzzr://04522604ae6f62511dcc395d19b8e24eeac3be247aea5cfdee94170293c87237
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.