ERC-20
Data
Overview
Max Total Supply
7,500,000,000 LAKE
Holders
10,043 ( 0.010%)
Market
Price
$0.00 @ 0.000001 ETH (-0.15%)
Onchain Market Cap
$10,771,157.15
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
180.594696949501501971 LAKEValue
$0.26 ( ~0.000139586371295198 Eth) [0.0000%]Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|---|---|---|---|---|
1 | ![]() | 0XF9CA9523E5B5A42C3018C62B084DB8543478C400-0XC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2 | $0.0014 0.0000008 Eth | $3,918.05 2,637,601.551 0XF9CA9523E5B5A42C3018C62B084DB8543478C400 | 99.9674% |
2 | ![]() | 0XDAC17F958D2EE523A2206206994597C13D831EC7-0XF9CA9523E5B5A42C3018C62B084DB8543478C400 | $0.0014 0.0000008 Eth | $843.27 859.029 0XDAC17F958D2EE523A2206206994597C13D831EC7 | 0.0326% |
Contract Name:
LakeToken
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity Standard Json-Input format)
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity 0.8.9;import '@openzeppelin/contracts/token/ERC20/ERC20.sol';import './access/Ownable2Step.sol';import './access/BlacklistManager.sol';error LakeToken_SenderIsBlacklisted();/*** @title Lake Token Contract*/contract LakeToken is ERC20, Ownable2Step, BlacklistManager {constructor(string memory _name,string memory _symbol,uint256 _initialSupply) ERC20(_name, _symbol) {_mint(_msgSender(), _initialSupply);}/*** @dev Overrides _beforeTokenTransfer function. Makes sure that sender is not blacklisted* @param _from sender address* @param _to receiver address* @param _amount uint256 amount of tokens
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.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}.
1234567891011121314151617181920212223242526// 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.*/
1234567891011121314151617181920212223242526// 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.*/
123456789101112131415161718192021222324// 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;}}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity 0.8.9;import '@openzeppelin/contracts/utils/Context.sol';import './Ownable.sol';import './VestingManager.sol';import 'hardhat/console.sol';error BlacklistManager_Error(string msg);abstract contract BlacklistManager is Ownable2Step, VestingManager {address private _blacklistManager;mapping(address => bool) internal blacklist;event BlacklistManagerChanged(address indexed previousManager, address indexed newManager);/*** @dev Initializes the contract setting the deployer as the initial blacklist manager.*/constructor() {_setBlacklistManager(_msgSender());}/*** @dev Throws if called by any account other than the blacklist manager.*/
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)pragma solidity 0.8.9;import '@openzeppelin/contracts/utils/Context.sol';error Ownable_Error(string msg);/*** @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);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.8.0) (access/Ownable2Step.sol)pragma solidity 0.8.9;import './Ownable.sol';error Ownable2Step_Error(string msg);/*** @dev Contract module which provides 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} and {acceptOwnership}.** This module is used through inheritance. It will make available all functions* from parent (Ownable).*/abstract contract Ownable2Step is Ownable {address private _pendingOwner;event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner);/**
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity 0.8.9;import './Ownable2Step.sol';error VestingManager_AddressIsZero();abstract contract VestingManager is Ownable2Step {/*** @dev Event is triggered when Vesting Contract Address is changed* @param _address address vesting*/event vestingAddressChanged(address _address);address public vesting;/*** @dev Changes the vesting address variable* @param _address new vesting contract address*/function setVestingAddress(address _address) external onlyOwner {if (_address == address(0x0)) {revert VestingManager_AddressIsZero();}vesting = _address;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity >= 0.4.22 <0.9.0;library console {address constant CONSOLE_ADDRESS = address(0x000000000000000000636F6e736F6c652e6c6f67);function _sendLogPayload(bytes memory payload) private view {uint256 payloadLength = payload.length;address consoleAddress = CONSOLE_ADDRESS;assembly {let payloadStart := add(payload, 32)let r := staticcall(gas(), consoleAddress, payloadStart, payloadLength, 0, 0)}}function log() internal view {_sendLogPayload(abi.encodeWithSignature("log()"));}function logInt(int256 p0) internal view {_sendLogPayload(abi.encodeWithSignature("log(int256)", p0));}function logUint(uint256 p0) internal view {_sendLogPayload(abi.encodeWithSignature("log(uint256)", p0));}
12345678910111213141516171819202122232425{"evmVersion": "london","libraries": {},"metadata": {"bytecodeHash": "ipfs","useLiteralContent": true},"optimizer": {"enabled": true,"runs": 9999},"remappings": [],"outputSelection": {"*": {"*": ["evm.bytecode","evm.deployedBytecode","devdoc","userdoc","metadata","abi"]}}}
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_initialSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"string","name":"msg","type":"string"}],"name":"BlacklistManager_Error","type":"error"},{"inputs":[],"name":"LakeToken_SenderIsBlacklisted","type":"error"},{"inputs":[{"internalType":"string","name":"msg","type":"string"}],"name":"Ownable2Step_Error","type":"error"},{"inputs":[{"internalType":"string","name":"msg","type":"string"}],"name":"Ownable_Error","type":"error"},{"inputs":[],"name":"VestingManager_AddressIsZero","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_account","type":"address"}],"name":"AddedToBlacklist","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousManager","type":"address"},{"indexed":true,"internalType":"address","name":"newManager","type":"address"}],"name":"BlacklistManagerChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","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":false,"internalType":"address","name":"_account","type":"address"}],"name":"RemovedFromBlacklist","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_address","type":"address"}],"name":"vestingAddressChanged","type":"event"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"addToBlacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blacklistManager","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"removeFromBlacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newManager","type":"address"}],"name":"setBlacklistManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setVestingAddress","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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vesting","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162001ad438038062001ad4833981016040819052620000349162000433565b8251839083906200004d906003906020850190620002c0565b50805162000063906004906020840190620002c0565b505050620000806200007a620000a060201b60201c565b620000a4565b6200008b33620000ce565b62000097338262000120565b5050506200050a565b3390565b600680546001600160a01b0319169055620000cb8162000216602090811b62000c5017901c565b50565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f6e6a8d676a3cd6ff50f9583bab195ce68041e437b842bc3a18aede1da261634190600090a35050565b6001600160a01b0382166200017b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b620001896000838362000268565b80600260008282546200019d9190620004a6565b90915550506001600160a01b03821660009081526020819052604081208054839290620001cc908490620004a6565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831660009081526009602052604090205460ff1615620002a3576040516332eda8a360e01b815260040160405180910390fd5b620002bb838383620002bb60201b62000cc71760201c565b505050565b828054620002ce90620004cd565b90600052602060002090601f016020900481019282620002f257600085556200033d565b82601f106200030d57805160ff19168380011785556200033d565b828001600101855582156200033d579182015b828111156200033d57825182559160200191906001019062000320565b506200034b9291506200034f565b5090565b5b808211156200034b576000815560010162000350565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200038e57600080fd5b81516001600160401b0380821115620003ab57620003ab62000366565b604051601f8301601f19908116603f01168101908282118183101715620003d657620003d662000366565b81604052838152602092508683858801011115620003f357600080fd5b600091505b83821015620004175785820183015181830184015290820190620003f8565b83821115620004295760008385830101525b9695505050505050565b6000806000606084860312156200044957600080fd5b83516001600160401b03808211156200046157600080fd5b6200046f878388016200037c565b945060208601519150808211156200048657600080fd5b5062000495868287016200037c565b925050604084015190509250925092565b60008219821115620004c857634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680620004e257607f821691505b602082108114156200050457634e487b7160e01b600052602260045260246000fd5b50919050565b6115ba806200051a6000396000f3fe608060405234801561001057600080fd5b50600436106101825760003560e01c80638da5cb5b116100d8578063d9dbf6571161008c578063e4d75c9d11610066578063e4d75c9d1461039b578063f2fde38b146103ae578063fe575a87146103c157600080fd5b8063d9dbf65714610319578063dd62ed3e14610337578063e30c39781461037d57600080fd5b8063a457c2d7116100bd578063a457c2d7146102e0578063a56c62cf146102f3578063a9059cbb1461030657600080fd5b80638da5cb5b146102ba57806395d89b41146102d857600080fd5b8063395093511161013a578063537df3b611610114578063537df3b61461026757806370a082311461027a57806379ba5097146102b057600080fd5b806339509351146101fc57806344337ea11461020f57806344c63eec1461022257600080fd5b806318160ddd1161016b57806318160ddd146101c857806323b872dd146101da578063313ce567146101ed57600080fd5b806306fdde0314610187578063095ea7b3146101a5575b600080fd5b61018f6103fa565b60405161019c919061139f565b60405180910390f35b6101b86101b3366004611436565b61048c565b604051901515815260200161019c565b6002545b60405190815260200161019c565b6101b86101e8366004611460565b6104a4565b6040516012815260200161019c565b6101b861020a366004611436565b6104c8565b6101b861021d36600461149c565b610514565b6007546102429073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161019c565b6101b861027536600461149c565b61070f565b6101cc61028836600461149c565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6102b861084a565b005b60055473ffffffffffffffffffffffffffffffffffffffff16610242565b61018f6108d9565b6101b86102ee366004611436565b6108e8565b6102b861030136600461149c565b6109b9565b6101b8610314366004611436565b610a47565b60085473ffffffffffffffffffffffffffffffffffffffff16610242565b6101cc6103453660046114be565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b60065473ffffffffffffffffffffffffffffffffffffffff16610242565b6102b86103a936600461149c565b610a55565b6102b86103bc36600461149c565b610b23565b6101b86103cf36600461149c565b73ffffffffffffffffffffffffffffffffffffffff1660009081526009602052604090205460ff1690565b606060038054610409906114f1565b80601f0160208091040260200160405190810160405280929190818152602001828054610435906114f1565b80156104825780601f1061045757610100808354040283529160200191610482565b820191906000526020600020905b81548152906001019060200180831161046557829003601f168201915b5050505050905090565b60003361049a818585610ccc565b5060019392505050565b6000336104b2858285610e7f565b6104bd858585610f56565b506001949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490919061049a908290869061050f908790611545565b610ccc565b60085460009073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146105d8576040517fc6981d5b000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f43616c6c6572206973206e6f742074686520626c61636b6c697374206d616e6160448201527f676572210000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b60075473ffffffffffffffffffffffffffffffffffffffff83811691161415610683576040517fc6981d5b00000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f43616e6e6f74206164642056657374696e6720636f6e7472616374206164647260448201527f65737320746f2074686520626c61636b6c69737421000000000000000000000060648201526084016105cf565b73ffffffffffffffffffffffffffffffffffffffff821660008181526009602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905590519182527ff9b68063b051b82957fa193585681240904fed808db8b30fc5a2d2202c6ed62791015b60405180910390a15060015b919050565b60085460009073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146107ce576040517fc6981d5b000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f43616c6c6572206973206e6f742074686520626c61636b6c697374206d616e6160448201527f676572210000000000000000000000000000000000000000000000000000000060648201526084016105cf565b73ffffffffffffffffffffffffffffffffffffffff821660008181526009602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905590519182527f2b6bf71b58b3583add364b3d9060ebf8019650f65f5be35f5464b9cb3e4ba2d491016106fe565b600654339073ffffffffffffffffffffffffffffffffffffffff1681146108cd576040517f252ec7cf00000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f43616c6c6572206973206e6f7420746865206e6577206f776e6572210000000060448201526064016105cf565b6108d681611214565b50565b606060048054610409906114f1565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190838110156109ac576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016105cf565b6104bd8286868403610ccc565b6109c1611245565b73ffffffffffffffffffffffffffffffffffffffff8116610a3e576040517fc6981d5b00000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f4e6577206d616e616765722069732061207a65726f206164647265737321000060448201526064016105cf565b6108d6816112c8565b60003361049a818585610f56565b610a5d611245565b73ffffffffffffffffffffffffffffffffffffffff8116610aaa576040517fee2fbc0700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040519081527f6dc0bbea79f8b20166b6c914c19444464556df4fa5843055bf85959cb07369ee9060200160405180910390a150565b610b2b611245565b73ffffffffffffffffffffffffffffffffffffffff8116610ba8576040517f252ec7cf00000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4e6577206f776e65722069732061207a65726f2061646472657373210000000060448201526064016105cf565b6006805473ffffffffffffffffffffffffffffffffffffffff83167fffffffffffffffffffffffff00000000000000000000000000000000000000009091168117909155610c0b60055473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b505050565b73ffffffffffffffffffffffffffffffffffffffff8316610d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016105cf565b73ffffffffffffffffffffffffffffffffffffffff8216610e11576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016105cf565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f505781811015610f43576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016105cf565b610f508484848403610ccc565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8316610ff9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016105cf565b73ffffffffffffffffffffffffffffffffffffffff821661109c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016105cf565b6110a783838361133f565b73ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260409020548181101561115d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016105cf565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152602081905260408082208585039055918516815290812080548492906111a1908490611545565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161120791815260200190565b60405180910390a3610f50565b600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001690556108d681610c50565b60055473ffffffffffffffffffffffffffffffffffffffff1633146112c6576040517f43069fd000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f43616c6c6572206973206e6f7420746865206f776e657221000000000000000060448201526064016105cf565b565b6008805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f6e6a8d676a3cd6ff50f9583bab195ce68041e437b842bc3a18aede1da261634190600090a35050565b73ffffffffffffffffffffffffffffffffffffffff831660009081526009602052604090205460ff1615610cc7576040517f32eda8a300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600060208083528351808285015260005b818110156113cc578581018301518582016040015282016113b0565b818111156113de576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461070a57600080fd5b6000806040838503121561144957600080fd5b61145283611412565b946020939093013593505050565b60008060006060848603121561147557600080fd5b61147e84611412565b925061148c60208501611412565b9150604084013590509250925092565b6000602082840312156114ae57600080fd5b6114b782611412565b9392505050565b600080604083850312156114d157600080fd5b6114da83611412565b91506114e860208401611412565b90509250929050565b600181811c9082168061150557607f821691505b6020821081141561153f577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b6000821982111561157f577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b50019056fea2646970667358221220f9e7eeae4cc6b918cb3f54e650885ee237e9d70891936fff3699bdb4ebc5f29f64736f6c63430008090033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000183bdac6ae9bc1c8cc000000000000000000000000000000000000000000000000000000000000000000000f44617461204c616b6520546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044c414b4500000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101825760003560e01c80638da5cb5b116100d8578063d9dbf6571161008c578063e4d75c9d11610066578063e4d75c9d1461039b578063f2fde38b146103ae578063fe575a87146103c157600080fd5b8063d9dbf65714610319578063dd62ed3e14610337578063e30c39781461037d57600080fd5b8063a457c2d7116100bd578063a457c2d7146102e0578063a56c62cf146102f3578063a9059cbb1461030657600080fd5b80638da5cb5b146102ba57806395d89b41146102d857600080fd5b8063395093511161013a578063537df3b611610114578063537df3b61461026757806370a082311461027a57806379ba5097146102b057600080fd5b806339509351146101fc57806344337ea11461020f57806344c63eec1461022257600080fd5b806318160ddd1161016b57806318160ddd146101c857806323b872dd146101da578063313ce567146101ed57600080fd5b806306fdde0314610187578063095ea7b3146101a5575b600080fd5b61018f6103fa565b60405161019c919061139f565b60405180910390f35b6101b86101b3366004611436565b61048c565b604051901515815260200161019c565b6002545b60405190815260200161019c565b6101b86101e8366004611460565b6104a4565b6040516012815260200161019c565b6101b861020a366004611436565b6104c8565b6101b861021d36600461149c565b610514565b6007546102429073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161019c565b6101b861027536600461149c565b61070f565b6101cc61028836600461149c565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6102b861084a565b005b60055473ffffffffffffffffffffffffffffffffffffffff16610242565b61018f6108d9565b6101b86102ee366004611436565b6108e8565b6102b861030136600461149c565b6109b9565b6101b8610314366004611436565b610a47565b60085473ffffffffffffffffffffffffffffffffffffffff16610242565b6101cc6103453660046114be565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b60065473ffffffffffffffffffffffffffffffffffffffff16610242565b6102b86103a936600461149c565b610a55565b6102b86103bc36600461149c565b610b23565b6101b86103cf36600461149c565b73ffffffffffffffffffffffffffffffffffffffff1660009081526009602052604090205460ff1690565b606060038054610409906114f1565b80601f0160208091040260200160405190810160405280929190818152602001828054610435906114f1565b80156104825780601f1061045757610100808354040283529160200191610482565b820191906000526020600020905b81548152906001019060200180831161046557829003601f168201915b5050505050905090565b60003361049a818585610ccc565b5060019392505050565b6000336104b2858285610e7f565b6104bd858585610f56565b506001949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490919061049a908290869061050f908790611545565b610ccc565b60085460009073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146105d8576040517fc6981d5b000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f43616c6c6572206973206e6f742074686520626c61636b6c697374206d616e6160448201527f676572210000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b60075473ffffffffffffffffffffffffffffffffffffffff83811691161415610683576040517fc6981d5b00000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f43616e6e6f74206164642056657374696e6720636f6e7472616374206164647260448201527f65737320746f2074686520626c61636b6c69737421000000000000000000000060648201526084016105cf565b73ffffffffffffffffffffffffffffffffffffffff821660008181526009602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905590519182527ff9b68063b051b82957fa193585681240904fed808db8b30fc5a2d2202c6ed62791015b60405180910390a15060015b919050565b60085460009073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146107ce576040517fc6981d5b000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f43616c6c6572206973206e6f742074686520626c61636b6c697374206d616e6160448201527f676572210000000000000000000000000000000000000000000000000000000060648201526084016105cf565b73ffffffffffffffffffffffffffffffffffffffff821660008181526009602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905590519182527f2b6bf71b58b3583add364b3d9060ebf8019650f65f5be35f5464b9cb3e4ba2d491016106fe565b600654339073ffffffffffffffffffffffffffffffffffffffff1681146108cd576040517f252ec7cf00000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f43616c6c6572206973206e6f7420746865206e6577206f776e6572210000000060448201526064016105cf565b6108d681611214565b50565b606060048054610409906114f1565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190838110156109ac576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016105cf565b6104bd8286868403610ccc565b6109c1611245565b73ffffffffffffffffffffffffffffffffffffffff8116610a3e576040517fc6981d5b00000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f4e6577206d616e616765722069732061207a65726f206164647265737321000060448201526064016105cf565b6108d6816112c8565b60003361049a818585610f56565b610a5d611245565b73ffffffffffffffffffffffffffffffffffffffff8116610aaa576040517fee2fbc0700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040519081527f6dc0bbea79f8b20166b6c914c19444464556df4fa5843055bf85959cb07369ee9060200160405180910390a150565b610b2b611245565b73ffffffffffffffffffffffffffffffffffffffff8116610ba8576040517f252ec7cf00000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4e6577206f776e65722069732061207a65726f2061646472657373210000000060448201526064016105cf565b6006805473ffffffffffffffffffffffffffffffffffffffff83167fffffffffffffffffffffffff00000000000000000000000000000000000000009091168117909155610c0b60055473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b505050565b73ffffffffffffffffffffffffffffffffffffffff8316610d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016105cf565b73ffffffffffffffffffffffffffffffffffffffff8216610e11576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016105cf565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f505781811015610f43576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016105cf565b610f508484848403610ccc565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8316610ff9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016105cf565b73ffffffffffffffffffffffffffffffffffffffff821661109c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016105cf565b6110a783838361133f565b73ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260409020548181101561115d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016105cf565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152602081905260408082208585039055918516815290812080548492906111a1908490611545565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161120791815260200190565b60405180910390a3610f50565b600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001690556108d681610c50565b60055473ffffffffffffffffffffffffffffffffffffffff1633146112c6576040517f43069fd000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f43616c6c6572206973206e6f7420746865206f776e657221000000000000000060448201526064016105cf565b565b6008805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f6e6a8d676a3cd6ff50f9583bab195ce68041e437b842bc3a18aede1da261634190600090a35050565b73ffffffffffffffffffffffffffffffffffffffff831660009081526009602052604090205460ff1615610cc7576040517f32eda8a300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600060208083528351808285015260005b818110156113cc578581018301518582016040015282016113b0565b818111156113de576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461070a57600080fd5b6000806040838503121561144957600080fd5b61145283611412565b946020939093013593505050565b60008060006060848603121561147557600080fd5b61147e84611412565b925061148c60208501611412565b9150604084013590509250925092565b6000602082840312156114ae57600080fd5b6114b782611412565b9392505050565b600080604083850312156114d157600080fd5b6114da83611412565b91506114e860208401611412565b90509250929050565b600181811c9082168061150557607f821691505b6020821081141561153f577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b6000821982111561157f577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b50019056fea2646970667358221220f9e7eeae4cc6b918cb3f54e650885ee237e9d70891936fff3699bdb4ebc5f29f64736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000183bdac6ae9bc1c8cc000000000000000000000000000000000000000000000000000000000000000000000f44617461204c616b6520546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044c414b4500000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Data Lake Token
Arg [1] : _symbol (string): LAKE
Arg [2] : _initialSupply (uint256): 7500000000000000000000000000
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000183bdac6ae9bc1c8cc000000
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [4] : 44617461204c616b6520546f6b656e0000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 4c414b4500000000000000000000000000000000000000000000000000000000
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.