Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
DeFi
Overview
Max Total Supply
2.102338009090183332 csETH
Holders
17 (0.00%)
Market
Onchain Market Cap
$0.00
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:
CsToken
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-09-18 */ // SPDX-License-Identifier: MIXED // Sources flattened with hardhat v2.14.0 https://hardhat.org // File lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol // License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.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); } // File lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @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); } // File lib/openzeppelin-contracts/contracts/utils/Context.sol // 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; } } // File lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol // License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @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]. * * 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}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * 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 value {ERC20} uses, unless this function is * 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 {} } // File src/CsToken.sol // License-Identifier: UNLICENSED pragma solidity 0.8.18; /// @title CsToken. /// @author ClayStack. /// @notice Implementation ClayStack's synthetic ERC20 compliant token. contract CsToken is ERC20 { /// @notice address of clayMain contract. address public clayMain; /// @notice Checks if the msg.sender is the clayMain contract. modifier onlyClayMain() { require(msg.sender == clayMain, "Auth Failed"); _; } /// @notice Initializes the values for `name`, `symbol` and `clayMain`. /// @dev The default value of `decimals` is 18. /// @param _name : Name of the token. /// @param _symbol : Symbol of the token. constructor(string memory _name, string memory _symbol) ERC20(_name, _symbol) {} /// @notice Mints `_amount` tokens to `_to`, increasing the total supply. /// @dev Only `clayMain` callable. /// @param _to : Address to which tokens will be minted. /// @param _amount : Number of tokens to be minted. /// @return Boolean value indicating whether the operation succeeded. function mint(address _to, uint256 _amount) external onlyClayMain returns (bool) { _mint(_to, _amount); return true; } /// @notice Burns `_amount` tokens from `_from`, reducing the total supply. /// @dev only `clayMain` callable. /// @param _from : Address from which tokens will be burned. /// @param _amount : Number of tokens to be burned. /// @return Boolean value indicating whether the operation succeeded. function burn(address _from, uint256 _amount) external onlyClayMain returns (bool) { _burn(_from, _amount); return true; } /// @notice Sets `_clayMain` address. /// @dev ClayMain can be set only once. /// @param _clayMain : Address of new ClayMain contract. function setClayMain(address _clayMain) external { require(_clayMain != address(0), "Invalid ClayMain"); require(clayMain == address(0), "ClayMain Already Set"); clayMain = _clayMain; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"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":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":[{"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":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"clayMain","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"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":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_clayMain","type":"address"}],"name":"setClayMain","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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
60806040523480156200001157600080fd5b5060405162000f5438038062000f54833981016040819052620000349162000123565b818160036200004483826200021c565b5060046200005382826200021c565b5050505050620002e8565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200008657600080fd5b81516001600160401b0380821115620000a357620000a36200005e565b604051601f8301601f19908116603f01168101908282118183101715620000ce57620000ce6200005e565b81604052838152602092508683858801011115620000eb57600080fd5b600091505b838210156200010f5785820183015181830184015290820190620000f0565b600093810190920192909252949350505050565b600080604083850312156200013757600080fd5b82516001600160401b03808211156200014f57600080fd5b6200015d8683870162000074565b935060208501519150808211156200017457600080fd5b50620001838582860162000074565b9150509250929050565b600181811c90821680620001a257607f821691505b602082108103620001c357634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200021757600081815260208120601f850160051c81016020861015620001f25750805b601f850160051c820191505b818110156200021357828155600101620001fe565b5050505b505050565b81516001600160401b038111156200023857620002386200005e565b62000250816200024984546200018d565b84620001c9565b602080601f8311600181146200028857600084156200026f5750858301515b600019600386901b1c1916600185901b17855562000213565b600085815260208120601f198616915b82811015620002b95788860151825594840194600190910190840162000298565b5085821015620002d85787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b610c5c80620002f86000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d714610204578063a9059cbb14610217578063b1fe93101461022a578063dd62ed3e1461023f57600080fd5b806370a082311461019557806395d89b41146101be5780639dc29fac146101c6578063a33a7d53146101d957600080fd5b806323b872dd116100d357806323b872dd1461014d578063313ce56714610160578063395093511461016f57806340c10f191461018257600080fd5b806306fdde03146100fa578063095ea7b31461011857806318160ddd1461013b575b600080fd5b610102610252565b60405161010f9190610aa6565b60405180910390f35b61012b610126366004610b10565b6102e4565b604051901515815260200161010f565b6002545b60405190815260200161010f565b61012b61015b366004610b3a565b6102fe565b6040516012815260200161010f565b61012b61017d366004610b10565b610322565b61012b610190366004610b10565b610344565b61013f6101a3366004610b76565b6001600160a01b031660009081526020819052604090205490565b6101026103a7565b61012b6101d4366004610b10565b6103b6565b6005546101ec906001600160a01b031681565b6040516001600160a01b03909116815260200161010f565b61012b610212366004610b10565b61040b565b61012b610225366004610b10565b610486565b61023d610238366004610b76565b610494565b005b61013f61024d366004610b98565b61054f565b60606003805461026190610bcb565b80601f016020809104026020016040519081016040528092919081815260200182805461028d90610bcb565b80156102da5780601f106102af576101008083540402835291602001916102da565b820191906000526020600020905b8154815290600101906020018083116102bd57829003601f168201915b5050505050905090565b6000336102f281858561057a565b60019150505b92915050565b60003361030c85828561069f565b610317858585610719565b506001949350505050565b6000336102f2818585610335838361054f565b61033f9190610c05565b61057a565b6005546000906001600160a01b031633146103945760405162461bcd60e51b815260206004820152600b60248201526a105d5d1a0811985a5b195960aa1b60448201526064015b60405180910390fd5b61039e83836108bd565b50600192915050565b60606004805461026190610bcb565b6005546000906001600160a01b031633146104015760405162461bcd60e51b815260206004820152600b60248201526a105d5d1a0811985a5b195960aa1b604482015260640161038b565b61039e838361097c565b60003381610419828661054f565b9050838110156104795760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161038b565b610317828686840361057a565b6000336102f2818585610719565b6001600160a01b0381166104dd5760405162461bcd60e51b815260206004820152601060248201526f24b73b30b634b21021b630bca6b0b4b760811b604482015260640161038b565b6005546001600160a01b03161561052d5760405162461bcd60e51b815260206004820152601460248201527310db185e53585a5b88105b1c9958591e4814d95d60621b604482015260640161038b565b600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166105dc5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161038b565b6001600160a01b03821661063d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161038b565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006106ab848461054f565b9050600019811461071357818110156107065760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161038b565b610713848484840361057a565b50505050565b6001600160a01b03831661077d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161038b565b6001600160a01b0382166107df5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161038b565b6001600160a01b038316600090815260208190526040902054818110156108575760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161038b565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610713565b6001600160a01b0382166109135760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161038b565b80600260008282546109259190610c05565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0382166109dc5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161038b565b6001600160a01b03821660009081526020819052604090205481811015610a505760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161038b565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610692565b600060208083528351808285015260005b81811015610ad357858101830151858201604001528201610ab7565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610b0b57600080fd5b919050565b60008060408385031215610b2357600080fd5b610b2c83610af4565b946020939093013593505050565b600080600060608486031215610b4f57600080fd5b610b5884610af4565b9250610b6660208501610af4565b9150604084013590509250925092565b600060208284031215610b8857600080fd5b610b9182610af4565b9392505050565b60008060408385031215610bab57600080fd5b610bb483610af4565b9150610bc260208401610af4565b90509250929050565b600181811c90821680610bdf57607f821691505b602082108103610bff57634e487b7160e01b600052602260045260246000fd5b50919050565b808201808211156102f857634e487b7160e01b600052601160045260246000fdfea26469706673582212207d8eb09f622239dea0ff6b37619d0ac8a4ff86f2858181a52f52031aa95ff91364736f6c63430008120033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000014436c6179537461636b205374616b65642045544800000000000000000000000000000000000000000000000000000000000000000000000000000000000000056373455448000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d714610204578063a9059cbb14610217578063b1fe93101461022a578063dd62ed3e1461023f57600080fd5b806370a082311461019557806395d89b41146101be5780639dc29fac146101c6578063a33a7d53146101d957600080fd5b806323b872dd116100d357806323b872dd1461014d578063313ce56714610160578063395093511461016f57806340c10f191461018257600080fd5b806306fdde03146100fa578063095ea7b31461011857806318160ddd1461013b575b600080fd5b610102610252565b60405161010f9190610aa6565b60405180910390f35b61012b610126366004610b10565b6102e4565b604051901515815260200161010f565b6002545b60405190815260200161010f565b61012b61015b366004610b3a565b6102fe565b6040516012815260200161010f565b61012b61017d366004610b10565b610322565b61012b610190366004610b10565b610344565b61013f6101a3366004610b76565b6001600160a01b031660009081526020819052604090205490565b6101026103a7565b61012b6101d4366004610b10565b6103b6565b6005546101ec906001600160a01b031681565b6040516001600160a01b03909116815260200161010f565b61012b610212366004610b10565b61040b565b61012b610225366004610b10565b610486565b61023d610238366004610b76565b610494565b005b61013f61024d366004610b98565b61054f565b60606003805461026190610bcb565b80601f016020809104026020016040519081016040528092919081815260200182805461028d90610bcb565b80156102da5780601f106102af576101008083540402835291602001916102da565b820191906000526020600020905b8154815290600101906020018083116102bd57829003601f168201915b5050505050905090565b6000336102f281858561057a565b60019150505b92915050565b60003361030c85828561069f565b610317858585610719565b506001949350505050565b6000336102f2818585610335838361054f565b61033f9190610c05565b61057a565b6005546000906001600160a01b031633146103945760405162461bcd60e51b815260206004820152600b60248201526a105d5d1a0811985a5b195960aa1b60448201526064015b60405180910390fd5b61039e83836108bd565b50600192915050565b60606004805461026190610bcb565b6005546000906001600160a01b031633146104015760405162461bcd60e51b815260206004820152600b60248201526a105d5d1a0811985a5b195960aa1b604482015260640161038b565b61039e838361097c565b60003381610419828661054f565b9050838110156104795760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161038b565b610317828686840361057a565b6000336102f2818585610719565b6001600160a01b0381166104dd5760405162461bcd60e51b815260206004820152601060248201526f24b73b30b634b21021b630bca6b0b4b760811b604482015260640161038b565b6005546001600160a01b03161561052d5760405162461bcd60e51b815260206004820152601460248201527310db185e53585a5b88105b1c9958591e4814d95d60621b604482015260640161038b565b600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166105dc5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161038b565b6001600160a01b03821661063d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161038b565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006106ab848461054f565b9050600019811461071357818110156107065760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161038b565b610713848484840361057a565b50505050565b6001600160a01b03831661077d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161038b565b6001600160a01b0382166107df5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161038b565b6001600160a01b038316600090815260208190526040902054818110156108575760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161038b565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610713565b6001600160a01b0382166109135760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161038b565b80600260008282546109259190610c05565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0382166109dc5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161038b565b6001600160a01b03821660009081526020819052604090205481811015610a505760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161038b565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610692565b600060208083528351808285015260005b81811015610ad357858101830151858201604001528201610ab7565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610b0b57600080fd5b919050565b60008060408385031215610b2357600080fd5b610b2c83610af4565b946020939093013593505050565b600080600060608486031215610b4f57600080fd5b610b5884610af4565b9250610b6660208501610af4565b9150604084013590509250925092565b600060208284031215610b8857600080fd5b610b9182610af4565b9392505050565b60008060408385031215610bab57600080fd5b610bb483610af4565b9150610bc260208401610af4565b90509250929050565b600181811c90821680610bdf57607f821691505b602082108103610bff57634e487b7160e01b600052602260045260246000fd5b50919050565b808201808211156102f857634e487b7160e01b600052601160045260246000fdfea26469706673582212207d8eb09f622239dea0ff6b37619d0ac8a4ff86f2858181a52f52031aa95ff91364736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000014436c6179537461636b205374616b65642045544800000000000000000000000000000000000000000000000000000000000000000000000000000000000000056373455448000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): ClayStack Staked ETH
Arg [1] : _symbol (string): csETH
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [3] : 436c6179537461636b205374616b656420455448000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 6373455448000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
18304:1901:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6907:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9258:201;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;9258:201:0;1004:187:1;8027:108:0;8115:12;;8027:108;;;1342:25:1;;;1330:2;1315:18;8027:108:0;1196:177:1;10039:295:0;;;;;;:::i;:::-;;:::i;7869:93::-;;;7952:2;1853:36:1;;1841:2;1826:18;7869:93:0;1711:184:1;10743:238:0;;;;;;:::i;:::-;;:::i;19214:141::-;;;;;;:::i;:::-;;:::i;8198:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8299:18:0;8272:7;8299:18;;;;;;;;;;;;8198:127;7126:104;;;:::i;19682:145::-;;;;;;:::i;:::-;;:::i;18384:23::-;;;;;-1:-1:-1;;;;;18384:23:0;;;;;;-1:-1:-1;;;;;2255:32:1;;;2237:51;;2225:2;2210:18;18384:23:0;2091:203:1;11484:436:0;;;;;;:::i;:::-;;:::i;8531:193::-;;;;;;:::i;:::-;;:::i;19985:217::-;;;;;;:::i;:::-;;:::i;:::-;;8787:151;;;;;;:::i;:::-;;:::i;6907:100::-;6961:13;6994:5;6987:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6907:100;:::o;9258:201::-;9341:4;4591:10;9397:32;4591:10;9413:7;9422:6;9397:8;:32::i;:::-;9447:4;9440:11;;;9258:201;;;;;:::o;10039:295::-;10170:4;4591:10;10228:38;10244:4;4591:10;10259:6;10228:15;:38::i;:::-;10277:27;10287:4;10293:2;10297:6;10277:9;:27::i;:::-;-1:-1:-1;10322:4:0;;10039:295;-1:-1:-1;;;;10039:295:0:o;10743:238::-;10831:4;4591:10;10887:64;4591:10;10903:7;10940:10;10912:25;4591:10;10903:7;10912:9;:25::i;:::-;:38;;;;:::i;:::-;10887:8;:64::i;19214:141::-;18541:8;;19289:4;;-1:-1:-1;;;;;18541:8:0;18527:10;:22;18519:46;;;;-1:-1:-1;;;18519:46:0;;3378:2:1;18519:46:0;;;3360:21:1;3417:2;3397:18;;;3390:30;-1:-1:-1;;;3436:18:1;;;3429:41;3487:18;;18519:46:0;;;;;;;;;19306:19:::1;19312:3;19317:7;19306:5;:19::i;:::-;-1:-1:-1::0;19343:4:0::1;19214:141:::0;;;;:::o;7126:104::-;7182:13;7215:7;7208:14;;;;;:::i;19682:145::-;18541:8;;19759:4;;-1:-1:-1;;;;;18541:8:0;18527:10;:22;18519:46;;;;-1:-1:-1;;;18519:46:0;;3378:2:1;18519:46:0;;;3360:21:1;3417:2;3397:18;;;3390:30;-1:-1:-1;;;3436:18:1;;;3429:41;3487:18;;18519:46:0;3176:335:1;18519:46:0;19776:21:::1;19782:5;19789:7;19776:5;:21::i;11484:436::-:0;11577:4;4591:10;11577:4;11660:25;4591:10;11677:7;11660:9;:25::i;:::-;11633:52;;11724:15;11704:16;:35;;11696:85;;;;-1:-1:-1;;;11696:85:0;;3718:2:1;11696:85:0;;;3700:21:1;3757:2;3737:18;;;3730:30;3796:34;3776:18;;;3769:62;-1:-1:-1;;;3847:18:1;;;3840:35;3892:19;;11696:85:0;3516:401:1;11696:85:0;11817:60;11826:5;11833:7;11861:15;11842:16;:34;11817:8;:60::i;8531:193::-;8610:4;4591:10;8666:28;4591:10;8683:2;8687:6;8666:9;:28::i;19985:217::-;-1:-1:-1;;;;;20053:23:0;;20045:52;;;;-1:-1:-1;;;20045:52:0;;4124:2:1;20045:52:0;;;4106:21:1;4163:2;4143:18;;;4136:30;-1:-1:-1;;;4182:18:1;;;4175:46;4238:18;;20045:52:0;3922:340:1;20045:52:0;20116:8;;-1:-1:-1;;;;;20116:8:0;:22;20108:55;;;;-1:-1:-1;;;20108:55:0;;4469:2:1;20108:55:0;;;4451:21:1;4508:2;4488:18;;;4481:30;-1:-1:-1;;;4527:18:1;;;4520:50;4587:18;;20108:55:0;4267:344:1;20108:55:0;20174:8;:20;;-1:-1:-1;;;;;;20174:20:0;-1:-1:-1;;;;;20174:20:0;;;;;;;;;;19985:217::o;8787:151::-;-1:-1:-1;;;;;8903:18:0;;;8876:7;8903:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8787:151::o;15511:380::-;-1:-1:-1;;;;;15647:19:0;;15639:68;;;;-1:-1:-1;;;15639:68:0;;4818:2:1;15639:68:0;;;4800:21:1;4857:2;4837:18;;;4830:30;4896:34;4876:18;;;4869:62;-1:-1:-1;;;4947:18:1;;;4940:34;4991:19;;15639:68:0;4616:400:1;15639:68:0;-1:-1:-1;;;;;15726:21:0;;15718:68;;;;-1:-1:-1;;;15718:68:0;;5223:2:1;15718:68:0;;;5205:21:1;5262:2;5242:18;;;5235:30;5301:34;5281:18;;;5274:62;-1:-1:-1;;;5352:18:1;;;5345:32;5394:19;;15718:68:0;5021:398:1;15718:68:0;-1:-1:-1;;;;;15799:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15851:32;;1342:25:1;;;15851:32:0;;1315:18:1;15851:32:0;;;;;;;;15511:380;;;:::o;16182:453::-;16317:24;16344:25;16354:5;16361:7;16344:9;:25::i;:::-;16317:52;;-1:-1:-1;;16384:16:0;:37;16380:248;;16466:6;16446:16;:26;;16438:68;;;;-1:-1:-1;;;16438:68:0;;5626:2:1;16438:68:0;;;5608:21:1;5665:2;5645:18;;;5638:30;5704:31;5684:18;;;5677:59;5753:18;;16438:68:0;5424:353:1;16438:68:0;16550:51;16559:5;16566:7;16594:6;16575:16;:25;16550:8;:51::i;:::-;16306:329;16182:453;;;:::o;12390:840::-;-1:-1:-1;;;;;12521:18:0;;12513:68;;;;-1:-1:-1;;;12513:68:0;;5984:2:1;12513:68:0;;;5966:21:1;6023:2;6003:18;;;5996:30;6062:34;6042:18;;;6035:62;-1:-1:-1;;;6113:18:1;;;6106:35;6158:19;;12513:68:0;5782:401:1;12513:68:0;-1:-1:-1;;;;;12600:16:0;;12592:64;;;;-1:-1:-1;;;12592:64:0;;6390:2:1;12592:64:0;;;6372:21:1;6429:2;6409:18;;;6402:30;6468:34;6448:18;;;6441:62;-1:-1:-1;;;6519:18:1;;;6512:33;6562:19;;12592:64:0;6188:399:1;12592:64:0;-1:-1:-1;;;;;12742:15:0;;12720:19;12742:15;;;;;;;;;;;12776:21;;;;12768:72;;;;-1:-1:-1;;;12768:72:0;;6794:2:1;12768:72:0;;;6776:21:1;6833:2;6813:18;;;6806:30;6872:34;6852:18;;;6845:62;-1:-1:-1;;;6923:18:1;;;6916:36;6969:19;;12768:72:0;6592:402:1;12768:72:0;-1:-1:-1;;;;;12876:15:0;;;:9;:15;;;;;;;;;;;12894:20;;;12876:38;;13094:13;;;;;;;;;;:23;;;;;;13146:26;;1342:25:1;;;13094:13:0;;13146:26;;1315:18:1;13146:26:0;;;;;;;13185:37;14398:675;13517:548;-1:-1:-1;;;;;13601:21:0;;13593:65;;;;-1:-1:-1;;;13593:65:0;;7201:2:1;13593:65:0;;;7183:21:1;7240:2;7220:18;;;7213:30;7279:33;7259:18;;;7252:61;7330:18;;13593:65:0;6999:355:1;13593:65:0;13749:6;13733:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;13904:18:0;;:9;:18;;;;;;;;;;;:28;;;;;;13959:37;1342:25:1;;;13959:37:0;;1315:18:1;13959:37:0;;;;;;;13517:548;;:::o;14398:675::-;-1:-1:-1;;;;;14482:21:0;;14474:67;;;;-1:-1:-1;;;14474:67:0;;7561:2:1;14474:67:0;;;7543:21:1;7600:2;7580:18;;;7573:30;7639:34;7619:18;;;7612:62;-1:-1:-1;;;7690:18:1;;;7683:31;7731:19;;14474:67:0;7359:397:1;14474:67:0;-1:-1:-1;;;;;14641:18:0;;14616:22;14641:18;;;;;;;;;;;14678:24;;;;14670:71;;;;-1:-1:-1;;;14670:71:0;;7963:2:1;14670:71:0;;;7945:21:1;8002:2;7982:18;;;7975:30;8041:34;8021:18;;;8014:62;-1:-1:-1;;;8092:18:1;;;8085:32;8134:19;;14670:71:0;7761:398:1;14670:71:0;-1:-1:-1;;;;;14777:18:0;;:9;:18;;;;;;;;;;;14798:23;;;14777:44;;14916:12;:22;;;;;;;14967:37;1342:25:1;;;14777:9:0;;:18;14967:37;;1315:18:1;14967:37:0;1196:177:1;14:548;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:186::-;1959:6;2012:2;2000:9;1991:7;1987:23;1983:32;1980:52;;;2028:1;2025;2018:12;1980:52;2051:29;2070:9;2051:29;:::i;:::-;2041:39;1900:186;-1:-1:-1;;;1900:186:1:o;2299:260::-;2367:6;2375;2428:2;2416:9;2407:7;2403:23;2399:32;2396:52;;;2444:1;2441;2434:12;2396:52;2467:29;2486:9;2467:29;:::i;:::-;2457:39;;2515:38;2549:2;2538:9;2534:18;2515:38;:::i;:::-;2505:48;;2299:260;;;;;:::o;2564:380::-;2643:1;2639:12;;;;2686;;;2707:61;;2761:4;2753:6;2749:17;2739:27;;2707:61;2814:2;2806:6;2803:14;2783:18;2780:38;2777:161;;2860:10;2855:3;2851:20;2848:1;2841:31;2895:4;2892:1;2885:15;2923:4;2920:1;2913:15;2777:161;;2564:380;;;:::o;2949:222::-;3014:9;;;3035:10;;;3032:133;;;3087:10;3082:3;3078:20;3075:1;3068:31;3122:4;3119:1;3112:15;3150:4;3147:1;3140:15
Swarm Source
ipfs://7d8eb09f622239dea0ff6b37619d0ac8a4ff86f2858181a52f52031aa95ff913
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.