Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
Overview
Max Total Supply
0
Holders
0
Transfers
-
0
Market
Onchain Market Cap
-
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
| # | Exchange | Pair | Price | 24H Volume | % Volume |
|---|
Contract Name:
CopiumICO
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
Yes with 800 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.4;
/// @title Copium ICO
/// The ICO for Copium Coin
/// https://www.copiumprotocol.io
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Address.sol";
contract CopiumICO is Ownable {
uint256 public constant HARD_CAP = 50000000;
uint256 public purchased = 0;
uint256 public pricePer = 0;
bool public enabled = false;
mapping(address => uint256) public purchaseAmounts;
address[] public purchasers;
/**
* Prepurchase Copium coins
* @param amount The amount of Copium coin to purchase.
*/
function prepurchase(uint256 amount) external payable {
require(purchased + amount <= HARD_CAP, "CopiumICO: Invalid amount");
require(msg.value >= amount * pricePer, "CopiumICO: Invalid ETH");
purchasers.push(msg.sender);
purchaseAmounts[msg.sender] += amount;
purchased += amount;
}
/**
* Sets the price.
* @param pricePer_ The new price.
*/
function setPrice(uint256 pricePer_) external onlyOwner {
pricePer = pricePer_;
}
/**
* Sets if the contract is enabled.
* @param enabled_ The new status.
*/
function setEnabled(bool enabled_) external onlyOwner {
enabled = enabled_;
}
/**
* Get the state of the contract in one call.
* @return
* 0: Enabled (1 or 0)
* 1: Hard supply cap
* 2: Purchased amount
* 3: Price per token
*/
function icoView() external view returns (uint256[4] memory) {
return [enabled ? 1 : 0, HARD_CAP, purchased, pricePer];
}
/**
* Withdraw contract funds to a given address.
* @param account The account to withdraw to.
* @param amount The amount to withdraw.
*/
function withdraw(address payable account, uint256 amount) public virtual onlyOwner {
Address.sendValue(account, amount);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}{
"metadata": {
"bytecodeHash": "none"
},
"optimizer": {
"enabled": true,
"runs": 800
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[],"name":"HARD_CAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"icoView","outputs":[{"internalType":"uint256[4]","name":"","type":"uint256[4]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"prepurchase","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"pricePer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"purchaseAmounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"purchased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"purchasers","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled_","type":"bool"}],"name":"setEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"pricePer_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
6080604052600060018190556002556003805460ff1916905534801561002457600080fd5b5061002e33610033565b610083565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6109b8806100926000396000f3fe6080604052600436106100dd5760003560e01c80638da5cb5b1161007f57806397bcdebe1161005957806397bcdebe14610232578063ee2fe39314610245578063f2fde38b14610272578063f3fef3a31461029257600080fd5b80638da5cb5b146101d25780638e824cdc146101f057806391b7f5ed1461021257600080fd5b8063328d8f72116100bb578063328d8f721461016d5780633a03171c1461018f578063715018a6146101a7578063879f9c96146101bc57600080fd5b8063070a8a85146100e257806312923b651461010b578063238dafe014610143575b600080fd5b3480156100ee57600080fd5b506100f860025481565b6040519081526020015b60405180910390f35b34801561011757600080fd5b5061012b61012636600461088d565b6102b2565b6040516001600160a01b039091168152602001610102565b34801561014f57600080fd5b5060035461015d9060ff1681565b6040519015158152602001610102565b34801561017957600080fd5b5061018d6101883660046108a6565b6102dc565b005b34801561019b57600080fd5b506100f86302faf08081565b3480156101b357600080fd5b5061018d61034e565b3480156101c857600080fd5b506100f860015481565b3480156101de57600080fd5b506000546001600160a01b031661012b565b3480156101fc57600080fd5b506102056103b4565b60405161010291906108cf565b34801561021e57600080fd5b5061018d61022d36600461088d565b610402565b61018d61024036600461088d565b610461565b34801561025157600080fd5b506100f8610260366004610915565b60046020526000908152604090205481565b34801561027e57600080fd5b5061018d61028d366004610915565b6105aa565b34801561029e57600080fd5b5061018d6102ad366004610932565b61068c565b600581815481106102c257600080fd5b6000918252602090912001546001600160a01b0316905081565b6000546001600160a01b0316331461033b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6003805460ff1916911515919091179055565b6000546001600160a01b031633146103a85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610332565b6103b260006106f4565b565b6103bc61086f565b6040805160808101909152600354819060ff166103da5760006103dd565b60015b60ff1681526020016302faf08081526020016001548152602001600254815250905090565b6000546001600160a01b0316331461045c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610332565b600255565b6302faf080816001546104749190610974565b11156104c25760405162461bcd60e51b815260206004820152601960248201527f436f7069756d49434f3a20496e76616c696420616d6f756e74000000000000006044820152606401610332565b6002546104cf908261098c565b34101561051e5760405162461bcd60e51b815260206004820152601660248201527f436f7069756d49434f3a20496e76616c696420455448000000000000000000006044820152606401610332565b60058054600181019091557f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db001805473ffffffffffffffffffffffffffffffffffffffff19163390811790915560009081526004602052604081208054839290610589908490610974565b9250508190555080600160008282546105a29190610974565b909155505050565b6000546001600160a01b031633146106045760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610332565b6001600160a01b0381166106805760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610332565b610689816106f4565b50565b6000546001600160a01b031633146106e65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610332565b6106f08282610751565b5050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b804710156107a15760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610332565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146107ee576040519150601f19603f3d011682016040523d82523d6000602084013e6107f3565b606091505b505090508061086a5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610332565b505050565b60405180608001604052806004906020820280368337509192915050565b60006020828403121561089f57600080fd5b5035919050565b6000602082840312156108b857600080fd5b813580151581146108c857600080fd5b9392505050565b60808101818360005b60048110156108f75781518352602092830192909101906001016108d8565b50505092915050565b6001600160a01b038116811461068957600080fd5b60006020828403121561092757600080fd5b81356108c881610900565b6000806040838503121561094557600080fd5b823561095081610900565b946020939093013593505050565b634e487b7160e01b600052601160045260246000fd5b600082198211156109875761098761095e565b500190565b60008160001904831182151516156109a6576109a661095e565b50029056fea164736f6c6343000809000a
Deployed Bytecode
0x6080604052600436106100dd5760003560e01c80638da5cb5b1161007f57806397bcdebe1161005957806397bcdebe14610232578063ee2fe39314610245578063f2fde38b14610272578063f3fef3a31461029257600080fd5b80638da5cb5b146101d25780638e824cdc146101f057806391b7f5ed1461021257600080fd5b8063328d8f72116100bb578063328d8f721461016d5780633a03171c1461018f578063715018a6146101a7578063879f9c96146101bc57600080fd5b8063070a8a85146100e257806312923b651461010b578063238dafe014610143575b600080fd5b3480156100ee57600080fd5b506100f860025481565b6040519081526020015b60405180910390f35b34801561011757600080fd5b5061012b61012636600461088d565b6102b2565b6040516001600160a01b039091168152602001610102565b34801561014f57600080fd5b5060035461015d9060ff1681565b6040519015158152602001610102565b34801561017957600080fd5b5061018d6101883660046108a6565b6102dc565b005b34801561019b57600080fd5b506100f86302faf08081565b3480156101b357600080fd5b5061018d61034e565b3480156101c857600080fd5b506100f860015481565b3480156101de57600080fd5b506000546001600160a01b031661012b565b3480156101fc57600080fd5b506102056103b4565b60405161010291906108cf565b34801561021e57600080fd5b5061018d61022d36600461088d565b610402565b61018d61024036600461088d565b610461565b34801561025157600080fd5b506100f8610260366004610915565b60046020526000908152604090205481565b34801561027e57600080fd5b5061018d61028d366004610915565b6105aa565b34801561029e57600080fd5b5061018d6102ad366004610932565b61068c565b600581815481106102c257600080fd5b6000918252602090912001546001600160a01b0316905081565b6000546001600160a01b0316331461033b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6003805460ff1916911515919091179055565b6000546001600160a01b031633146103a85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610332565b6103b260006106f4565b565b6103bc61086f565b6040805160808101909152600354819060ff166103da5760006103dd565b60015b60ff1681526020016302faf08081526020016001548152602001600254815250905090565b6000546001600160a01b0316331461045c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610332565b600255565b6302faf080816001546104749190610974565b11156104c25760405162461bcd60e51b815260206004820152601960248201527f436f7069756d49434f3a20496e76616c696420616d6f756e74000000000000006044820152606401610332565b6002546104cf908261098c565b34101561051e5760405162461bcd60e51b815260206004820152601660248201527f436f7069756d49434f3a20496e76616c696420455448000000000000000000006044820152606401610332565b60058054600181019091557f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db001805473ffffffffffffffffffffffffffffffffffffffff19163390811790915560009081526004602052604081208054839290610589908490610974565b9250508190555080600160008282546105a29190610974565b909155505050565b6000546001600160a01b031633146106045760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610332565b6001600160a01b0381166106805760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610332565b610689816106f4565b50565b6000546001600160a01b031633146106e65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610332565b6106f08282610751565b5050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b804710156107a15760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610332565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146107ee576040519150601f19603f3d011682016040523d82523d6000602084013e6107f3565b606091505b505090508061086a5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610332565b505050565b60405180608001604052806004906020820280368337509192915050565b60006020828403121561089f57600080fd5b5035919050565b6000602082840312156108b857600080fd5b813580151581146108c857600080fd5b9392505050565b60808101818360005b60048110156108f75781518352602092830192909101906001016108d8565b50505092915050565b6001600160a01b038116811461068957600080fd5b60006020828403121561092757600080fd5b81356108c881610900565b6000806040838503121561094557600080fd5b823561095081610900565b946020939093013593505050565b634e487b7160e01b600052601160045260246000fd5b600082198211156109875761098761095e565b500190565b60008160001904831182151516156109a6576109a661095e565b50029056fea164736f6c6343000809000a
Loading...
Loading
Loading...
Loading
[ 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.