Feature Tip: Add private address tag to any address under My Name Tag !
Please note that the balance held in 0xf6e06de459057d3efa8f0ebd3656e06f66ea02da doesn't count into the total supply by design.
ERC-20
DeFi
Overview
Max Total Supply
165,120,000,000 VVS
Holders
1,774 (0.00%)
Market
Price
$0.00 @ 0.000000 ETH (-3.58%)
Onchain Market Cap
$642,316.80
Circulating Supply Market Cap
$185,796,709.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
11,182,779.54841476251064584 VVSValue
$43.50 ( ~0.0128853346992119 Eth) [0.0068%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CosmosERC20
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-08-02 */ // Sources flattened with hardhat v2.10.1 https://hardhat.org // File @openzeppelin/contracts/token/ERC20/[email protected] // SPDX-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 @openzeppelin/contracts/token/ERC20/extensions/[email protected] // 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 @openzeppelin/contracts/utils/[email protected] // 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 @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts (last updated v4.7.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.zeppelin.solutions/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; } _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; _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; } _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 contracts/ethereum-side/CosmosToken.sol pragma solidity ^0.8.10; contract CosmosERC20 is ERC20 { uint256 private MAX_UINT = 2**256 - 1; address public gravity; uint8 private cosmosDecimals; mapping(address => mapping(address => uint256)) private _allowances; modifier onlyGravity() { require(msg.sender == gravity, "Not gravity"); _; } constructor( address _gravityAddress, string memory _name, string memory _symbol, uint8 _decimals ) ERC20(_name, _symbol) { cosmosDecimals = _decimals; gravity = _gravityAddress; _mint(_gravityAddress, MAX_UINT); } // This is not an accurate total supply. Instead this is the total supply // of the given cosmos asset on Ethereum at this moment in time. Keeping // a totally accurate supply would require constant updates from the Cosmos // side, while in theory this could be piggy-backed on some existing bridge // operation it's a lot of complextiy to add so we chose to forgoe it. /** * @dev Returns the number of tokens not currently held by the gravity address * */ function totalSupply() public view virtual override returns (uint256) { return MAX_UINT - balanceOf(gravity); } /** * @dev Sets the gravity contract to a new address. * * Requirements: * * - `msg.sender` must be the current gravity contract */ function setGravityContract(address _gravityAddress) external onlyGravity { gravity = _gravityAddress; } /** * @dev Overrides the decimal function in the base ERC20 contract. * This override is needed to Ethereum wallets display tokens consistently * with how Cosmos wallets display the native version of the token. */ function decimals()public view override returns (uint8){ return cosmosDecimals; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_gravityAddress","type":"address"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint8","name":"_decimals","type":"uint8"}],"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":[],"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":"gravity","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_gravityAddress","type":"address"}],"name":"setGravityContract","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
60806040526000196005553480156200001757600080fd5b5060405162000de038038062000de08339810160408190526200003a9162000311565b825183908390620000539060039060208501906200019e565b508051620000699060049060208401906200019e565b5050600680546001600160a81b031916600160a01b60ff8516026001600160a01b031916176001600160a01b03871617905550600554620000ac908590620000b6565b5050505062000419565b6001600160a01b038216620001115760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620001259190620003b5565b90915550506001600160a01b0382166000908152602081905260408120805483929062000154908490620003b5565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620001ac90620003dc565b90600052602060002090601f016020900481019282620001d057600085556200021b565b82601f10620001eb57805160ff19168380011785556200021b565b828001600101855582156200021b579182015b828111156200021b578251825591602001919060010190620001fe565b50620002299291506200022d565b5090565b5b808211156200022957600081556001016200022e565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200026c57600080fd5b81516001600160401b038082111562000289576200028962000244565b604051601f8301601f19908116603f01168101908282118183101715620002b457620002b462000244565b81604052838152602092508683858801011115620002d157600080fd5b600091505b83821015620002f55785820183015181830184015290820190620002d6565b83821115620003075760008385830101525b9695505050505050565b600080600080608085870312156200032857600080fd5b84516001600160a01b03811681146200034057600080fd5b60208601519094506001600160401b03808211156200035e57600080fd5b6200036c888389016200025a565b945060408701519150808211156200038357600080fd5b5062000392878288016200025a565b925050606085015160ff81168114620003aa57600080fd5b939692955090935050565b60008219821115620003d757634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680620003f157607f821691505b602082108114156200041357634e487b7160e01b600052602260045260246000fd5b50919050565b6109b780620004296000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c80635fd130a91161008c578063a457c2d711610066578063a457c2d7146101b6578063a9059cbb146101c9578063cbf0a64e146101dc578063dd62ed3e1461020757600080fd5b80635fd130a91461017057806370a082311461018557806395d89b41146101ae57600080fd5b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461011557806323b872dd1461012b578063313ce5671461013e578063395093511461015d575b600080fd5b6100dc61021a565b6040516100e991906107d5565b60405180910390f35b610105610100366004610846565b6102ac565b60405190151581526020016100e9565b61011d6102c4565b6040519081526020016100e9565b610105610139366004610870565b6102f1565b600654600160a01b900460ff1660405160ff90911681526020016100e9565b61010561016b366004610846565b610315565b61018361017e3660046108ac565b610337565b005b61011d6101933660046108ac565b6001600160a01b031660009081526020819052604090205490565b6100dc6103a6565b6101056101c4366004610846565b6103b5565b6101056101d7366004610846565b610430565b6006546101ef906001600160a01b031681565b6040516001600160a01b0390911681526020016100e9565b61011d6102153660046108ce565b61043e565b60606003805461022990610901565b80601f016020809104026020016040519081016040528092919081815260200182805461025590610901565b80156102a25780601f10610277576101008083540402835291602001916102a2565b820191906000526020600020905b81548152906001019060200180831161028557829003601f168201915b5050505050905090565b6000336102ba818585610469565b5060019392505050565b6006546001600160a01b03166000908152602081905260408120546005546102ec9190610952565b905090565b6000336102ff85828561058d565b61030a858585610607565b506001949350505050565b6000336102ba818585610328838361043e565b6103329190610969565b610469565b6006546001600160a01b031633146103845760405162461bcd60e51b815260206004820152600b60248201526a4e6f74206772617669747960a81b60448201526064015b60405180910390fd5b600680546001600160a01b0319166001600160a01b0392909216919091179055565b60606004805461022990610901565b600033816103c3828661043e565b9050838110156104235760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161037b565b61030a8286868403610469565b6000336102ba818585610607565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166104cb5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161037b565b6001600160a01b03821661052c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161037b565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610599848461043e565b9050600019811461060157818110156105f45760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161037b565b6106018484848403610469565b50505050565b6001600160a01b03831661066b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161037b565b6001600160a01b0382166106cd5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161037b565b6001600160a01b038316600090815260208190526040902054818110156107455760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161037b565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061077c908490610969565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516107c891815260200190565b60405180910390a3610601565b600060208083528351808285015260005b81811015610802578581018301518582016040015282016107e6565b81811115610814576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461084157600080fd5b919050565b6000806040838503121561085957600080fd5b6108628361082a565b946020939093013593505050565b60008060006060848603121561088557600080fd5b61088e8461082a565b925061089c6020850161082a565b9150604084013590509250925092565b6000602082840312156108be57600080fd5b6108c78261082a565b9392505050565b600080604083850312156108e157600080fd5b6108ea8361082a565b91506108f86020840161082a565b90509250929050565b600181811c9082168061091557607f821691505b6020821081141561093657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000828210156109645761096461093c565b500390565b6000821982111561097c5761097c61093c565b50019056fea2646970667358221220928362dd99a89a29d1bd2d03bb17d7d21dcbd8f18a403b1807b489f36a3fab5d64736f6c634300080a0033000000000000000000000000f6e06de459057d3efa8f0ebd3656e06f66ea02da000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000003565653000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035656530000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c80635fd130a91161008c578063a457c2d711610066578063a457c2d7146101b6578063a9059cbb146101c9578063cbf0a64e146101dc578063dd62ed3e1461020757600080fd5b80635fd130a91461017057806370a082311461018557806395d89b41146101ae57600080fd5b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461011557806323b872dd1461012b578063313ce5671461013e578063395093511461015d575b600080fd5b6100dc61021a565b6040516100e991906107d5565b60405180910390f35b610105610100366004610846565b6102ac565b60405190151581526020016100e9565b61011d6102c4565b6040519081526020016100e9565b610105610139366004610870565b6102f1565b600654600160a01b900460ff1660405160ff90911681526020016100e9565b61010561016b366004610846565b610315565b61018361017e3660046108ac565b610337565b005b61011d6101933660046108ac565b6001600160a01b031660009081526020819052604090205490565b6100dc6103a6565b6101056101c4366004610846565b6103b5565b6101056101d7366004610846565b610430565b6006546101ef906001600160a01b031681565b6040516001600160a01b0390911681526020016100e9565b61011d6102153660046108ce565b61043e565b60606003805461022990610901565b80601f016020809104026020016040519081016040528092919081815260200182805461025590610901565b80156102a25780601f10610277576101008083540402835291602001916102a2565b820191906000526020600020905b81548152906001019060200180831161028557829003601f168201915b5050505050905090565b6000336102ba818585610469565b5060019392505050565b6006546001600160a01b03166000908152602081905260408120546005546102ec9190610952565b905090565b6000336102ff85828561058d565b61030a858585610607565b506001949350505050565b6000336102ba818585610328838361043e565b6103329190610969565b610469565b6006546001600160a01b031633146103845760405162461bcd60e51b815260206004820152600b60248201526a4e6f74206772617669747960a81b60448201526064015b60405180910390fd5b600680546001600160a01b0319166001600160a01b0392909216919091179055565b60606004805461022990610901565b600033816103c3828661043e565b9050838110156104235760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161037b565b61030a8286868403610469565b6000336102ba818585610607565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166104cb5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161037b565b6001600160a01b03821661052c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161037b565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610599848461043e565b9050600019811461060157818110156105f45760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161037b565b6106018484848403610469565b50505050565b6001600160a01b03831661066b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161037b565b6001600160a01b0382166106cd5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161037b565b6001600160a01b038316600090815260208190526040902054818110156107455760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161037b565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061077c908490610969565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516107c891815260200190565b60405180910390a3610601565b600060208083528351808285015260005b81811015610802578581018301518582016040015282016107e6565b81811115610814576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461084157600080fd5b919050565b6000806040838503121561085957600080fd5b6108628361082a565b946020939093013593505050565b60008060006060848603121561088557600080fd5b61088e8461082a565b925061089c6020850161082a565b9150604084013590509250925092565b6000602082840312156108be57600080fd5b6108c78261082a565b9392505050565b600080604083850312156108e157600080fd5b6108ea8361082a565b91506108f86020840161082a565b90509250929050565b600181811c9082168061091557607f821691505b6020821081141561093657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000828210156109645761096461093c565b500390565b6000821982111561097c5761097c61093c565b50019056fea2646970667358221220928362dd99a89a29d1bd2d03bb17d7d21dcbd8f18a403b1807b489f36a3fab5d64736f6c634300080a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000f6e06de459057d3efa8f0ebd3656e06f66ea02da000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000003565653000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035656530000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _gravityAddress (address): 0xF6E06De459057d3Efa8f0EbD3656e06F66ea02da
Arg [1] : _name (string): VVS
Arg [2] : _symbol (string): VVS
Arg [3] : _decimals (uint8): 18
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 000000000000000000000000f6e06de459057d3efa8f0ebd3656e06f66ea02da
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 5656530000000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 5656530000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
17636:1894:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6769:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9120:201;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;9120:201:0;1053:187:1;18773:125:0;;;:::i;:::-;;;1391:25:1;;;1379:2;1364:18;18773:125:0;1245:177:1;9901:295:0;;;;;;:::i;:::-;;:::i;19430:95::-;19503:14;;-1:-1:-1;;;19503:14:0;;;;19430:95;;1932:4:1;1920:17;;;1902:36;;1890:2;1875:18;19430:95:0;1760:184:1;10605:238:0;;;;;;:::i;:::-;;:::i;19066:120::-;;;;;;:::i;:::-;;:::i;:::-;;8060:127;;;;;;:::i;:::-;-1:-1:-1;;;;;8161:18:0;8134:7;8161:18;;;;;;;;;;;;8060:127;6988:104;;;:::i;11346:436::-;;;;;;:::i;:::-;;:::i;8393:193::-;;;;;;:::i;:::-;;:::i;17719:22::-;;;;;-1:-1:-1;;;;;17719:22:0;;;;;;-1:-1:-1;;;;;2304:32:1;;;2286:51;;2274:2;2259:18;17719:22:0;2140:203:1;8649:151:0;;;;;;:::i;:::-;;:::i;6769:100::-;6823:13;6856:5;6849:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6769:100;:::o;9120:201::-;9203:4;4485:10;9259:32;4485:10;9275:7;9284:6;9259:8;:32::i;:::-;-1:-1:-1;9309:4:0;;9120:201;-1:-1:-1;;;9120:201:0:o;18773:125::-;18882:7;;-1:-1:-1;;;;;18882:7:0;18834;8161:18;;;;;;;;;;;18861:8;;:29;;;;:::i;:::-;18854:36;;18773:125;:::o;9901:295::-;10032:4;4485:10;10090:38;10106:4;4485:10;10121:6;10090:15;:38::i;:::-;10139:27;10149:4;10155:2;10159:6;10139:9;:27::i;:::-;-1:-1:-1;10184:4:0;;9901:295;-1:-1:-1;;;;9901:295:0:o;10605:238::-;10693:4;4485:10;10749:64;4485:10;10765:7;10802:10;10774:25;4485:10;10765:7;10774:9;:25::i;:::-;:38;;;;:::i;:::-;10749:8;:64::i;19066:120::-;17921:7;;-1:-1:-1;;;;;17921:7:0;17907:10;:21;17899:45;;;;-1:-1:-1;;;17899:45:0;;3595:2:1;17899:45:0;;;3577:21:1;3634:2;3614:18;;;3607:30;-1:-1:-1;;;3653:18:1;;;3646:41;3704:18;;17899:45:0;;;;;;;;;19153:7:::1;:25:::0;;-1:-1:-1;;;;;;19153:25:0::1;-1:-1:-1::0;;;;;19153:25:0;;;::::1;::::0;;;::::1;::::0;;19066:120::o;6988:104::-;7044:13;7077:7;7070:14;;;;;:::i;11346:436::-;11439:4;4485:10;11439:4;11522:25;4485:10;11539:7;11522:9;:25::i;:::-;11495:52;;11586:15;11566:16;:35;;11558:85;;;;-1:-1:-1;;;11558:85:0;;3935:2:1;11558:85:0;;;3917:21:1;3974:2;3954:18;;;3947:30;4013:34;3993:18;;;3986:62;-1:-1:-1;;;4064:18:1;;;4057:35;4109:19;;11558:85:0;3733:401:1;11558:85:0;11679:60;11688:5;11695:7;11723:15;11704:16;:34;11679:8;:60::i;8393:193::-;8472:4;4485:10;8528:28;4485:10;8545:2;8549:6;8528:9;:28::i;8649:151::-;-1:-1:-1;;;;;8765:18:0;;;8738:7;8765:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8649:151::o;14971:380::-;-1:-1:-1;;;;;15107:19:0;;15099:68;;;;-1:-1:-1;;;15099:68:0;;4341:2:1;15099:68:0;;;4323:21:1;4380:2;4360:18;;;4353:30;4419:34;4399:18;;;4392:62;-1:-1:-1;;;4470:18:1;;;4463:34;4514:19;;15099:68:0;4139:400:1;15099:68:0;-1:-1:-1;;;;;15186:21:0;;15178:68;;;;-1:-1:-1;;;15178:68:0;;4746:2:1;15178:68:0;;;4728:21:1;4785:2;4765:18;;;4758:30;4824:34;4804:18;;;4797:62;-1:-1:-1;;;4875:18:1;;;4868:32;4917:19;;15178:68:0;4544:398:1;15178:68:0;-1:-1:-1;;;;;15259:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15311:32;;1391:25:1;;;15311:32:0;;1364:18:1;15311:32:0;;;;;;;14971:380;;;:::o;15642:453::-;15777:24;15804:25;15814:5;15821:7;15804:9;:25::i;:::-;15777:52;;-1:-1:-1;;15844:16:0;:37;15840:248;;15926:6;15906:16;:26;;15898:68;;;;-1:-1:-1;;;15898:68:0;;5149:2:1;15898:68:0;;;5131:21:1;5188:2;5168:18;;;5161:30;5227:31;5207:18;;;5200:59;5276:18;;15898:68:0;4947:353:1;15898:68:0;16010:51;16019:5;16026:7;16054:6;16035:16;:25;16010:8;:51::i;:::-;15766:329;15642:453;;;:::o;12252:671::-;-1:-1:-1;;;;;12383:18:0;;12375:68;;;;-1:-1:-1;;;12375:68:0;;5507:2:1;12375:68:0;;;5489:21:1;5546:2;5526:18;;;5519:30;5585:34;5565:18;;;5558:62;-1:-1:-1;;;5636:18:1;;;5629:35;5681:19;;12375:68:0;5305:401:1;12375:68:0;-1:-1:-1;;;;;12462:16:0;;12454:64;;;;-1:-1:-1;;;12454:64:0;;5913:2:1;12454:64:0;;;5895:21:1;5952:2;5932:18;;;5925:30;5991:34;5971:18;;;5964:62;-1:-1:-1;;;6042:18:1;;;6035:33;6085:19;;12454:64:0;5711:399:1;12454:64:0;-1:-1:-1;;;;;12604:15:0;;12582:19;12604:15;;;;;;;;;;;12638:21;;;;12630:72;;;;-1:-1:-1;;;12630:72:0;;6317:2:1;12630:72:0;;;6299:21:1;6356:2;6336:18;;;6329:30;6395:34;6375:18;;;6368:62;-1:-1:-1;;;6446:18:1;;;6439:36;6492:19;;12630:72:0;6115:402:1;12630:72:0;-1:-1:-1;;;;;12738:15:0;;;:9;:15;;;;;;;;;;;12756:20;;;12738:38;;12798:13;;;;;;;;:23;;12770:6;;12738:9;12798:23;;12770:6;;12798:23;:::i;:::-;;;;;;;;12854:2;-1:-1:-1;;;;;12839:26:0;12848:4;-1:-1:-1;;;;;12839:26:0;;12858:6;12839:26;;;;1391:25:1;;1379:2;1364:18;;1245:177;12839:26:0;;;;;;;;12878:37;16695:125;14:597:1;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;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1427:328::-;1504:6;1512;1520;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:29;1631:9;1612:29;:::i;:::-;1602:39;;1660:38;1694:2;1683:9;1679:18;1660:38;:::i;:::-;1650:48;;1745:2;1734:9;1730:18;1717:32;1707:42;;1427:328;;;;;:::o;1949:186::-;2008:6;2061:2;2049:9;2040:7;2036:23;2032:32;2029:52;;;2077:1;2074;2067:12;2029:52;2100:29;2119:9;2100:29;:::i;:::-;2090:39;1949:186;-1:-1:-1;;;1949:186:1:o;2348:260::-;2416:6;2424;2477:2;2465:9;2456:7;2452:23;2448:32;2445:52;;;2493:1;2490;2483:12;2445:52;2516:29;2535:9;2516:29;:::i;:::-;2506:39;;2564:38;2598:2;2587:9;2583:18;2564:38;:::i;:::-;2554:48;;2348:260;;;;;:::o;2613:380::-;2692:1;2688:12;;;;2735;;;2756:61;;2810:4;2802:6;2798:17;2788:27;;2756:61;2863:2;2855:6;2852:14;2832:18;2829:38;2826:161;;;2909:10;2904:3;2900:20;2897:1;2890:31;2944:4;2941:1;2934:15;2972:4;2969:1;2962:15;2826:161;;2613:380;;;:::o;2998:127::-;3059:10;3054:3;3050:20;3047:1;3040:31;3090:4;3087:1;3080:15;3114:4;3111:1;3104:15;3130:125;3170:4;3198:1;3195;3192:8;3189:34;;;3203:18;;:::i;:::-;-1:-1:-1;3240:9:1;;3130:125::o;3260:128::-;3300:3;3331:1;3327:6;3324:1;3321:13;3318:39;;;3337:18;;:::i;:::-;-1:-1:-1;3373:9:1;;3260:128::o
Swarm Source
ipfs://928362dd99a89a29d1bd2d03bb17d7d21dcbd8f18a403b1807b489f36a3fab5d
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.