Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
12,121,212 🚀
Holders
15
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
110,235.163997756 🚀Value
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SendIt
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-03 */ /** Whats up my moonboys, I am going to launch coin named “Send it” 🚀🚀🚀. All of us Eth degens use this phrase . I see people saying “lets send, send it, this will send” everywhere . I see this literally everywhere, so I decided to do coin that will be fun for everyone. I will lock Lp , taxes will be 0 as it is meant to be a fun project for the community. Lets FUCKING SEND IT GUYS!🚀🚀🚀 PreRenounced Contract 0 Tax https://t.me/TheyCallMeFat - Dev 0xC5282f3194FCce4C99f9a9A1568883314620316d - Deployer Wallet 0x7c4a909da802a74D83A381b157fE773FF3A67177 - Dev Wallet **/ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/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); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint256); } // File: @openzeppelin/contracts/utils/Context.sol pragma solidity ^0.8.0; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol pragma solidity ^0.8.0; contract ERC20 is Context, IERC20, IERC20Metadata { mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; uint256 private _decimals; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The defaut 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_,uint256 initialBalance_,uint256 decimals_,address tokenOwner) { _name = name_; _symbol = symbol_; _totalSupply = initialBalance_* 10**decimals_; _balances[tokenOwner] = _totalSupply; _decimals = decimals_; emit Transfer(address(0), tokenOwner, _totalSupply); } /** * @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 (uint256) { return _decimals; } /** * @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"); _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"); _approve(_msgSender(), spender, currentAllowance - subtractedValue); return true; } 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"); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); _balances[sender] = senderBalance - amount; _balances[recipient] += amount; emit Transfer(sender, recipient, amount); } 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); } } pragma solidity ^0.8.0; contract SendIt is ERC20 { constructor( string memory name_, string memory symbol_, uint256 decimals_, uint256 initialBalance_, address tokenOwner_, address payable feeReceiver_ ) payable ERC20(name_, symbol_,initialBalance_,decimals_,tokenOwner_) { payable(feeReceiver_).transfer(msg.value); } }
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":"decimals_","type":"uint256"},{"internalType":"uint256","name":"initialBalance_","type":"uint256"},{"internalType":"address","name":"tokenOwner_","type":"address"},{"internalType":"address payable","name":"feeReceiver_","type":"address"}],"stateMutability":"payable","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":"uint256","name":"","type":"uint256"}],"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
608060405260405162000ec738038062000ec783398101604081905262000026916200026d565b85858486858460049080519060200190620000439291906200011c565b508351620000599060059060208701906200011c565b506200006782600a62000368565b6200007390846200045d565b60028190556001600160a01b038216600081815260208190526040808220849055600386905551919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91620000cb9162000312565b60405180910390a350506040516001600160a01b03851693503480156108fc02935091506000818181858888f193505050501580156200010f573d6000803e3d6000fd5b5050505050505062000501565b8280546200012a906200047f565b90600052602060002090601f0160209004810192826200014e576000855562000199565b82601f106200016957805160ff191683800117855562000199565b8280016001018555821562000199579182015b82811115620001995782518255916020019190600101906200017c565b50620001a7929150620001ab565b5090565b5b80821115620001a75760008155600101620001ac565b600082601f830112620001d3578081fd5b81516001600160401b0380821115620001f057620001f0620004d2565b6040516020601f8401601f1916820181018381118382101715620002185762000218620004d2565b60405283825285840181018710156200022f578485fd5b8492505b8383101562000252578583018101518284018201529182019162000233565b838311156200026357848185840101525b5095945050505050565b60008060008060008060c0878903121562000286578182fd5b86516001600160401b03808211156200029d578384fd5b620002ab8a838b01620001c2565b97506020890151915080821115620002c1578384fd5b50620002d089828a01620001c2565b95505060408701519350606087015192506080870151620002f181620004e8565b60a08801519092506200030481620004e8565b809150509295509295509295565b90815260200190565b80825b60018086116200032f57506200035f565b818704821115620003445762000344620004bc565b808616156200035257918102915b9490941c9380026200031e565b94509492505050565b600062000379600019848462000380565b9392505050565b600082620003915750600162000379565b81620003a05750600062000379565b8160018114620003b95760028114620003c457620003f8565b600191505062000379565b60ff841115620003d857620003d8620004bc565b6001841b915084821115620003f157620003f1620004bc565b5062000379565b5060208310610133831016604e8410600b841016171562000430575081810a838111156200042a576200042a620004bc565b62000379565b6200043f84848460016200031b565b808604821115620004545762000454620004bc565b02949350505050565b60008160001904831182151516156200047a576200047a620004bc565b500290565b6002810460018216806200049457607f821691505b60208210811415620004b657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114620004fe57600080fd5b50565b6109b680620005116000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461011c57806370a082311461012f57806395d89b4114610142578063a457c2d71461014a578063a9059cbb1461015d578063dd62ed3e14610170576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100ec57806323b872dd14610101578063313ce56714610114575b600080fd5b6100b6610183565b6040516100c391906106c3565b60405180910390f35b6100df6100da36600461068f565b610215565b6040516100c391906106b8565b6100f4610232565b6040516100c391906108f7565b6100df61010f366004610654565b610238565b6100f46102d8565b6100df61012a36600461068f565b6102de565b6100f461013d366004610601565b61032d565b6100b661034c565b6100df61015836600461068f565b61035b565b6100df61016b36600461068f565b6103d6565b6100f461017e366004610622565b6103ea565b6060600480546101929061092f565b80601f01602080910402602001604051908101604052809291908181526020018280546101be9061092f565b801561020b5780601f106101e05761010080835404028352916020019161020b565b820191906000526020600020905b8154815290600101906020018083116101ee57829003601f168201915b5050505050905090565b6000610229610222610415565b8484610419565b50600192915050565b60025490565b60006102458484846104cd565b6001600160a01b038416600090815260016020526040812081610266610415565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156102b25760405162461bcd60e51b81526004016102a9906107e1565b60405180910390fd5b6102cd856102be610415565b6102c88685610918565b610419565b506001949350505050565b60035490565b60006102296102eb610415565b8484600160006102f9610415565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546102c89190610900565b6001600160a01b0381166000908152602081905260409020545b919050565b6060600580546101929061092f565b6000806001600061036a610415565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156103b65760405162461bcd60e51b81526004016102a9906108b2565b6103cc6103c1610415565b856102c88685610918565b5060019392505050565b60006102296103e3610415565b84846104cd565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3390565b6001600160a01b03831661043f5760405162461bcd60e51b81526004016102a99061086e565b6001600160a01b0382166104655760405162461bcd60e51b81526004016102a990610759565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906104c09085906108f7565b60405180910390a3505050565b6001600160a01b0383166104f35760405162461bcd60e51b81526004016102a990610829565b6001600160a01b0382166105195760405162461bcd60e51b81526004016102a990610716565b6001600160a01b038316600090815260208190526040902054818110156105525760405162461bcd60e51b81526004016102a99061079b565b61055c8282610918565b6001600160a01b038086166000908152602081905260408082209390935590851681529081208054849290610592908490610900565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516105dc91906108f7565b60405180910390a350505050565b80356001600160a01b038116811461034757600080fd5b600060208284031215610612578081fd5b61061b826105ea565b9392505050565b60008060408385031215610634578081fd5b61063d836105ea565b915061064b602084016105ea565b90509250929050565b600080600060608486031215610668578081fd5b610671846105ea565b925061067f602085016105ea565b9150604084013590509250925092565b600080604083850312156106a1578182fd5b6106aa836105ea565b946020939093013593505050565b901515815260200190565b6000602080835283518082850152825b818110156106ef578581018301518582016040015282016106d3565b818111156107005783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b600082198211156109135761091361096a565b500190565b60008282101561092a5761092a61096a565b500390565b60028104600182168061094357607f821691505b6020821081141561096457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220b68d42555030ae1b9a9e1da50ceee250006386a32c51c9258a8ffb49d7d5386264736f6c6343000800003300000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000b8f47c000000000000000000000000c5282f3194fcce4c99f9a9a1568883314620316d000000000000000000000000c5282f3194fcce4c99f9a9a1568883314620316d000000000000000000000000000000000000000000000000000000000000000753656e74204974000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004f09f9a8000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461011c57806370a082311461012f57806395d89b4114610142578063a457c2d71461014a578063a9059cbb1461015d578063dd62ed3e14610170576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100ec57806323b872dd14610101578063313ce56714610114575b600080fd5b6100b6610183565b6040516100c391906106c3565b60405180910390f35b6100df6100da36600461068f565b610215565b6040516100c391906106b8565b6100f4610232565b6040516100c391906108f7565b6100df61010f366004610654565b610238565b6100f46102d8565b6100df61012a36600461068f565b6102de565b6100f461013d366004610601565b61032d565b6100b661034c565b6100df61015836600461068f565b61035b565b6100df61016b36600461068f565b6103d6565b6100f461017e366004610622565b6103ea565b6060600480546101929061092f565b80601f01602080910402602001604051908101604052809291908181526020018280546101be9061092f565b801561020b5780601f106101e05761010080835404028352916020019161020b565b820191906000526020600020905b8154815290600101906020018083116101ee57829003601f168201915b5050505050905090565b6000610229610222610415565b8484610419565b50600192915050565b60025490565b60006102458484846104cd565b6001600160a01b038416600090815260016020526040812081610266610415565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156102b25760405162461bcd60e51b81526004016102a9906107e1565b60405180910390fd5b6102cd856102be610415565b6102c88685610918565b610419565b506001949350505050565b60035490565b60006102296102eb610415565b8484600160006102f9610415565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546102c89190610900565b6001600160a01b0381166000908152602081905260409020545b919050565b6060600580546101929061092f565b6000806001600061036a610415565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156103b65760405162461bcd60e51b81526004016102a9906108b2565b6103cc6103c1610415565b856102c88685610918565b5060019392505050565b60006102296103e3610415565b84846104cd565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3390565b6001600160a01b03831661043f5760405162461bcd60e51b81526004016102a99061086e565b6001600160a01b0382166104655760405162461bcd60e51b81526004016102a990610759565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906104c09085906108f7565b60405180910390a3505050565b6001600160a01b0383166104f35760405162461bcd60e51b81526004016102a990610829565b6001600160a01b0382166105195760405162461bcd60e51b81526004016102a990610716565b6001600160a01b038316600090815260208190526040902054818110156105525760405162461bcd60e51b81526004016102a99061079b565b61055c8282610918565b6001600160a01b038086166000908152602081905260408082209390935590851681529081208054849290610592908490610900565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516105dc91906108f7565b60405180910390a350505050565b80356001600160a01b038116811461034757600080fd5b600060208284031215610612578081fd5b61061b826105ea565b9392505050565b60008060408385031215610634578081fd5b61063d836105ea565b915061064b602084016105ea565b90509250929050565b600080600060608486031215610668578081fd5b610671846105ea565b925061067f602085016105ea565b9150604084013590509250925092565b600080604083850312156106a1578182fd5b6106aa836105ea565b946020939093013593505050565b901515815260200190565b6000602080835283518082850152825b818110156106ef578581018301518582016040015282016106d3565b818111156107005783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b600082198211156109135761091361096a565b500190565b60008282101561092a5761092a61096a565b500390565b60028104600182168061094357607f821691505b6020821081141561096457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220b68d42555030ae1b9a9e1da50ceee250006386a32c51c9258a8ffb49d7d5386264736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000b8f47c000000000000000000000000c5282f3194fcce4c99f9a9a1568883314620316d000000000000000000000000c5282f3194fcce4c99f9a9a1568883314620316d000000000000000000000000000000000000000000000000000000000000000753656e74204974000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004f09f9a8000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): Sent It
Arg [1] : symbol_ (string): 🚀
Arg [2] : decimals_ (uint256): 9
Arg [3] : initialBalance_ (uint256): 12121212
Arg [4] : tokenOwner_ (address): 0xC5282f3194FCce4C99f9a9A1568883314620316d
Arg [5] : feeReceiver_ (address): 0xC5282f3194FCce4C99f9a9A1568883314620316d
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [3] : 0000000000000000000000000000000000000000000000000000000000b8f47c
Arg [4] : 000000000000000000000000c5282f3194fcce4c99f9a9a1568883314620316d
Arg [5] : 000000000000000000000000c5282f3194fcce4c99f9a9a1568883314620316d
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [7] : 53656e7420497400000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [9] : f09f9a8000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
11526:375:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5813:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7989:169;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;6942:108::-;;;:::i;:::-;;;;;;;:::i;8640:422::-;;;;;;:::i;:::-;;:::i;6775:102::-;;;:::i;9471:215::-;;;;;;:::i;:::-;;:::i;7113:127::-;;;;;;:::i;:::-;;:::i;6032:104::-;;;:::i;10189:377::-;;;;;;:::i;:::-;;:::i;7453:175::-;;;;;;:::i;:::-;;:::i;7691:151::-;;;;;;:::i;:::-;;:::i;5813:100::-;5867:13;5900:5;5893:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5813:100;:::o;7989:169::-;8072:4;8089:39;8098:12;:10;:12::i;:::-;8112:7;8121:6;8089:8;:39::i;:::-;-1:-1:-1;8146:4:0;7989:169;;;;:::o;6942:108::-;7030:12;;6942:108;:::o;8640:422::-;8746:4;8763:36;8773:6;8781:9;8792:6;8763:9;:36::i;:::-;-1:-1:-1;;;;;8839:19:0;;8812:24;8839:19;;;:11;:19;;;;;8812:24;8859:12;:10;:12::i;:::-;-1:-1:-1;;;;;8839:33:0;-1:-1:-1;;;;;8839:33:0;;;;;;;;;;;;;8812:60;;8911:6;8891:16;:26;;8883:79;;;;-1:-1:-1;;;8883:79:0;;;;;;;:::i;:::-;;;;;;;;;8973:57;8982:6;8990:12;:10;:12::i;:::-;9004:25;9023:6;9004:16;:25;:::i;:::-;8973:8;:57::i;:::-;-1:-1:-1;9050:4:0;;8640:422;-1:-1:-1;;;;8640:422:0:o;6775:102::-;6860:9;;6775:102;:::o;9471:215::-;9559:4;9576:80;9585:12;:10;:12::i;:::-;9599:7;9645:10;9608:11;:25;9620:12;:10;:12::i;:::-;-1:-1:-1;;;;;9608:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;9608:25:0;;;:34;;;;;;;;;;:47;;;;:::i;7113:127::-;-1:-1:-1;;;;;7214:18:0;;7187:7;7214:18;;;;;;;;;;;7113:127;;;;:::o;6032:104::-;6088:13;6121:7;6114:14;;;;;:::i;10189:377::-;10282:4;10299:24;10326:11;:25;10338:12;:10;:12::i;:::-;-1:-1:-1;;;;;10326:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;10326:25:0;;;:34;;;;;;;;;;;-1:-1:-1;10379:35:0;;;;10371:85;;;;-1:-1:-1;;;10371:85:0;;;;;;;:::i;:::-;10467:67;10476:12;:10;:12::i;:::-;10490:7;10499:34;10518:15;10499:16;:34;:::i;10467:67::-;-1:-1:-1;10554:4:0;;10189:377;-1:-1:-1;;;10189:377:0:o;7453:175::-;7539:4;7556:42;7566:12;:10;:12::i;:::-;7580:9;7591:6;7556:9;:42::i;7691:151::-;-1:-1:-1;;;;;7807:18:0;;;7780:7;7807:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;7691:151::o;4301:98::-;4381:10;4301:98;:::o;11134:346::-;-1:-1:-1;;;;;11236:19:0;;11228:68;;;;-1:-1:-1;;;11228:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11315:21:0;;11307:68;;;;-1:-1:-1;;;11307:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11388:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;11440:32;;;;;11418:6;;11440:32;:::i;:::-;;;;;;;;11134:346;;;:::o;10576:546::-;-1:-1:-1;;;;;10682:20:0;;10674:70;;;;-1:-1:-1;;;10674:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10763:23:0;;10755:71;;;;-1:-1:-1;;;10755:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10865:17:0;;10841:21;10865:17;;;;;;;;;;;10901:23;;;;10893:74;;;;-1:-1:-1;;;10893:74:0;;;;;;;:::i;:::-;10998:22;11014:6;10998:13;:22;:::i;:::-;-1:-1:-1;;;;;10978:17:0;;;:9;:17;;;;;;;;;;;:42;;;;11031:20;;;;;;;;:30;;11055:6;;10978:9;11031:30;;11055:6;;11031:30;:::i;:::-;;;;;;;;11096:9;-1:-1:-1;;;;;11079:35:0;11088:6;-1:-1:-1;;;;;11079:35:0;;11107:6;11079:35;;;;;;:::i;:::-;;;;;;;;10576:546;;;;:::o;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;:::-;345:41;264:128;-1:-1:-1;;;264:128:1:o;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:266::-;;;1152:2;1140:9;1131:7;1127:23;1123:32;1120:2;;;1173:6;1165;1158:22;1120:2;1201:31;1222:9;1201:31;:::i;:::-;1191:41;1279:2;1264:18;;;;1251:32;;-1:-1:-1;;;1110:179:1:o;1294:187::-;1459:14;;1452:22;1434:41;;1422:2;1407:18;;1389:92::o;1486:603::-;;1627:2;1656;1645:9;1638:21;1688:6;1682:13;1731:6;1726:2;1715:9;1711:18;1704:34;1756:4;1769:140;1783:6;1780:1;1777:13;1769:140;;;1878:14;;;1874:23;;1868:30;1844:17;;;1863:2;1840:26;1833:66;1798:10;;1769:140;;;1927:6;1924:1;1921:13;1918:2;;;1997:4;1992:2;1983:6;1972:9;1968:22;1964:31;1957:45;1918:2;-1:-1:-1;2073:2:1;2052:15;-1:-1:-1;;2048:29:1;2033:45;;;;2080:2;2029:54;;1607:482;-1:-1:-1;;;1607:482:1:o;2094:399::-;2296:2;2278:21;;;2335:2;2315:18;;;2308:30;2374:34;2369:2;2354:18;;2347:62;-1:-1:-1;;;2440:2:1;2425:18;;2418:33;2483:3;2468:19;;2268:225::o;2498:398::-;2700:2;2682:21;;;2739:2;2719:18;;;2712:30;2778:34;2773:2;2758:18;;2751:62;-1:-1:-1;;;2844:2:1;2829:18;;2822:32;2886:3;2871:19;;2672:224::o;2901:402::-;3103:2;3085:21;;;3142:2;3122:18;;;3115:30;3181:34;3176:2;3161:18;;3154:62;-1:-1:-1;;;3247:2:1;3232:18;;3225:36;3293:3;3278:19;;3075:228::o;3308:404::-;3510:2;3492:21;;;3549:2;3529:18;;;3522:30;3588:34;3583:2;3568:18;;3561:62;-1:-1:-1;;;3654:2:1;3639:18;;3632:38;3702:3;3687:19;;3482:230::o;3717:401::-;3919:2;3901:21;;;3958:2;3938:18;;;3931:30;3997:34;3992:2;3977:18;;3970:62;-1:-1:-1;;;4063:2:1;4048:18;;4041:35;4108:3;4093:19;;3891:227::o;4123:400::-;4325:2;4307:21;;;4364:2;4344:18;;;4337:30;4403:34;4398:2;4383:18;;4376:62;-1:-1:-1;;;4469:2:1;4454:18;;4447:34;4513:3;4498:19;;4297:226::o;4528:401::-;4730:2;4712:21;;;4769:2;4749:18;;;4742:30;4808:34;4803:2;4788:18;;4781:62;-1:-1:-1;;;4874:2:1;4859:18;;4852:35;4919:3;4904:19;;4702:227::o;4934:177::-;5080:25;;;5068:2;5053:18;;5035:76::o;5116:128::-;;5187:1;5183:6;5180:1;5177:13;5174:2;;;5193:18;;:::i;:::-;-1:-1:-1;5229:9:1;;5164:80::o;5249:125::-;;5317:1;5314;5311:8;5308:2;;;5322:18;;:::i;:::-;-1:-1:-1;5359:9:1;;5298:76::o;5379:380::-;5464:1;5454:12;;5511:1;5501:12;;;5522:2;;5576:4;5568:6;5564:17;5554:27;;5522:2;5629;5621:6;5618:14;5598:18;5595:38;5592:2;;;5675:10;5670:3;5666:20;5663:1;5656:31;5710:4;5707:1;5700:15;5738:4;5735:1;5728:15;5592:2;;5434:325;;;:::o;5764:127::-;5825:10;5820:3;5816:20;5813:1;5806:31;5856:4;5853:1;5846:15;5880:4;5877:1;5870:15
Swarm Source
ipfs://b68d42555030ae1b9a9e1da50ceee250006386a32c51c9258a8ffb49d7d53862
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.