Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 11 from a total of 11 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer | 6818543 | 2674 days ago | IN | 0 ETH | 0.0005185 | ||||
| Transfer | 6818511 | 2674 days ago | IN | 0 ETH | 0.0005185 | ||||
| Transfer | 6818438 | 2674 days ago | IN | 0.225 ETH | 0.07474699 | ||||
| Set Price | 6818409 | 2674 days ago | IN | 0 ETH | 0.0013593 | ||||
| Set Price | 6818389 | 2674 days ago | IN | 0 ETH | 0.0013593 | ||||
| Set Price | 6818379 | 2674 days ago | IN | 0 ETH | 0.0013593 | ||||
| Set Price | 6710428 | 2691 days ago | IN | 0 ETH | 0.0013593 | ||||
| Set Price | 6704124 | 2692 days ago | IN | 0 ETH | 0.0013593 | ||||
| Approve | 6452151 | 2734 days ago | IN | 0 ETH | 0.00066144 | ||||
| Approve | 6452110 | 2734 days ago | IN | 0 ETH | 0.00109396 | ||||
| Set Price | 6445134 | 2735 days ago | IN | 0 ETH | 0.00010874 |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
ERC20CrowdsaleToken
Compiler Version
v0.4.25+commit.59dbf8f1
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2018-10-03
*/
pragma solidity ^0.4.23;
/**
* @title SafeMath
* @dev Math operations with safety checks that throw on error
*/
library SafeMath {
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a * b;
assert(a == 0 || 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;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev The Ownable constructor sets the original "owner" of the contract to the sender
* account.
*/
constructor () 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) onlyOwner public {
require(newOwner != address(0));
emit OwnershipTransferred(owner, newOwner);
owner = newOwner;
}
}
/**
* @title ERC20Basic
* @dev Simpler version of ERC20 interface
* @dev see https://github.com/ethereum/EIPs/issues/179
*/
contract ERC20Basic {
uint256 public totalSupply;
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) balances;
modifier onlyPayloadSize(uint numwords) {
assert(msg.data.length >= numwords * 32 + 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, uint256 _value) public onlyPayloadSize(2) returns (bool) {
require(_to != address(0));
// SafeMath.sub will throw if there is not enough balance.
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 balance) {
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.
* @dev https://github.com/ethereum/EIPs/issues/20
* @dev 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)) 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 onlyPayloadSize(3) returns (bool) {
require(_to != address(0));
uint256 _allowance = allowed[_from][msg.sender];
// Check is not needed because sub(_allowance, _value) will already throw if this condition is not met
// require (_value <= _allowance);
balances[_from] = balances[_from].sub(_value);
balances[_to] = balances[_to].add(_value);
allowed[_from][msg.sender] = _allowance.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 onlyPayloadSize(2) 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 remaining) {
return allowed[_owner][_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
*/
function increaseApproval (address _spender, uint _addedValue) public
onlyPayloadSize(2)
returns (bool success) {
allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue);
emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
return true;
}
function decreaseApproval (address _spender, uint _subtractedValue) public
onlyPayloadSize(2)
returns (bool success) {
uint 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 Burnable Token
* @dev Token that can be irreversibly burned (destroyed).
*/
contract BurnableToken is StandardToken {
event Burn(address indexed burner, uint256 value);
/**
* @dev Burns a specific amount of tokens.
* @param _value The amount of token to be burned.
*/
function burn(uint256 _value) public {
require(_value > 0);
require(_value <= balances[msg.sender]);
// no need to require value <= totalSupply, since that would imply the
// sender's balance is greater than the totalSupply, which *should* be an assertion failure
address burner = msg.sender;
balances[burner] = balances[burner].sub(_value);
totalSupply = totalSupply.sub(_value);
emit Burn(burner, _value);
emit Transfer(burner, address(0), _value);
}
}
contract Token is BurnableToken, Ownable {
string public constant name = "Crowdnext";
string public constant symbol = "CNXT";
uint public constant decimals = 18;
// there is no problem in using * here instead of .mul()
uint256 public constant initialSupply = 100000000 * (10 ** uint256(decimals));
// Constructors
constructor () public {
totalSupply = initialSupply;
balances[msg.sender] = initialSupply; // Send all tokens to owner
emit Transfer(address(0x0), owner, initialSupply);
}
}
/**
* @title Crowdsale
* @dev Crowdsale is a base contract for managing a token crowdsale.
* Crowdsales have a start and end timestamps, where investors can make
* token purchases and the crowdsale will assign them tokens based
* on a token per ETH rate. Funds collected are forwarded
to a wallet
* as they arrive.
*/
interface token { function transfer(address receiver, uint amount) external; }
contract ERC20CrowdsaleToken is Token {
using SafeMath for uint256;
uint256 public price = 3000;
token tokenReward;
uint256 public weiRaised;
/**
* event for token purchase logging
* @param purchaser who paid for the tokens
* @param beneficiary who got the tokens
* @param value weis paid for purchase
* @param amount amount of tokens purchased
*/
event TokenPurchase(address indexed purchaser, address indexed beneficiary, uint256 value, uint256 amount);
constructor () public {
tokenReward = token(address(this));
}
bool public started = true;
function startSale() onlyOwner public {
started = true;
}
function stopSale() onlyOwner public {
started = false;
}
function setPrice(uint256 _price) onlyOwner public {
price = _price;
}
// fallback function can be used to buy tokens
function () payable external {
buyTokens(msg.sender);
}
// low level token purchase function
function buyTokens(address beneficiary) payable public {
require(beneficiary != address(0x0));
require(validPurchase());
uint256 weiAmount = msg.value;
// calculate token amount to be sent
uint256 tokens = (weiAmount/10**(18-decimals)) * price; //weiamount * price
// update state
weiRaised = weiRaised.add(weiAmount);
tokenReward.transfer(beneficiary, tokens);
emit TokenPurchase(msg.sender, beneficiary, weiAmount, tokens);
forwardFunds();
}
// send ether to the fund collection wallet
// override to create custom fund forwarding mechanisms
function forwardFunds() internal {
owner.transfer(msg.value);
}
// @return true if the transaction can buy tokens
function validPurchase() internal view returns (bool) {
bool withinPeriod = started;
bool nonZeroPurchase = msg.value != 0;
return withinPeriod && nonZeroPurchase;
}
function withdrawTokens(uint256 _amount) onlyOwner public {
tokenReward.transfer(owner,_amount);
}
}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":true,"inputs":[],"name":"started","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_amount","type":"uint256"}],"name":"withdrawTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"initialSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"weiRaised","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"price","outputs":[{"name":"","type":"uint256"}],"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":"startSale","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"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":false,"inputs":[],"name":"stopSale","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"beneficiary","type":"address"}],"name":"buyTokens","outputs":[],"payable":true,"stateMutability":"payable","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"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"purchaser","type":"address"},{"indexed":true,"name":"beneficiary","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"TokenPurchase","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","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
6080604052610bb86004556007805460ff1916600117905534801561002357600080fd5b5060038054600160a060020a0319163390811782556a52b7d2dcc80cd2e40000006000818155918252600160209081526040808420839055935484519283529351600160a060020a0394909416937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a360058054600160a060020a03191630179055610de5806100bc6000396000f3006080604052600436106101325763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461013d578063095ea7b3146101c757806318160ddd146101ff5780631f2698ab1461022657806323b872dd1461023b578063313ce56714610265578063315a095d1461027a578063378dc3dc146102925780634042b66f146102a757806342966c68146102bc57806366188463146102d457806370a08231146102f85780638da5cb5b1461031957806391b7f5ed1461034a57806395d89b4114610362578063a035b1fe14610377578063a9059cbb1461038c578063b66a0e5d146103b0578063d73dd623146103c5578063dd62ed3e146103e9578063e36b0b3714610410578063ec8ac4d814610425578063f2fde38b14610439575b61013b3361045a565b005b34801561014957600080fd5b50610152610580565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561018c578181015183820152602001610174565b50505050905090810190601f1680156101b95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101d357600080fd5b506101eb600160a060020a03600435166024356105b7565b604080519115158252519081900360200190f35b34801561020b57600080fd5b5061021461062e565b60408051918252519081900360200190f35b34801561023257600080fd5b506101eb610634565b34801561024757600080fd5b506101eb600160a060020a036004358116906024351660443561063d565b34801561027157600080fd5b5061021461076f565b34801561028657600080fd5b5061013b600435610774565b34801561029e57600080fd5b50610214610817565b3480156102b357600080fd5b50610214610826565b3480156102c857600080fd5b5061013b60043561082c565b3480156102e057600080fd5b506101eb600160a060020a036004351660243561092b565b34801561030457600080fd5b50610214600160a060020a0360043516610a2e565b34801561032557600080fd5b5061032e610a49565b60408051600160a060020a039092168252519081900360200190f35b34801561035657600080fd5b5061013b600435610a58565b34801561036e57600080fd5b50610152610a74565b34801561038357600080fd5b50610214610aab565b34801561039857600080fd5b506101eb600160a060020a0360043516602435610ab1565b3480156103bc57600080fd5b5061013b610b86565b3480156103d157600080fd5b506101eb600160a060020a0360043516602435610bac565b3480156103f557600080fd5b50610214600160a060020a0360043581169060243516610c55565b34801561041c57600080fd5b5061013b610c80565b61013b600160a060020a036004351661045a565b34801561044557600080fd5b5061013b600160a060020a0360043516610ca3565b600080600160a060020a038316151561047257600080fd5b61047a610d38565b151561048557600080fd5b505060045460065434918202906104a2908363ffffffff610d5516565b600655600554604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a038681166004830152602482018590529151919092169163a9059cbb91604480830192600092919082900301818387803b15801561051357600080fd5b505af1158015610527573d6000803e3d6000fd5b505060408051858152602081018590528151600160a060020a03881694503393507f623b3804fa71d67900d064613da8f94b9617215ee90799290593e1745087ad18929181900390910190a361057b610d6b565b505050565b60408051808201909152600981527f43726f77646e6578740000000000000000000000000000000000000000000000602082015281565b6000600260443610156105c657fe5b336000818152600260209081526040808320600160a060020a03891680855290835292819020879055805187815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b60005481565b60075460ff1681565b6000806003606436101561064d57fe5b600160a060020a038516151561066257600080fd5b600160a060020a038616600081815260026020908152604080832033845282528083205493835260019091529020549092506106a4908563ffffffff610da716565b600160a060020a0380881660009081526001602052604080822093909355908716815220546106d9908563ffffffff610d5516565b600160a060020a038616600090815260016020526040902055610702828563ffffffff610da716565b600160a060020a03808816600081815260026020908152604080832033845282529182902094909455805188815290519289169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a350600195945050505050565b601281565b600354600160a060020a0316331461078b57600080fd5b600554600354604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a039283166004820152602481018590529051919092169163a9059cbb91604480830192600092919082900301818387803b1580156107fc57600080fd5b505af1158015610810573d6000803e3d6000fd5b5050505050565b6a52b7d2dcc80cd2e400000081565b60065481565b600080821161083a57600080fd5b3360009081526001602052604090205482111561085657600080fd5b5033600081815260016020526040902054610877908363ffffffff610da716565b600160a060020a038216600090815260016020526040812091909155546108a4908363ffffffff610da716565b600055604080518381529051600160a060020a038316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518381529051600091600160a060020a038416917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6000806002604436101561093b57fe5b336000908152600260209081526040808320600160a060020a038916845290915290205491508184111561099257336000908152600260209081526040808320600160a060020a03891684529091528120556109c7565b6109a2828563ffffffff610da716565b336000908152600260209081526040808320600160a060020a038a1684529091529020555b336000818152600260209081526040808320600160a060020a038a168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a3506001949350505050565b600160a060020a031660009081526001602052604090205490565b600354600160a060020a031681565b600354600160a060020a03163314610a6f57600080fd5b600455565b60408051808201909152600481527f434e585400000000000000000000000000000000000000000000000000000000602082015281565b60045481565b600060026044361015610ac057fe5b600160a060020a0384161515610ad557600080fd5b33600090815260016020526040902054610af5908463ffffffff610da716565b3360009081526001602052604080822092909255600160a060020a03861681522054610b27908463ffffffff610d5516565b600160a060020a0385166000818152600160209081526040918290209390935580518681529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35060019392505050565b600354600160a060020a03163314610b9d57600080fd5b6007805460ff19166001179055565b600060026044361015610bbb57fe5b336000908152600260209081526040808320600160a060020a0388168452909152902054610bef908463ffffffff610d5516565b336000818152600260209081526040808320600160a060020a038a168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a35060019392505050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600160a060020a03163314610c9757600080fd5b6007805460ff19169055565b600354600160a060020a03163314610cba57600080fd5b600160a060020a0381161515610ccf57600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60075460009060ff16341515818015610d4e5750805b9250505090565b600082820183811015610d6457fe5b9392505050565b600354604051600160a060020a03909116903480156108fc02916000818181858888f19350505050158015610da4573d6000803e3d6000fd5b50565b600082821115610db357fe5b509003905600a165627a7a723058209449659b0c5f20fb86e012df4626a2e11de9243f09341e0e5cda0ee0978ca5090029
Deployed Bytecode
0x6080604052600436106101325763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461013d578063095ea7b3146101c757806318160ddd146101ff5780631f2698ab1461022657806323b872dd1461023b578063313ce56714610265578063315a095d1461027a578063378dc3dc146102925780634042b66f146102a757806342966c68146102bc57806366188463146102d457806370a08231146102f85780638da5cb5b1461031957806391b7f5ed1461034a57806395d89b4114610362578063a035b1fe14610377578063a9059cbb1461038c578063b66a0e5d146103b0578063d73dd623146103c5578063dd62ed3e146103e9578063e36b0b3714610410578063ec8ac4d814610425578063f2fde38b14610439575b61013b3361045a565b005b34801561014957600080fd5b50610152610580565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561018c578181015183820152602001610174565b50505050905090810190601f1680156101b95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101d357600080fd5b506101eb600160a060020a03600435166024356105b7565b604080519115158252519081900360200190f35b34801561020b57600080fd5b5061021461062e565b60408051918252519081900360200190f35b34801561023257600080fd5b506101eb610634565b34801561024757600080fd5b506101eb600160a060020a036004358116906024351660443561063d565b34801561027157600080fd5b5061021461076f565b34801561028657600080fd5b5061013b600435610774565b34801561029e57600080fd5b50610214610817565b3480156102b357600080fd5b50610214610826565b3480156102c857600080fd5b5061013b60043561082c565b3480156102e057600080fd5b506101eb600160a060020a036004351660243561092b565b34801561030457600080fd5b50610214600160a060020a0360043516610a2e565b34801561032557600080fd5b5061032e610a49565b60408051600160a060020a039092168252519081900360200190f35b34801561035657600080fd5b5061013b600435610a58565b34801561036e57600080fd5b50610152610a74565b34801561038357600080fd5b50610214610aab565b34801561039857600080fd5b506101eb600160a060020a0360043516602435610ab1565b3480156103bc57600080fd5b5061013b610b86565b3480156103d157600080fd5b506101eb600160a060020a0360043516602435610bac565b3480156103f557600080fd5b50610214600160a060020a0360043581169060243516610c55565b34801561041c57600080fd5b5061013b610c80565b61013b600160a060020a036004351661045a565b34801561044557600080fd5b5061013b600160a060020a0360043516610ca3565b600080600160a060020a038316151561047257600080fd5b61047a610d38565b151561048557600080fd5b505060045460065434918202906104a2908363ffffffff610d5516565b600655600554604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a038681166004830152602482018590529151919092169163a9059cbb91604480830192600092919082900301818387803b15801561051357600080fd5b505af1158015610527573d6000803e3d6000fd5b505060408051858152602081018590528151600160a060020a03881694503393507f623b3804fa71d67900d064613da8f94b9617215ee90799290593e1745087ad18929181900390910190a361057b610d6b565b505050565b60408051808201909152600981527f43726f77646e6578740000000000000000000000000000000000000000000000602082015281565b6000600260443610156105c657fe5b336000818152600260209081526040808320600160a060020a03891680855290835292819020879055805187815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b60005481565b60075460ff1681565b6000806003606436101561064d57fe5b600160a060020a038516151561066257600080fd5b600160a060020a038616600081815260026020908152604080832033845282528083205493835260019091529020549092506106a4908563ffffffff610da716565b600160a060020a0380881660009081526001602052604080822093909355908716815220546106d9908563ffffffff610d5516565b600160a060020a038616600090815260016020526040902055610702828563ffffffff610da716565b600160a060020a03808816600081815260026020908152604080832033845282529182902094909455805188815290519289169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a350600195945050505050565b601281565b600354600160a060020a0316331461078b57600080fd5b600554600354604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a039283166004820152602481018590529051919092169163a9059cbb91604480830192600092919082900301818387803b1580156107fc57600080fd5b505af1158015610810573d6000803e3d6000fd5b5050505050565b6a52b7d2dcc80cd2e400000081565b60065481565b600080821161083a57600080fd5b3360009081526001602052604090205482111561085657600080fd5b5033600081815260016020526040902054610877908363ffffffff610da716565b600160a060020a038216600090815260016020526040812091909155546108a4908363ffffffff610da716565b600055604080518381529051600160a060020a038316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518381529051600091600160a060020a038416917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6000806002604436101561093b57fe5b336000908152600260209081526040808320600160a060020a038916845290915290205491508184111561099257336000908152600260209081526040808320600160a060020a03891684529091528120556109c7565b6109a2828563ffffffff610da716565b336000908152600260209081526040808320600160a060020a038a1684529091529020555b336000818152600260209081526040808320600160a060020a038a168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a3506001949350505050565b600160a060020a031660009081526001602052604090205490565b600354600160a060020a031681565b600354600160a060020a03163314610a6f57600080fd5b600455565b60408051808201909152600481527f434e585400000000000000000000000000000000000000000000000000000000602082015281565b60045481565b600060026044361015610ac057fe5b600160a060020a0384161515610ad557600080fd5b33600090815260016020526040902054610af5908463ffffffff610da716565b3360009081526001602052604080822092909255600160a060020a03861681522054610b27908463ffffffff610d5516565b600160a060020a0385166000818152600160209081526040918290209390935580518681529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35060019392505050565b600354600160a060020a03163314610b9d57600080fd5b6007805460ff19166001179055565b600060026044361015610bbb57fe5b336000908152600260209081526040808320600160a060020a0388168452909152902054610bef908463ffffffff610d5516565b336000818152600260209081526040808320600160a060020a038a168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a35060019392505050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600160a060020a03163314610c9757600080fd5b6007805460ff19169055565b600354600160a060020a03163314610cba57600080fd5b600160a060020a0381161515610ccf57600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60075460009060ff16341515818015610d4e5750805b9250505090565b600082820183811015610d6457fe5b9392505050565b600354604051600160a060020a03909116903480156108fc02916000818181858888f19350505050158015610da4573d6000803e3d6000fd5b50565b600082821115610db357fe5b509003905600a165627a7a723058209449659b0c5f20fb86e012df4626a2e11de9243f09341e0e5cda0ee0978ca5090029
Swarm Source
bzzr://9449659b0c5f20fb86e012df4626a2e11de9243f09341e0e5cda0ee0978ca509
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.