ERC-20
Cloud
Overview
Max Total Supply
1,119,294.54291701 INXT
Holders
665 ( -0.301%)
Market
Price
$0.09 @ 0.000024 ETH (-2.47%)
Onchain Market Cap
$96,793.23
Circulating Supply Market Cap
$96,812.00
Other Info
Token Contract (WITH 8 Decimals)
Balance
172.06097237 INXTValue
$14.88 ( ~0.00421231008608665 Eth) [0.0154%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Internxt
Compiler Version
v0.8.10+commit.fc410830
Optimization Enabled:
No with 1000 runs
Other Settings:
byzantium EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity ^0.8.3; import '@openzeppelin/contracts/token/ERC20/ERC20.sol'; contract Internxt is ERC20 { function decimals() public view virtual override returns (uint8) { return 8; } constructor(string memory name, string memory symbol) ERC20(name, symbol) { _mint(msg.sender, 111929454291701); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (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.0 (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.0 (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.0 (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.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 {} }
{ "remappings": [], "optimizer": { "enabled": false, "runs": 1000 }, "evmVersion": "byzantium", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "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"}],"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":[{"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":[],"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"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162001aa038038062001aa0833981810160405281019062000037919062000478565b81818160039080519060200190620000519291906200022b565b5080600490805190602001906200006a9291906200022b565b5050506200008e336565cc9b5ceaf562000096640100000000026401000000009004565b5050620006a9565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000109576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000100906200055e565b60405180910390fd5b620001266000838362000221640100000000026401000000009004565b80600260008282546200013a9190620005b9565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620001919190620005b9565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620001f8919062000627565b60405180910390a36200021d6000838362000226640100000000026401000000009004565b5050565b505050565b505050565b828054620002399062000673565b90600052602060002090601f0160209004810192826200025d5760008555620002a9565b82601f106200027857805160ff1916838001178555620002a9565b82800160010185558215620002a9579182015b82811115620002a85782518255916020019190600101906200028b565b5b509050620002b89190620002bc565b5090565b5b80821115620002d7576000816000905550600101620002bd565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200034482620002f9565b810181811067ffffffffffffffff821117156200036657620003656200030a565b5b80604052505050565b60006200037b620002db565b905062000389828262000339565b919050565b600067ffffffffffffffff821115620003ac57620003ab6200030a565b5b620003b782620002f9565b9050602081019050919050565b60005b83811015620003e4578082015181840152602081019050620003c7565b83811115620003f4576000848401525b50505050565b6000620004116200040b846200038e565b6200036f565b90508281526020810184848401111562000430576200042f620002f4565b5b6200043d848285620003c4565b509392505050565b600082601f8301126200045d576200045c620002ef565b5b81516200046f848260208601620003fa565b91505092915050565b60008060408385031215620004925762000491620002e5565b5b600083015167ffffffffffffffff811115620004b357620004b2620002ea565b5b620004c18582860162000445565b925050602083015167ffffffffffffffff811115620004e557620004e4620002ea565b5b620004f38582860162000445565b9150509250929050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000546601f83620004fd565b915062000553826200050e565b602082019050919050565b60006020820190508181036000830152620005798162000537565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620005c68262000580565b9150620005d38362000580565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200060b576200060a6200058a565b5b828201905092915050565b620006218162000580565b82525050565b60006020820190506200063e600083018462000616565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200068c57607f821691505b60208210811415620006a357620006a262000644565b5b50919050565b6113e780620006b96000396000f3fe608060405234801561001057600080fd5b50600436106100e6576000357c010000000000000000000000000000000000000000000000000000000090048063395093511161009e578063a457c2d711610078578063a457c2d714610223578063a9059cbb14610253578063dd62ed3e14610283576100e6565b806339509351146101a557806370a08231146101d557806395d89b4114610205576100e6565b806318160ddd116100cf57806318160ddd1461013957806323b872dd14610157578063313ce56714610187576100e6565b806306fdde03146100eb578063095ea7b314610109575b600080fd5b6100f36102b3565b6040516101009190610c7b565b60405180910390f35b610123600480360381019061011e9190610d36565b610345565b6040516101309190610d91565b60405180910390f35b610141610363565b60405161014e9190610dbb565b60405180910390f35b610171600480360381019061016c9190610dd6565b61036d565b60405161017e9190610d91565b60405180910390f35b61018f610465565b60405161019c9190610e45565b60405180910390f35b6101bf60048036038101906101ba9190610d36565b61046e565b6040516101cc9190610d91565b60405180910390f35b6101ef60048036038101906101ea9190610e60565b61051a565b6040516101fc9190610dbb565b60405180910390f35b61020d610562565b60405161021a9190610c7b565b60405180910390f35b61023d60048036038101906102389190610d36565b6105f4565b60405161024a9190610d91565b60405180910390f35b61026d60048036038101906102689190610d36565b6106df565b60405161027a9190610d91565b60405180910390f35b61029d60048036038101906102989190610e8d565b6106fd565b6040516102aa9190610dbb565b60405180910390f35b6060600380546102c290610efc565b80601f01602080910402602001604051908101604052809291908181526020018280546102ee90610efc565b801561033b5780601f106103105761010080835404028352916020019161033b565b820191906000526020600020905b81548152906001019060200180831161031e57829003601f168201915b5050505050905090565b6000610359610352610784565b848461078c565b6001905092915050565b6000600254905090565b600061037a848484610957565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006103c5610784565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610445576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161043c90610fa0565b60405180910390fd5b61045985610451610784565b85840361078c565b60019150509392505050565b60006008905090565b600061051061047b610784565b848460016000610489610784565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461050b9190610fef565b61078c565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461057190610efc565b80601f016020809104026020016040519081016040528092919081815260200182805461059d90610efc565b80156105ea5780601f106105bf576101008083540402835291602001916105ea565b820191906000526020600020905b8154815290600101906020018083116105cd57829003601f168201915b5050505050905090565b60008060016000610603610784565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156106c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b7906110b7565b60405180910390fd5b6106d46106cb610784565b8585840361078c565b600191505092915050565b60006106f36106ec610784565b8484610957565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f390611149565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561086c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610863906111db565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161094a9190610dbb565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109be9061126d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2e906112ff565b60405180910390fd5b610a42838383610bd8565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abf90611391565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b5b9190610fef565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610bbf9190610dbb565b60405180910390a3610bd2848484610bdd565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610c1c578082015181840152602081019050610c01565b83811115610c2b576000848401525b50505050565b6000601f19601f8301169050919050565b6000610c4d82610be2565b610c578185610bed565b9350610c67818560208601610bfe565b610c7081610c31565b840191505092915050565b60006020820190508181036000830152610c958184610c42565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610ccd82610ca2565b9050919050565b610cdd81610cc2565b8114610ce857600080fd5b50565b600081359050610cfa81610cd4565b92915050565b6000819050919050565b610d1381610d00565b8114610d1e57600080fd5b50565b600081359050610d3081610d0a565b92915050565b60008060408385031215610d4d57610d4c610c9d565b5b6000610d5b85828601610ceb565b9250506020610d6c85828601610d21565b9150509250929050565b60008115159050919050565b610d8b81610d76565b82525050565b6000602082019050610da66000830184610d82565b92915050565b610db581610d00565b82525050565b6000602082019050610dd06000830184610dac565b92915050565b600080600060608486031215610def57610dee610c9d565b5b6000610dfd86828701610ceb565b9350506020610e0e86828701610ceb565b9250506040610e1f86828701610d21565b9150509250925092565b600060ff82169050919050565b610e3f81610e29565b82525050565b6000602082019050610e5a6000830184610e36565b92915050565b600060208284031215610e7657610e75610c9d565b5b6000610e8484828501610ceb565b91505092915050565b60008060408385031215610ea457610ea3610c9d565b5b6000610eb285828601610ceb565b9250506020610ec385828601610ceb565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680610f1457607f821691505b60208210811415610f2857610f27610ecd565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000610f8a602883610bed565b9150610f9582610f2e565b604082019050919050565b60006020820190508181036000830152610fb981610f7d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610ffa82610d00565b915061100583610d00565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561103a57611039610fc0565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006110a1602583610bed565b91506110ac82611045565b604082019050919050565b600060208201905081810360008301526110d081611094565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611133602483610bed565b915061113e826110d7565b604082019050919050565b6000602082019050818103600083015261116281611126565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006111c5602283610bed565b91506111d082611169565b604082019050919050565b600060208201905081810360008301526111f4816111b8565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611257602583610bed565b9150611262826111fb565b604082019050919050565b600060208201905081810360008301526112868161124a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006112e9602383610bed565b91506112f48261128d565b604082019050919050565b60006020820190508181036000830152611318816112dc565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061137b602683610bed565b91506113868261131f565b604082019050919050565b600060208201905081810360008301526113aa8161136e565b905091905056fea2646970667358221220ca7ac385064f332a21e682152c4777bc8b1d1ab7d0d452bbb163d446b4a37a9964736f6c634300080a0033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000008496e7465726e78740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004494e585400000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100e6576000357c010000000000000000000000000000000000000000000000000000000090048063395093511161009e578063a457c2d711610078578063a457c2d714610223578063a9059cbb14610253578063dd62ed3e14610283576100e6565b806339509351146101a557806370a08231146101d557806395d89b4114610205576100e6565b806318160ddd116100cf57806318160ddd1461013957806323b872dd14610157578063313ce56714610187576100e6565b806306fdde03146100eb578063095ea7b314610109575b600080fd5b6100f36102b3565b6040516101009190610c7b565b60405180910390f35b610123600480360381019061011e9190610d36565b610345565b6040516101309190610d91565b60405180910390f35b610141610363565b60405161014e9190610dbb565b60405180910390f35b610171600480360381019061016c9190610dd6565b61036d565b60405161017e9190610d91565b60405180910390f35b61018f610465565b60405161019c9190610e45565b60405180910390f35b6101bf60048036038101906101ba9190610d36565b61046e565b6040516101cc9190610d91565b60405180910390f35b6101ef60048036038101906101ea9190610e60565b61051a565b6040516101fc9190610dbb565b60405180910390f35b61020d610562565b60405161021a9190610c7b565b60405180910390f35b61023d60048036038101906102389190610d36565b6105f4565b60405161024a9190610d91565b60405180910390f35b61026d60048036038101906102689190610d36565b6106df565b60405161027a9190610d91565b60405180910390f35b61029d60048036038101906102989190610e8d565b6106fd565b6040516102aa9190610dbb565b60405180910390f35b6060600380546102c290610efc565b80601f01602080910402602001604051908101604052809291908181526020018280546102ee90610efc565b801561033b5780601f106103105761010080835404028352916020019161033b565b820191906000526020600020905b81548152906001019060200180831161031e57829003601f168201915b5050505050905090565b6000610359610352610784565b848461078c565b6001905092915050565b6000600254905090565b600061037a848484610957565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006103c5610784565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610445576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161043c90610fa0565b60405180910390fd5b61045985610451610784565b85840361078c565b60019150509392505050565b60006008905090565b600061051061047b610784565b848460016000610489610784565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461050b9190610fef565b61078c565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461057190610efc565b80601f016020809104026020016040519081016040528092919081815260200182805461059d90610efc565b80156105ea5780601f106105bf576101008083540402835291602001916105ea565b820191906000526020600020905b8154815290600101906020018083116105cd57829003601f168201915b5050505050905090565b60008060016000610603610784565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156106c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b7906110b7565b60405180910390fd5b6106d46106cb610784565b8585840361078c565b600191505092915050565b60006106f36106ec610784565b8484610957565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f390611149565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561086c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610863906111db565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161094a9190610dbb565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109be9061126d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2e906112ff565b60405180910390fd5b610a42838383610bd8565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abf90611391565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b5b9190610fef565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610bbf9190610dbb565b60405180910390a3610bd2848484610bdd565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610c1c578082015181840152602081019050610c01565b83811115610c2b576000848401525b50505050565b6000601f19601f8301169050919050565b6000610c4d82610be2565b610c578185610bed565b9350610c67818560208601610bfe565b610c7081610c31565b840191505092915050565b60006020820190508181036000830152610c958184610c42565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610ccd82610ca2565b9050919050565b610cdd81610cc2565b8114610ce857600080fd5b50565b600081359050610cfa81610cd4565b92915050565b6000819050919050565b610d1381610d00565b8114610d1e57600080fd5b50565b600081359050610d3081610d0a565b92915050565b60008060408385031215610d4d57610d4c610c9d565b5b6000610d5b85828601610ceb565b9250506020610d6c85828601610d21565b9150509250929050565b60008115159050919050565b610d8b81610d76565b82525050565b6000602082019050610da66000830184610d82565b92915050565b610db581610d00565b82525050565b6000602082019050610dd06000830184610dac565b92915050565b600080600060608486031215610def57610dee610c9d565b5b6000610dfd86828701610ceb565b9350506020610e0e86828701610ceb565b9250506040610e1f86828701610d21565b9150509250925092565b600060ff82169050919050565b610e3f81610e29565b82525050565b6000602082019050610e5a6000830184610e36565b92915050565b600060208284031215610e7657610e75610c9d565b5b6000610e8484828501610ceb565b91505092915050565b60008060408385031215610ea457610ea3610c9d565b5b6000610eb285828601610ceb565b9250506020610ec385828601610ceb565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680610f1457607f821691505b60208210811415610f2857610f27610ecd565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000610f8a602883610bed565b9150610f9582610f2e565b604082019050919050565b60006020820190508181036000830152610fb981610f7d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610ffa82610d00565b915061100583610d00565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561103a57611039610fc0565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006110a1602583610bed565b91506110ac82611045565b604082019050919050565b600060208201905081810360008301526110d081611094565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611133602483610bed565b915061113e826110d7565b604082019050919050565b6000602082019050818103600083015261116281611126565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006111c5602283610bed565b91506111d082611169565b604082019050919050565b600060208201905081810360008301526111f4816111b8565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611257602583610bed565b9150611262826111fb565b604082019050919050565b600060208201905081810360008301526112868161124a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006112e9602383610bed565b91506112f48261128d565b604082019050919050565b60006020820190508181036000830152611318816112dc565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061137b602683610bed565b91506113868261131f565b604082019050919050565b600060208201905081810360008301526113aa8161136e565b905091905056fea2646970667358221220ca7ac385064f332a21e682152c4777bc8b1d1ab7d0d452bbb163d446b4a37a9964736f6c634300080a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000008496e7465726e78740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004494e585400000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Internxt
Arg [1] : symbol (string): INXT
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [3] : 496e7465726e7874000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 494e585400000000000000000000000000000000000000000000000000000000
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.