Token Vector Token
Overview ERC20
Price
$0.00 @ 0.000000 AVAX
Fully Diluted Market Cap
Total Supply:
30,208,390.260691 VTX
Holders:
696 addresses
Transfers:
-
Contract:
Decimals:
18
[ Download CSV Export ]
[ Download CSV Export ]
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
VTX
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "MintableERC20.sol"; /// @title Vtx /// @author Vector Team contract VTX is MintableERC20 { uint256 public immutable MAX_SUPPLY = 100 * 10**6 * 1 ether; // uint256 public MAX_SUPPLY = 100 * 10**6 * 1 ether; constructor( string memory _name, string memory _symbol, uint256 _initialMint, address _initialMintTo ) MintableERC20(_name, _symbol) { _mint(_initialMintTo, _initialMint); } // VTX is owned by the Masterchief of the protocol, forbidding misuse of this function function mint(address _to, uint256 _amount) public override onlyOwner { if (totalSupply() + _amount > MAX_SUPPLY) { _amount = MAX_SUPPLY - totalSupply(); } _mint(_to, _amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "ERC20.sol"; import "Ownable.sol"; contract MintableERC20 is ERC20, Ownable { /* The ERC20 deployed will be owned by the others contracts of the protocol, specifically by Masterchief and MainStaking, forbidding the misuse of these functions for nefarious purposes */ constructor(string memory name_, string memory symbol_) ERC20(name_, symbol_) {} function mint(address account, uint256 amount) external virtual onlyOwner { _mint(account, amount); } function burn(address account, uint256 amount) external virtual onlyOwner { _burn(account, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "IERC20.sol"; import "IERC20Metadata.sol"; import "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.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: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, 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}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), 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}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - 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) { _approve(_msgSender(), spender, _allowances[_msgSender()][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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, 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 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/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount ) external returns (bool); /** * @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); }
// 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 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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
{ "evmVersion": "istanbul", "optimizer": { "enabled": true, "runs": 999 }, "libraries": { "vtx.sol": {} }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_initialMint","type":"uint256"},{"internalType":"address","name":"_initialMintTo","type":"address"}],"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":[],"stateMutability":"nonpayable","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":[],"name":"renounceOwnership","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040526a52b7d2dcc80cd2e40000006080523480156200002057600080fd5b506040516200144938038062001449833981016040819052620000439162000346565b8383818181600390805190602001906200005f929190620001e9565b50805162000075906004906020840190620001e9565b505050620000926200008c620000ab60201b60201c565b620000af565b50620000a19050818362000101565b5050505062000455565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200015c5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620001709190620003db565b90915550506001600160a01b038216600090815260208190526040812080548392906200019f908490620003db565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620001f79062000402565b90600052602060002090601f0160209004810192826200021b576000855562000266565b82601f106200023657805160ff191683800117855562000266565b8280016001018555821562000266579182015b828111156200026657825182559160200191906001019062000249565b506200027492915062000278565b5090565b5b8082111562000274576000815560010162000279565b600082601f830112620002a157600080fd5b81516001600160401b0380821115620002be57620002be6200043f565b604051601f8301601f19908116603f01168101908282118183101715620002e957620002e96200043f565b816040528381526020925086838588010111156200030657600080fd5b600091505b838210156200032a57858201830151818301840152908201906200030b565b838211156200033c5760008385830101525b9695505050505050565b600080600080608085870312156200035d57600080fd5b84516001600160401b03808211156200037557600080fd5b62000383888389016200028f565b955060208701519150808211156200039a57600080fd5b50620003a9878288016200028f565b60408701516060880151919550935090506001600160a01b0381168114620003d057600080fd5b939692955090935050565b60008219821115620003fd57634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200041757607f821691505b602082108114156200043957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b608051610fca6200047f6000396000818161019a015281816104c101526105030152610fca6000f3fe608060405234801561001057600080fd5b506004361061011b5760003560e01c806370a08231116100b25780639dc29fac11610081578063a9059cbb11610066578063a9059cbb1461025e578063dd62ed3e14610271578063f2fde38b146102aa57600080fd5b80639dc29fac14610238578063a457c2d71461024b57600080fd5b806370a08231146101e4578063715018a61461020d5780638da5cb5b1461021557806395d89b411461023057600080fd5b8063313ce567116100ee578063313ce5671461018657806332cb6b0c1461019557806339509351146101bc57806340c10f19146101cf57600080fd5b806306fdde0314610120578063095ea7b31461013e57806318160ddd1461016157806323b872dd14610173575b600080fd5b6101286102bd565b6040516101359190610ebf565b60405180910390f35b61015161014c366004610e95565b61034f565b6040519015158152602001610135565b6002545b604051908152602001610135565b610151610181366004610e59565b610365565b60405160128152602001610135565b6101657f000000000000000000000000000000000000000000000000000000000000000081565b6101516101ca366004610e95565b610429565b6101e26101dd366004610e95565b610465565b005b6101656101f2366004610e04565b6001600160a01b031660009081526020819052604090205490565b6101e2610538565b6005546040516001600160a01b039091168152602001610135565b61012861059e565b6101e2610246366004610e95565b6105ad565b610151610259366004610e95565b610611565b61015161026c366004610e95565b6106c2565b61016561027f366004610e26565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101e26102b8366004610e04565b6106cf565b6060600380546102cc90610f43565b80601f01602080910402602001604051908101604052809291908181526020018280546102f890610f43565b80156103455780601f1061031a57610100808354040283529160200191610345565b820191906000526020600020905b81548152906001019060200180831161032857829003601f168201915b5050505050905090565b600061035c3384846107b1565b50600192915050565b600061037284848461090a565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156104115760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61041e85338584036107b1565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161035c918590610460908690610f14565b6107b1565b6005546001600160a01b031633146104bf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610408565b7f0000000000000000000000000000000000000000000000000000000000000000816104ea60025490565b6104f49190610f14565b111561052a57600254610527907f0000000000000000000000000000000000000000000000000000000000000000610f2c565b90505b6105348282610b22565b5050565b6005546001600160a01b031633146105925760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610408565b61059c6000610c01565b565b6060600480546102cc90610f43565b6005546001600160a01b031633146106075760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610408565b6105348282610c6b565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156106ab5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610408565b6106b833858584036107b1565b5060019392505050565b600061035c33848461090a565b6005546001600160a01b031633146107295760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610408565b6001600160a01b0381166107a55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610408565b6107ae81610c01565b50565b6001600160a01b03831661082c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610408565b6001600160a01b0382166108a85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610408565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166109865760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610408565b6001600160a01b038216610a025760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610408565b6001600160a01b03831660009081526020819052604090205481811015610a915760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610408565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610ac8908490610f14565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b1491815260200190565b60405180910390a350505050565b6001600160a01b038216610b785760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610408565b8060026000828254610b8a9190610f14565b90915550506001600160a01b03821660009081526020819052604081208054839290610bb7908490610f14565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600580546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216610ce75760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610408565b6001600160a01b03821660009081526020819052604090205481811015610d765760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610408565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610da5908490610f2c565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016108fd565b80356001600160a01b0381168114610dff57600080fd5b919050565b600060208284031215610e1657600080fd5b610e1f82610de8565b9392505050565b60008060408385031215610e3957600080fd5b610e4283610de8565b9150610e5060208401610de8565b90509250929050565b600080600060608486031215610e6e57600080fd5b610e7784610de8565b9250610e8560208501610de8565b9150604084013590509250925092565b60008060408385031215610ea857600080fd5b610eb183610de8565b946020939093013593505050565b600060208083528351808285015260005b81811015610eec57858101830151858201604001528201610ed0565b81811115610efe576000604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610f2757610f27610f7e565b500190565b600082821015610f3e57610f3e610f7e565b500390565b600181811c90821680610f5757607f821691505b60208210811415610f7857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212209319b8d59a63f197b297dac0bf86b8c90af4aacf6f64478a21074d585bcb194664736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000018d0bf423c03d8de000000000000000000000000000000dd5cf30f56c37d3243a23543dc5bd5ee576970e2000000000000000000000000000000000000000000000000000000000000000c566563746f7220546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035654580000000000000000000000000000000000000000000000000000000000
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000018d0bf423c03d8de000000000000000000000000000000dd5cf30f56c37d3243a23543dc5bd5ee576970e2000000000000000000000000000000000000000000000000000000000000000c566563746f7220546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035654580000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Vector Token
Arg [1] : _symbol (string): VTX
Arg [2] : _initialMint (uint256): 30000000000000000000000000
Arg [3] : _initialMintTo (address): 0xdd5cf30f56c37d3243a23543dc5bd5ee576970e2
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 00000000000000000000000000000000000000000018d0bf423c03d8de000000
Arg [3] : 000000000000000000000000dd5cf30f56c37d3243a23543dc5bd5ee576970e2
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [5] : 566563746f7220546f6b656e0000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 5654580000000000000000000000000000000000000000000000000000000000
Deployed ByteCode Sourcemap
125:704:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2114:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4211:166;;;;;;:::i;:::-;;:::i;:::-;;;1659:14:7;;1652:22;1634:41;;1622:2;1607:18;4211:166:1;1494:187:7;3202:106:1;3289:12;;3202:106;;;7207:25:7;;;7195:2;7180:18;3202:106:1;7061:177:7;4844:478:1;;;;;;:::i;:::-;;:::i;3051:91::-;;;3133:2;7385:36:7;;7373:2;7358:18;3051:91:1;7243:184:7;161:59:6;;;;;5717:212:1;;;;;;:::i;:::-;;:::i;609:218:6:-;;;;;;:::i;:::-;;:::i;:::-;;3366:125:1;;;;;;:::i;:::-;-1:-1:-1;;;;;3466:18:1;3440:7;3466:18;;;;;;;;;;;;3366:125;1659:101:5;;;:::i;1027:85::-;1099:6;;1027:85;;-1:-1:-1;;;;;1099:6:5;;;1409:74:7;;1397:2;1382:18;1027:85:5;1263:226:7;2325:102:1;;;:::i;615:113:4:-;;;;;;:::i;:::-;;:::i;6416:405:1:-;;;;;;:::i;:::-;;:::i;3694:172::-;;;;;;:::i;:::-;;:::i;3924:149::-;;;;;;:::i;:::-;-1:-1:-1;;;;;4039:18:1;;;4013:7;4039:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3924:149;1909:198:5;;;;;;:::i;:::-;;:::i;2114:98:1:-;2168:13;2200:5;2193:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2114:98;:::o;4211:166::-;4294:4;4310:39;719:10:0;4333:7:1;4342:6;4310:8;:39::i;:::-;-1:-1:-1;4366:4:1;4211:166;;;;:::o;4844:478::-;4980:4;4996:36;5006:6;5014:9;5025:6;4996:9;:36::i;:::-;-1:-1:-1;;;;;5070:19:1;;5043:24;5070:19;;;:11;:19;;;;;;;;719:10:0;5070:33:1;;;;;;;;5121:26;;;;5113:79;;;;-1:-1:-1;;;5113:79:1;;4514:2:7;5113:79:1;;;4496:21:7;4553:2;4533:18;;;4526:30;4592:34;4572:18;;;4565:62;4663:10;4643:18;;;4636:38;4691:19;;5113:79:1;;;;;;;;;5226:57;5235:6;719:10:0;5276:6:1;5257:16;:25;5226:8;:57::i;:::-;-1:-1:-1;5311:4:1;;4844:478;-1:-1:-1;;;;4844:478:1:o;5717:212::-;719:10:0;5805:4:1;5853:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;5853:34:1;;;;;;;;;;5805:4;;5821:80;;5844:7;;5853:47;;5890:10;;5853:47;:::i;:::-;5821:8;:80::i;609:218:6:-;1099:6:5;;-1:-1:-1;;;;;1099:6:5;719:10:0;1239:23:5;1231:68;;;;-1:-1:-1;;;1231:68:5;;4923:2:7;1231:68:5;;;4905:21:7;;;4942:18;;;4935:30;5001:34;4981:18;;;4974:62;5053:18;;1231:68:5;4721:356:7;1231:68:5;719:10:6::1;709:7;693:13;3289:12:1::0;;;3202:106;693:13:6::1;:23;;;;:::i;:::-;:36;689:103;;;3289:12:1::0;;755:26:6::1;::::0;:10:::1;:26;:::i;:::-;745:36;;689:103;801:19;807:3;812:7;801:5;:19::i;:::-;609:218:::0;;:::o;1659:101:5:-;1099:6;;-1:-1:-1;;;;;1099:6:5;719:10:0;1239:23:5;1231:68;;;;-1:-1:-1;;;1231:68:5;;4923:2:7;1231:68:5;;;4905:21:7;;;4942:18;;;4935:30;5001:34;4981:18;;;4974:62;5053:18;;1231:68:5;4721:356:7;1231:68:5;1723:30:::1;1750:1;1723:18;:30::i;:::-;1659:101::o:0;2325:102:1:-;2381:13;2413:7;2406:14;;;;;:::i;615:113:4:-;1099:6:5;;-1:-1:-1;;;;;1099:6:5;719:10:0;1239:23:5;1231:68;;;;-1:-1:-1;;;1231:68:5;;4923:2:7;1231:68:5;;;4905:21:7;;;4942:18;;;4935:30;5001:34;4981:18;;;4974:62;5053:18;;1231:68:5;4721:356:7;1231:68:5;699:22:4::1;705:7;714:6;699:5;:22::i;6416:405:1:-:0;719:10:0;6509:4:1;6552:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;6552:34:1;;;;;;;;;;6604:35;;;;6596:85;;;;-1:-1:-1;;;6596:85:1;;6497:2:7;6596:85:1;;;6479:21:7;6536:2;6516:18;;;6509:30;6575:34;6555:18;;;6548:62;6646:7;6626:18;;;6619:35;6671:19;;6596:85:1;6295:401:7;6596:85:1;6715:67;719:10:0;6738:7:1;6766:15;6747:16;:34;6715:8;:67::i;:::-;-1:-1:-1;6810:4:1;;6416:405;-1:-1:-1;;;6416:405:1:o;3694:172::-;3780:4;3796:42;719:10:0;3820:9:1;3831:6;3796:9;:42::i;1909:198:5:-;1099:6;;-1:-1:-1;;;;;1099:6:5;719:10:0;1239:23:5;1231:68;;;;-1:-1:-1;;;1231:68:5;;4923:2:7;1231:68:5;;;4905:21:7;;;4942:18;;;4935:30;5001:34;4981:18;;;4974:62;5053:18;;1231:68:5;4721:356:7;1231:68:5;-1:-1:-1;;;;;1997:22:5;::::1;1989:73;;;::::0;-1:-1:-1;;;1989:73:5;;3297:2:7;1989:73:5::1;::::0;::::1;3279:21:7::0;3336:2;3316:18;;;3309:30;3375:34;3355:18;;;3348:62;3446:8;3426:18;;;3419:36;3472:19;;1989:73:5::1;3095:402:7::0;1989:73:5::1;2072:28;2091:8;2072:18;:28::i;:::-;1909:198:::0;:::o;9992:370:1:-;-1:-1:-1;;;;;10123:19:1;;10115:68;;;;-1:-1:-1;;;10115:68:1;;6092:2:7;10115:68:1;;;6074:21:7;6131:2;6111:18;;;6104:30;6170:34;6150:18;;;6143:62;6241:6;6221:18;;;6214:34;6265:19;;10115:68:1;5890:400:7;10115:68:1;-1:-1:-1;;;;;10201:21:1;;10193:68;;;;-1:-1:-1;;;10193:68:1;;3704:2:7;10193:68:1;;;3686:21:7;3743:2;3723:18;;;3716:30;3782:34;3762:18;;;3755:62;3853:4;3833:18;;;3826:32;3875:19;;10193:68:1;3502:398:7;10193:68:1;-1:-1:-1;;;;;10272:18:1;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10323:32;;7207:25:7;;;10323:32:1;;7180:18:7;10323:32:1;;;;;;;;9992:370;;;:::o;7295:713::-;-1:-1:-1;;;;;7430:20:1;;7422:70;;;;-1:-1:-1;;;7422:70:1;;5686:2:7;7422:70:1;;;5668:21:7;5725:2;5705:18;;;5698:30;5764:34;5744:18;;;5737:62;5835:7;5815:18;;;5808:35;5860:19;;7422:70:1;5484:401:7;7422:70:1;-1:-1:-1;;;;;7510:23:1;;7502:71;;;;-1:-1:-1;;;7502:71:1;;2490:2:7;7502:71:1;;;2472:21:7;2529:2;2509:18;;;2502:30;2568:34;2548:18;;;2541:62;2639:5;2619:18;;;2612:33;2662:19;;7502:71:1;2288:399:7;7502:71:1;-1:-1:-1;;;;;7666:17:1;;7642:21;7666:17;;;;;;;;;;;7701:23;;;;7693:74;;;;-1:-1:-1;;;7693:74:1;;4107:2:7;7693:74:1;;;4089:21:7;4146:2;4126:18;;;4119:30;4185:34;4165:18;;;4158:62;4256:8;4236:18;;;4229:36;4282:19;;7693:74:1;3905:402:7;7693:74:1;-1:-1:-1;;;;;7801:17:1;;;:9;:17;;;;;;;;;;;7821:22;;;7801:42;;7863:20;;;;;;;;:30;;7837:6;;7801:9;7863:30;;7837:6;;7863:30;:::i;:::-;;;;;;;;7926:9;-1:-1:-1;;;;;7909:35:1;7918:6;-1:-1:-1;;;;;7909:35:1;;7937:6;7909:35;;;;7207:25:7;;7195:2;7180:18;;7061:177;7909:35:1;;;;;;;;7412:596;7295:713;;;:::o;8284:389::-;-1:-1:-1;;;;;8367:21:1;;8359:65;;;;-1:-1:-1;;;8359:65:1;;6903:2:7;8359:65:1;;;6885:21:7;6942:2;6922:18;;;6915:30;6981:33;6961:18;;;6954:61;7032:18;;8359:65:1;6701:355:7;8359:65:1;8511:6;8495:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;8527:18:1;;:9;:18;;;;;;;;;;:28;;8549:6;;8527:9;:28;;8549:6;;8527:28;:::i;:::-;;;;-1:-1:-1;;8570:37:1;;7207:25:7;;;-1:-1:-1;;;;;8570:37:1;;;8587:1;;8570:37;;7195:2:7;7180:18;8570:37:1;;;;;;;609:218:6;;:::o;2261:187:5:-;2353:6;;;-1:-1:-1;;;;;2369:17:5;;;;;;;;;;;2401:40;;2353:6;;;2369:17;2353:6;;2401:40;;2334:16;;2401:40;2324:124;2261:187;:::o;8993:576:1:-;-1:-1:-1;;;;;9076:21:1;;9068:67;;;;-1:-1:-1;;;9068:67:1;;5284:2:7;9068:67:1;;;5266:21:7;5323:2;5303:18;;;5296:30;5362:34;5342:18;;;5335:62;5433:3;5413:18;;;5406:31;5454:19;;9068:67:1;5082:397:7;9068:67:1;-1:-1:-1;;;;;9231:18:1;;9206:22;9231:18;;;;;;;;;;;9267:24;;;;9259:71;;;;-1:-1:-1;;;9259:71:1;;2894:2:7;9259:71:1;;;2876:21:7;2933:2;2913:18;;;2906:30;2972:34;2952:18;;;2945:62;3043:4;3023:18;;;3016:32;3065:19;;9259:71:1;2692:398:7;9259:71:1;-1:-1:-1;;;;;9364:18:1;;:9;:18;;;;;;;;;;9385:23;;;9364:44;;9428:12;:22;;9402:6;;9364:9;9428:22;;9402:6;;9428:22;:::i;:::-;;;;-1:-1:-1;;9466:37:1;;7207:25:7;;;9492:1:1;;-1:-1:-1;;;;;9466:37:1;;;;;7195:2:7;7180:18;9466:37:1;7061:177:7;14:196;82:20;;-1:-1:-1;;;;;131:54:7;;121:65;;111:93;;200:1;197;190:12;111:93;14:196;;;:::o;215:186::-;274:6;327:2;315:9;306:7;302:23;298:32;295:52;;;343:1;340;333:12;295:52;366:29;385:9;366:29;:::i;:::-;356:39;215:186;-1:-1:-1;;;215:186:7:o;406:260::-;474:6;482;535:2;523:9;514:7;510:23;506:32;503:52;;;551:1;548;541:12;503:52;574:29;593:9;574:29;:::i;:::-;564:39;;622:38;656:2;645:9;641:18;622:38;:::i;:::-;612:48;;406:260;;;;;:::o;671:328::-;748:6;756;764;817:2;805:9;796:7;792:23;788:32;785:52;;;833:1;830;823:12;785:52;856:29;875:9;856:29;:::i;:::-;846:39;;904:38;938:2;927:9;923:18;904:38;:::i;:::-;894:48;;989:2;978:9;974:18;961:32;951:42;;671:328;;;;;:::o;1004:254::-;1072:6;1080;1133:2;1121:9;1112:7;1108:23;1104:32;1101:52;;;1149:1;1146;1139:12;1101:52;1172:29;1191:9;1172:29;:::i;:::-;1162:39;1248:2;1233:18;;;;1220:32;;-1:-1:-1;;;1004:254:7:o;1686:597::-;1798:4;1827:2;1856;1845:9;1838:21;1888:6;1882:13;1931:6;1926:2;1915:9;1911:18;1904:34;1956:1;1966:140;1980:6;1977:1;1974:13;1966:140;;;2075:14;;;2071:23;;2065:30;2041:17;;;2060:2;2037:26;2030:66;1995:10;;1966:140;;;2124:6;2121:1;2118:13;2115:91;;;2194:1;2189:2;2180:6;2169:9;2165:22;2161:31;2154:42;2115:91;-1:-1:-1;2267:2:7;2246:15;-1:-1:-1;;2242:29:7;2227:45;;;;2274:2;2223:54;;1686:597;-1:-1:-1;;;1686:597:7:o;7432:128::-;7472:3;7503:1;7499:6;7496:1;7493:13;7490:39;;;7509:18;;:::i;:::-;-1:-1:-1;7545:9:7;;7432:128::o;7565:125::-;7605:4;7633:1;7630;7627:8;7624:34;;;7638:18;;:::i;:::-;-1:-1:-1;7675:9:7;;7565:125::o;7695:437::-;7774:1;7770:12;;;;7817;;;7838:61;;7892:4;7884:6;7880:17;7870:27;;7838:61;7945:2;7937:6;7934:14;7914:18;7911:38;7908:218;;;-1:-1:-1;;;7979:1:7;7972:88;8083:4;8080:1;8073:15;8111:4;8108:1;8101:15;7908:218;;7695:437;;;:::o;8137:184::-;-1:-1:-1;;;8186:1:7;8179:88;8286:4;8283:1;8276:15;8310:4;8307:1;8300:15
Swarm Source
ipfs://9319b8d59a63f197b297dac0bf86b8c90af4aacf6f64478a21074d585bcb1946