Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
5,000 CORI
Holders
15
Transfers
-
0
Market
Onchain Market Cap
-
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 2 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
| # | Exchange | Pair | Price | 24H Volume | % Volume |
|---|
Contract Name:
CorrentlyInvest
Compiler Version
v0.4.25-nightly.2018.7.19+commit.e3c2f20f
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2018-07-20
*/
pragma solidity ^0.4.18;
// Corrently CAPEX token
// Modified for https://corrently.de/token
//
// Leveraged by STROMDAO (https://stromdao.de/)
// Changes:
// - embedded SafeMath due to missing utilization in some functions
//
// ----------------------------------------------------------------------------
// Based on FWD 'BitFwd' token contract
//
// FWD tokens are mintable by the owner until the `disableMinting()` function
// is executed. Tokens can be burnt by sending them to address 0x0
//
// Deployed to : 0xe199C41103020a325Ee17Fd87934dfe7Ac747AD4
// Symbol : FWD
// Name : BitFwd
// Total supply: mintable
// Decimals : 18
//
// http://www.bitfwd.xyz
// https://github.com/bokkypoobah/Tokens/blob/master/contracts/BitFwdToken.sol
//
// Enjoy.
//
// (c) BokkyPooBah / Bok Consulting Pty Ltd for BitFwd 2017. The MIT Licence.
// ----------------------------------------------------------------------------
// ----------------------------------------------------------------------------
// ERC Token Standard #20 Interface
// https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20-token-standard.md
// ----------------------------------------------------------------------------
contract ERC20Interface {
function totalSupply() public view returns (uint);
function balanceOf(address tokenOwner) public view returns (uint balance);
function allowance(address tokenOwner, address spender) public view returns (uint remaining);
function transfer(address to, uint tokens) public returns (bool success);
function approve(address spender, uint tokens) public returns (bool success);
function transferFrom(address from, address to, uint tokens) public returns (bool success);
event Transfer(address indexed from, address indexed to, uint tokens);
event Approval(address indexed tokenOwner, address indexed spender, uint tokens);
}
// ----------------------------------------------------------------------------
// Contract function to receive approval and execute function in one call
//
// Borrowed from MiniMeToken
// ----------------------------------------------------------------------------
contract ApproveAndCallFallBack {
function receiveApproval(address from, uint256 tokens, address token, bytes data) public;
}
// ----------------------------------------------------------------------------
// Owned contract
// ----------------------------------------------------------------------------
contract Owned {
address public owner;
address public newOwner;
event OwnershipTransferred(address indexed _from, address indexed _to);
constructor() public {
owner = msg.sender;
}
modifier onlyOwner {
require(msg.sender == owner);
_;
}
function transferOwnership(address _newOwner) public onlyOwner {
newOwner = _newOwner;
}
function acceptOwnership() public {
require(msg.sender == newOwner);
emit OwnershipTransferred(owner, newOwner);
owner = newOwner;
newOwner = address(0);
}
}
// ----------------------------------------------------------------------------
// ERC20 Token, with the addition of symbol, name and decimals and assisted
// token transfers
// ----------------------------------------------------------------------------
contract CorrentlyInvest is ERC20Interface, Owned {
string public symbol;
string public name;
uint8 public decimals;
uint public _totalSupply;
bool public mintable;
mapping(address => uint) balances;
mapping(address => mapping(address => uint)) allowed;
event MintingDisabled();
// ------------------------------------------------------------------------
// Constructor
// ------------------------------------------------------------------------
constructor() public {
symbol = "CORI";
name = "Corrently Invest";
decimals = 2;
mintable = true;
}
// ------------------------------------------------------------------------
// Total supply
// ------------------------------------------------------------------------
function totalSupply() public view returns (uint) {
return _totalSupply - balances[address(0)];
}
// ------------------------------------------------------------------------
// Disable minting
// ------------------------------------------------------------------------
function disableMinting() public onlyOwner {
require(mintable);
mintable = false;
emit MintingDisabled();
}
// ------------------------------------------------------------------------
// Get the token balance for account `tokenOwner`
// ------------------------------------------------------------------------
function balanceOf(address tokenOwner) public view returns (uint balance) {
return balances[tokenOwner];
}
// ------------------------------------------------------------------------
// Transfer the balance from token owner's account to `to` account
// - Owner's account must have sufficient balance to transfer
// - 0 value transfers are allowed
// ------------------------------------------------------------------------
function transfer(address to, uint tokens) public returns (bool success) {
require(tokens <= balances[msg.sender]);
balances[msg.sender] -= tokens;
require( balances[to]+tokens >= balances[to]);
balances[to] += tokens;
emit Transfer(msg.sender, to, tokens);
return true;
}
// ------------------------------------------------------------------------
// Token owner can approve for `spender` to transferFrom(...) `tokens`
// from the token owner's account
//
// https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20-token-standard.md
// recommends that there are no checks for the approval double-spend attack
// as this should be implemented in user interfaces
// ------------------------------------------------------------------------
function approve(address spender, uint tokens) public returns (bool success) {
allowed[msg.sender][spender] = tokens;
emit Approval(msg.sender, spender, tokens);
return true;
}
// ------------------------------------------------------------------------
// Transfer `tokens` from the `from` account to the `to` account
//
// The calling account must already have sufficient tokens approve(...)-d
// for spending from the `from` account and
// - From account must have sufficient balance to transfer
// - Spender must have sufficient allowance to transfer
// - 0 value transfers are allowed
// ------------------------------------------------------------------------
function transferFrom(address from, address to, uint tokens) public returns (bool success) {
require(tokens <= balances[msg.sender]);
balances[from] -= tokens;
allowed[from][msg.sender] -= tokens;
require( balances[to]+tokens >= balances[to]);
balances[to] += tokens;
emit Transfer(from, to, tokens);
return true;
}
// ------------------------------------------------------------------------
// Returns the amount of tokens approved by the owner that can be
// transferred to the spender's account
// ------------------------------------------------------------------------
function allowance(address tokenOwner, address spender) public view returns (uint remaining) {
return allowed[tokenOwner][spender];
}
// ------------------------------------------------------------------------
// Token owner can approve for `spender` to transferFrom(...) `tokens`
// from the token owner's account. The `spender` contract function
// `receiveApproval(...)` is then executed
// ------------------------------------------------------------------------
function approveAndCall(address spender, uint tokens, bytes data) public returns (bool success) {
allowed[msg.sender][spender] = tokens;
emit Approval(msg.sender, spender, tokens);
ApproveAndCallFallBack(spender).receiveApproval(msg.sender, tokens, this, data);
return true;
}
// ------------------------------------------------------------------------
// Mint tokens
// ------------------------------------------------------------------------
function mint(address tokenOwner, uint tokens) public onlyOwner returns (bool success) {
require(mintable);
require( balances[tokenOwner]+tokens >= balances[tokenOwner]);
balances[tokenOwner] += tokens;
require(_totalSupply+tokens>=_totalSupply);
_totalSupply += tokens;
emit Transfer(address(0), tokenOwner, tokens);
return true;
}
// ------------------------------------------------------------------------
// Don't accept ethers
// ------------------------------------------------------------------------
function () external {
revert();
}
// ------------------------------------------------------------------------
// Owner can transfer out any accidentally sent ERC20 tokens
// ------------------------------------------------------------------------
function transferAnyERC20Token(address tokenAddress, uint tokens) public onlyOwner returns (bool success) {
return ERC20Interface(tokenAddress).transfer(owner, tokens);
}
}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":"tokens","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":"tokens","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":true,"inputs":[],"name":"_totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"tokenOwner","type":"address"},{"name":"tokens","type":"uint256"}],"name":"mint","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"mintable","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"tokenOwner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"acceptOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"disableMinting","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"tokens","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"tokens","type":"uint256"},{"name":"data","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"newOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"tokenAddress","type":"address"},{"name":"tokens","type":"uint256"}],"name":"transferAnyERC20Token","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"tokenOwner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","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"},{"payable":false,"stateMutability":"nonpayable","type":"fallback"},{"anonymous":false,"inputs":[],"name":"MintingDisabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"tokens","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"tokenOwner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"tokens","type":"uint256"}],"name":"Approval","type":"event"}]Contract Creation Code
608060405234801561001057600080fd5b5060008054600160a060020a031916331790556040805180820190915260048082527f434f5249000000000000000000000000000000000000000000000000000000006020909201918252610067916002916100ce565b506040805180820190915260108082527f436f7272656e746c7920496e766573740000000000000000000000000000000060209092019182526100ac916003916100ce565b506004805460ff19908116600217909155600680549091166001179055610169565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061010f57805160ff191683800117855561013c565b8280016001018555821561013c579182015b8281111561013c578251825591602001919060010190610121565b5061014892915061014c565b5090565b61016691905b808211156101485760008155600101610152565b90565b610d02806101786000396000f3006080604052600436106101065763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610118578063095ea7b3146101a257806318160ddd146101ef57806323b872dd14610216578063313ce567146102595780633eaaf86b1461028457806340c10f19146102995780634bf365df146102d257806370a08231146102e757806379ba50971461031a5780637e5cd5c1146103315780638da5cb5b1461034657806395d89b4114610377578063a9059cbb1461038c578063cae9ca51146103c5578063d4ee1d901461048d578063dc39d06d146104a2578063dd62ed3e146104db578063f2fde38b14610516575b34801561011257600080fd5b50600080fd5b34801561012457600080fd5b5061012d610549565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561016757818101518382015260200161014f565b50505050905090810190601f1680156101945780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101ae57600080fd5b506101db600480360360408110156101c557600080fd5b50600160a060020a0381351690602001356105d7565b604080519115158252519081900360200190f35b3480156101fb57600080fd5b5061020461063d565b60408051918252519081900360200190f35b34801561022257600080fd5b506101db6004803603606081101561023957600080fd5b50600160a060020a0381358116916020810135909116906040013561066f565b34801561026557600080fd5b5061026e61073d565b6040805160ff9092168252519081900360200190f35b34801561029057600080fd5b50610204610746565b3480156102a557600080fd5b506101db600480360360408110156102bc57600080fd5b50600160a060020a03813516906020013561074c565b3480156102de57600080fd5b506101db61081d565b3480156102f357600080fd5b506102046004803603602081101561030a57600080fd5b5035600160a060020a0316610826565b34801561032657600080fd5b5061032f610841565b005b34801561033d57600080fd5b5061032f6108c9565b34801561035257600080fd5b5061035b610926565b60408051600160a060020a039092168252519081900360200190f35b34801561038357600080fd5b5061012d610935565b34801561039857600080fd5b506101db600480360360408110156103af57600080fd5b50600160a060020a03813516906020013561098d565b3480156103d157600080fd5b506101db600480360360608110156103e857600080fd5b600160a060020a038235169160208101359181019060608101604082013564010000000081111561041857600080fd5b82018360208201111561042a57600080fd5b8035906020019184600183028401116401000000008311171561044c57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610a3a945050505050565b34801561049957600080fd5b5061035b610b9b565b3480156104ae57600080fd5b506101db600480360360408110156104c557600080fd5b50600160a060020a038135169060200135610baa565b3480156104e757600080fd5b50610204600480360360408110156104fe57600080fd5b50600160a060020a0381358116916020013516610c65565b34801561052257600080fd5b5061032f6004803603602081101561053957600080fd5b5035600160a060020a0316610c90565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105cf5780601f106105a4576101008083540402835291602001916105cf565b820191906000526020600020905b8154815290600101906020018083116105b257829003601f168201915b505050505081565b336000818152600860209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b6000805260076020527f6d5257204ebe7d88fd91ae87941cb2dd9d8062b64ae5a2bd2d28ec40b9fbf6df546005540390565b3360009081526007602052604081205482111561068b57600080fd5b600160a060020a0380851660009081526007602081815260408084208054889003905560088252808420338552825280842080548890039055938716835252205480830110156106da57600080fd5b600160a060020a038084166000818152600760209081526040918290208054870190558151868152915192938816927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35060019392505050565b60045460ff1681565b60055481565b60008054600160a060020a0316331461076457600080fd5b60065460ff16151561077557600080fd5b600160a060020a038316600090815260076020526040902054828101101561079c57600080fd5b600160a060020a038316600090815260076020526040902080548301905560055480830110156107cb57600080fd5b6005805483019055604080518381529051600160a060020a038516916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350600192915050565b60065460ff1681565b600160a060020a031660009081526007602052604090205490565b600154600160a060020a0316331461085857600080fd5b60015460008054604051600160a060020a0393841693909116917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600180546000805473ffffffffffffffffffffffffffffffffffffffff19908116600160a060020a03841617909155169055565b600054600160a060020a031633146108e057600080fd5b60065460ff1615156108f157600080fd5b6006805460ff191690556040517faf79b4370f6af9d950564bbe6b81f7f0834c003c455db9248f4e55e6bf865eb790600090a1565b600054600160a060020a031681565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156105cf5780601f106105a4576101008083540402835291602001916105cf565b336000908152600760205260408120548211156109a957600080fd5b3360009081526007602052604080822080548590039055600160a060020a038516825290205480830110156109dd57600080fd5b600160a060020a0383166000818152600760209081526040918290208054860190558151858152915133927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92908290030190a350600192915050565b336000818152600860209081526040808320600160a060020a038816808552908352818420879055815187815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a36040517f8f4ffcb10000000000000000000000000000000000000000000000000000000081523360048201818152602483018690523060448401819052608060648501908152865160848601528651600160a060020a038a1695638f4ffcb195948a94938a939192909160a490910190602085019080838360005b83811015610b2a578181015183820152602001610b12565b50505050905090810190601f168015610b575780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b158015610b7957600080fd5b505af1158015610b8d573d6000803e3d6000fd5b506001979650505050505050565b600154600160a060020a031681565b60008054600160a060020a03163314610bc257600080fd5b60008054604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810186905290519186169263a9059cbb926044808401936020939083900390910190829087803b158015610c3257600080fd5b505af1158015610c46573d6000803e3d6000fd5b505050506040513d6020811015610c5c57600080fd5b50519392505050565b600160a060020a03918216600090815260086020908152604080832093909416825291909152205490565b600054600160a060020a03163314610ca757600080fd5b6001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555600a165627a7a7230582099632407ed0cd7aa0fd92e2557dd071f89453a89b194693f8fa37d0838e7ab460029
Deployed Bytecode
0x6080604052600436106101065763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610118578063095ea7b3146101a257806318160ddd146101ef57806323b872dd14610216578063313ce567146102595780633eaaf86b1461028457806340c10f19146102995780634bf365df146102d257806370a08231146102e757806379ba50971461031a5780637e5cd5c1146103315780638da5cb5b1461034657806395d89b4114610377578063a9059cbb1461038c578063cae9ca51146103c5578063d4ee1d901461048d578063dc39d06d146104a2578063dd62ed3e146104db578063f2fde38b14610516575b34801561011257600080fd5b50600080fd5b34801561012457600080fd5b5061012d610549565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561016757818101518382015260200161014f565b50505050905090810190601f1680156101945780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101ae57600080fd5b506101db600480360360408110156101c557600080fd5b50600160a060020a0381351690602001356105d7565b604080519115158252519081900360200190f35b3480156101fb57600080fd5b5061020461063d565b60408051918252519081900360200190f35b34801561022257600080fd5b506101db6004803603606081101561023957600080fd5b50600160a060020a0381358116916020810135909116906040013561066f565b34801561026557600080fd5b5061026e61073d565b6040805160ff9092168252519081900360200190f35b34801561029057600080fd5b50610204610746565b3480156102a557600080fd5b506101db600480360360408110156102bc57600080fd5b50600160a060020a03813516906020013561074c565b3480156102de57600080fd5b506101db61081d565b3480156102f357600080fd5b506102046004803603602081101561030a57600080fd5b5035600160a060020a0316610826565b34801561032657600080fd5b5061032f610841565b005b34801561033d57600080fd5b5061032f6108c9565b34801561035257600080fd5b5061035b610926565b60408051600160a060020a039092168252519081900360200190f35b34801561038357600080fd5b5061012d610935565b34801561039857600080fd5b506101db600480360360408110156103af57600080fd5b50600160a060020a03813516906020013561098d565b3480156103d157600080fd5b506101db600480360360608110156103e857600080fd5b600160a060020a038235169160208101359181019060608101604082013564010000000081111561041857600080fd5b82018360208201111561042a57600080fd5b8035906020019184600183028401116401000000008311171561044c57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610a3a945050505050565b34801561049957600080fd5b5061035b610b9b565b3480156104ae57600080fd5b506101db600480360360408110156104c557600080fd5b50600160a060020a038135169060200135610baa565b3480156104e757600080fd5b50610204600480360360408110156104fe57600080fd5b50600160a060020a0381358116916020013516610c65565b34801561052257600080fd5b5061032f6004803603602081101561053957600080fd5b5035600160a060020a0316610c90565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105cf5780601f106105a4576101008083540402835291602001916105cf565b820191906000526020600020905b8154815290600101906020018083116105b257829003601f168201915b505050505081565b336000818152600860209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b6000805260076020527f6d5257204ebe7d88fd91ae87941cb2dd9d8062b64ae5a2bd2d28ec40b9fbf6df546005540390565b3360009081526007602052604081205482111561068b57600080fd5b600160a060020a0380851660009081526007602081815260408084208054889003905560088252808420338552825280842080548890039055938716835252205480830110156106da57600080fd5b600160a060020a038084166000818152600760209081526040918290208054870190558151868152915192938816927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35060019392505050565b60045460ff1681565b60055481565b60008054600160a060020a0316331461076457600080fd5b60065460ff16151561077557600080fd5b600160a060020a038316600090815260076020526040902054828101101561079c57600080fd5b600160a060020a038316600090815260076020526040902080548301905560055480830110156107cb57600080fd5b6005805483019055604080518381529051600160a060020a038516916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350600192915050565b60065460ff1681565b600160a060020a031660009081526007602052604090205490565b600154600160a060020a0316331461085857600080fd5b60015460008054604051600160a060020a0393841693909116917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600180546000805473ffffffffffffffffffffffffffffffffffffffff19908116600160a060020a03841617909155169055565b600054600160a060020a031633146108e057600080fd5b60065460ff1615156108f157600080fd5b6006805460ff191690556040517faf79b4370f6af9d950564bbe6b81f7f0834c003c455db9248f4e55e6bf865eb790600090a1565b600054600160a060020a031681565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156105cf5780601f106105a4576101008083540402835291602001916105cf565b336000908152600760205260408120548211156109a957600080fd5b3360009081526007602052604080822080548590039055600160a060020a038516825290205480830110156109dd57600080fd5b600160a060020a0383166000818152600760209081526040918290208054860190558151858152915133927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92908290030190a350600192915050565b336000818152600860209081526040808320600160a060020a038816808552908352818420879055815187815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a36040517f8f4ffcb10000000000000000000000000000000000000000000000000000000081523360048201818152602483018690523060448401819052608060648501908152865160848601528651600160a060020a038a1695638f4ffcb195948a94938a939192909160a490910190602085019080838360005b83811015610b2a578181015183820152602001610b12565b50505050905090810190601f168015610b575780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b158015610b7957600080fd5b505af1158015610b8d573d6000803e3d6000fd5b506001979650505050505050565b600154600160a060020a031681565b60008054600160a060020a03163314610bc257600080fd5b60008054604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810186905290519186169263a9059cbb926044808401936020939083900390910190829087803b158015610c3257600080fd5b505af1158015610c46573d6000803e3d6000fd5b505050506040513d6020811015610c5c57600080fd5b50519392505050565b600160a060020a03918216600090815260086020908152604080832093909416825291909152205490565b600054600160a060020a03163314610ca757600080fd5b6001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555600a165627a7a7230582099632407ed0cd7aa0fd92e2557dd071f89453a89b194693f8fa37d0838e7ab460029
Swarm Source
bzzr://99632407ed0cd7aa0fd92e2557dd071f89453a89b194693f8fa37d0838e7ab46
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.
Add Token to MetaMask (Web3)