/**
Website: https://cafefun.app/
Telegram: https://t.me/Cafefunhood
Twitter: https://x.com/cafefun_
**/
//SPDX-License-Identifier: UNLICENSE
pragma solidity 0.8.29;
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 _owner_) {
_owner = _owner_;
emit OwnershipTransferred(address(0), _owner_);
}
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(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external;
function factory() external pure returns (address);
function WETH() external pure returns (address);
function addLiquidityETH(
address token,
uint amountTokenDesired,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external payable returns (uint amountToken, uint amountETH, uint liquidity);
}
contract CafeFun is Context, IERC20, Ownable {
using SafeMath for uint256;
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
mapping (address => bool) private isExile;
mapping (address => bool) public marketPair;
address payable private _taxWallet;
uint256 firstBlock;
uint256 private _firstBuyTax=10;
uint256 private _firstSellTax=10;
uint256 private _finalBuyTax=1;
uint256 private _finalSellTax=1;
uint256 private _reduceBuyTaxAt=10;
uint256 private _reduceSellTaxAt=10;
uint256 private _preventSwapBefore=2;
uint256 private _buyCount= 0;
uint256 private sellCount = 0;
uint256 private lastSellBlock = 0;
uint8 private constant _decimals = 9;
uint256 private constant _tTotal = 100000000 * 10**_decimals;
string private constant _name = unicode"CafeFun";
string private constant _symbol = unicode"CAFE";
uint256 public _maxTxAmount = 2000000 * 10**_decimals;
uint256 public _maxWalletSize = 2000000 * 10**_decimals;
uint256 public _taxSwapThreshold= 200000 * 10**_decimals;
uint256 public _maxTaxSwap= 2000000 * 10**_decimals;
IUniswapV2Router02 private uniswapV2Router;
address public uniswapV2Pair;
bool private tradingOpen;
uint256 public caBlockLimit = 3;
bool private inSwap = false;
bool private swapEnabled = false;
bool public caLimit = true;
event MaxTxAmountUpdated(uint _maxTxAmount);
modifier lockTheSwap {
inSwap = true;
_;
inSwap = false;
}
constructor (address _owner_) Ownable(_owner_) {
_taxWallet = payable(0x70Ab4E25aC6db4836393A0074Fe745B7d22e6EC3);
_balances[_owner_] = _tTotal;
isExile[_owner_] = true;
isExile[address(this)] = true;
isExile[address(uniswapV2Pair)] = true;
emit Transfer(address(0), _owner_, _tTotal);
}
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 _tTotal;
}
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 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);
_approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
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 _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 != owner() && to != owner()) {
taxAmount = amount.mul((_buyCount> _reduceBuyTaxAt)? _finalBuyTax: _firstBuyTax).div(100);
if (marketPair[from] && to != address(uniswapV2Router) && ! isExile[to] ) {
require(amount <= _maxTxAmount, "Exceeds the _maxTxAmount.");
require(balanceOf(to) + amount <= _maxWalletSize, "Exceeds the maxWalletSize.");
if (firstBlock + 1 > block.number) {
require(!isContract(to));
}
_buyCount++;
}
if (!marketPair[to] && ! isExile[to]) {
require(balanceOf(to) + amount <= _maxWalletSize, "Exceeds the maxWalletSize.");
}
if(marketPair[to] && from!= address(this) ){
taxAmount = amount.mul((_buyCount> _reduceSellTaxAt)? _finalSellTax: _firstSellTax).div(100);
}
if (!marketPair[from] && !marketPair[to] && from!= address(this) ) {
taxAmount = 0;
}
uint256 contractTokenBalance = balanceOf(address(this));
if (caLimit && !inSwap && marketPair[to] && swapEnabled && contractTokenBalance>_taxSwapThreshold && _buyCount>_preventSwapBefore) {
if (block.number > lastSellBlock) {
sellCount = 0;
}
require(sellCount < caBlockLimit, "CA balance sell");
swapTokensForEth(min(amount,min(contractTokenBalance,_maxTaxSwap)));
uint256 contractETHBalance = address(this).balance;
if(contractETHBalance > 0) {
sendETHToFee(address(this).balance);
}
sellCount++;
lastSellBlock = block.number;
}
else if(!inSwap && marketPair[to] && swapEnabled && contractTokenBalance>_taxSwapThreshold && _buyCount>_preventSwapBefore) {
swapTokensForEth(min(amount,min(contractTokenBalance,_maxTaxSwap)));
uint256 contractETHBalance = address(this).balance;
if(contractETHBalance > 0) {
sendETHToFee(address(this).balance);
}
}
}
if(taxAmount>0){
_balances[address(this)]=_balances[address(this)].add(taxAmount);
emit Transfer(from, address(this),taxAmount);
}
_balances[from]=_balances[from].sub(amount);
_balances[to]=_balances[to].add(amount.sub(taxAmount));
emit Transfer(from, to, amount.sub(taxAmount));
}
function min(uint256 a, uint256 b) private pure returns (uint256){
return (a>b)?b:a;
}
function isContract(address account) private view returns (bool) {
uint256 size;
assembly {
size := extcodesize(account)
}
return size > 0;
}
function swapTokensForEth(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 rescueStuckETH() external onlyOwner {
payable(_taxWallet).transfer(address(this).balance);
}
function updateSwapSettings(uint256 newinitialBuyTax, uint256 newinitialSellTax, uint256 newReduBTax, uint256 newReduSTax, uint256 newPrevSwapBef) external onlyOwner {
_firstBuyTax = newinitialBuyTax;
_firstSellTax = newinitialSellTax;
_reduceBuyTaxAt = newReduBTax;
_reduceSellTaxAt = newReduSTax;
_preventSwapBefore = newPrevSwapBef;
}
function rescueStuckERC20Tokens(address _tokenAddr, uint _amount) external onlyOwner {
IERC20(_tokenAddr).transfer(_taxWallet, _amount);
}
function openMax() external onlyOwner{
_maxTxAmount = _tTotal;
_maxWalletSize=_tTotal;
emit MaxTxAmountUpdated(_tTotal);
}
function sendETHToFee(uint256 amount) private {
_taxWallet.transfer(amount);
}
function stArtTrADE() external onlyOwner() {
require(!tradingOpen,"trading is already open");
uniswapV2Router = IUniswapV2Router02(0x89e5DB8B5aA49aA85AC63f691524311AEB649eba);
_approve(address(this), address(uniswapV2Router), _tTotal);
uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
marketPair[address(uniswapV2Pair)] = true;
isExile[address(uniswapV2Pair)] = true;
uniswapV2Router.addLiquidityETH{value: address(this).balance}(address(this),balanceOf(address(this)),0,0,owner(),block.timestamp);
IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max);
swapEnabled = true;
tradingOpen = true;
firstBlock = block.number;
}
receive() external payable {}
}[
{
"type": "constructor",
"inputs": [
{
"name": "_owner_",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "nonpayable"
},
{
"name": "Approval",
"type": "event",
"inputs": [
{
"name": "owner",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "spender",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "value",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
}
],
"anonymous": false
},
{
"name": "MaxTxAmountUpdated",
"type": "event",
"inputs": [
{
"name": "_maxTxAmount",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
}
],
"anonymous": false
},
{
"name": "OwnershipTransferred",
"type": "event",
"inputs": [
{
"name": "previousOwner",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "newOwner",
"type": "address",
"indexed": true,
"internalType": "address"
}
],
"anonymous": false
},
{
"name": "Transfer",
"type": "event",
"inputs": [
{
"name": "from",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "to",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "value",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
}
],
"anonymous": false
},
{
"name": "_maxTaxSwap",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "_maxTxAmount",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "_maxWalletSize",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "_taxSwapThreshold",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "allowance",
"type": "function",
"inputs": [
{
"name": "owner",
"type": "address",
"internalType": "address"
},
{
"name": "spender",
"type": "address",
"internalType": "address"
}
],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "approve",
"type": "function",
"inputs": [
{
"name": "spender",
"type": "address",
"internalType": "address"
},
{
"name": "amount",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "nonpayable"
},
{
"name": "balanceOf",
"type": "function",
"inputs": [
{
"name": "account",
"type": "address",
"internalType": "address"
}
],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "caBlockLimit",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "caLimit",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "view"
},
{
"name": "decimals",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint8",
"internalType": "uint8"
}
],
"stateMutability": "pure"
},
{
"name": "marketPair",
"type": "function",
"inputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "view"
},
{
"name": "name",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "string",
"internalType": "string"
}
],
"stateMutability": "pure"
},
{
"name": "openMax",
"type": "function",
"inputs": [],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "owner",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "renounceOwnership",
"type": "function",
"inputs": [],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "rescueStuckERC20Tokens",
"type": "function",
"inputs": [
{
"name": "_tokenAddr",
"type": "address",
"internalType": "address"
},
{
"name": "_amount",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "rescueStuckETH",
"type": "function",
"inputs": [],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "stArtTrADE",
"type": "function",
"inputs": [],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "symbol",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "string",
"internalType": "string"
}
],
"stateMutability": "pure"
},
{
"name": "totalSupply",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "pure"
},
{
"name": "transfer",
"type": "function",
"inputs": [
{
"name": "recipient",
"type": "address",
"internalType": "address"
},
{
"name": "amount",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "nonpayable"
},
{
"name": "transferFrom",
"type": "function",
"inputs": [
{
"name": "sender",
"type": "address",
"internalType": "address"
},
{
"name": "recipient",
"type": "address",
"internalType": "address"
},
{
"name": "amount",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "nonpayable"
},
{
"name": "uniswapV2Pair",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "updateSwapSettings",
"type": "function",
"inputs": [
{
"name": "newinitialBuyTax",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "newinitialSellTax",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "newReduBTax",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "newReduSTax",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "newPrevSwapBef",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"type": "receive",
"stateMutability": "payable"
}
]0x60806040526004361061014a575f3560e01c8063715018a6116100b3578063a9059cbb1161006d578063a9059cbb146103a4578063bf474bed146103c3578063c2773d4e146103d8578063cee3e84d146103ec578063dd62ed3e1461040b578063f5b3c3bf1461044f575f5ffd5b8063715018a6146103095780637d1db4a51461031d57806383aa6290146103325780638da5cb5b146103475780638f9a55c01461036357806395d89b4114610378575f5ffd5b80632c65469e116101045780632c65469e14610231578063313ce56714610250578063331221d51461026b57806349bd5a5e1461028a5780634c450b35146102c157806370a08231146102d5575f5ffd5b80630150fe4c1461015557806306fdde031461016b578063095ea7b3146101ac5780630faee56f146101db57806318160ddd146101fe57806323b872dd14610212575f5ffd5b3661015157005b5f5ffd5b348015610160575f5ffd5b5061016961047d565b005b348015610176575f5ffd5b5060408051808201909152600781526621b0b332a33ab760c91b60208201525b6040516101a39190611767565b60405180910390f35b3480156101b7575f5ffd5b506101cb6101c63660046117b0565b6104e8565b60405190151581526020016101a3565b3480156101e6575f5ffd5b506101f060145481565b6040519081526020016101a3565b348015610209575f5ffd5b506101f06104fe565b34801561021d575f5ffd5b506101cb61022c3660046117da565b61051e565b34801561023c575f5ffd5b5061016961024b3660046117b0565b610585565b34801561025b575f5ffd5b50604051600981526020016101a3565b348015610276575f5ffd5b50610169610285366004611818565b610627565b348015610295575f5ffd5b506016546102a9906001600160a01b031681565b6040516001600160a01b0390911681526020016101a3565b3480156102cc575f5ffd5b50610169610667565b3480156102e0575f5ffd5b506101f06102ef36600461184f565b6001600160a01b03165f9081526001602052604090205490565b348015610314575f5ffd5b50610169610a56565b348015610328575f5ffd5b506101f060115481565b34801561033d575f5ffd5b506101f060175481565b348015610352575f5ffd5b505f546001600160a01b03166102a9565b34801561036e575f5ffd5b506101f060125481565b348015610383575f5ffd5b506040805180820190915260048152634341464560e01b6020820152610196565b3480156103af575f5ffd5b506101cb6103be3660046117b0565b610ac7565b3480156103ce575f5ffd5b506101f060135481565b3480156103e3575f5ffd5b50610169610ad3565b3480156103f7575f5ffd5b506018546101cb9062010000900460ff1681565b348015610416575f5ffd5b506101f061042536600461186a565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b34801561045a575f5ffd5b506101cb61046936600461184f565b60046020525f908152604090205460ff1681565b5f546001600160a01b031633146104af5760405162461bcd60e51b81526004016104a6906118a1565b60405180910390fd5b6005546040516001600160a01b03909116904780156108fc02915f818181858888f193505050501580156104e5573d5f5f3e3d5ffd5b50565b5f6104f4338484610b84565b5060015b92915050565b5f61050b6009600a6119cd565b610519906305f5e1006119db565b905090565b5f61052a848484610ca7565b61057b843361057685604051806060016040528060288152602001611b39602891396001600160a01b038a165f90815260026020908152604080832033845290915290205491906113e8565b610b84565b5060019392505050565b5f546001600160a01b031633146105ae5760405162461bcd60e51b81526004016104a6906118a1565b60055460405163a9059cbb60e01b81526001600160a01b039182166004820152602481018390529083169063a9059cbb906044016020604051808303815f875af11580156105fe573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061062291906119f2565b505050565b5f546001600160a01b031633146106505760405162461bcd60e51b81526004016104a6906118a1565b600794909455600892909255600b55600c55600d55565b5f546001600160a01b031633146106905760405162461bcd60e51b81526004016104a6906118a1565b601654600160a01b900460ff16156106ea5760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064016104a6565b601580546001600160a01b0319167389e5db8b5aa49aa85ac63f691524311aeb649eba9081179091556107339030906107256009600a6119cd565b610576906305f5e1006119db565b60155f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610783573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107a79190611a11565b6001600160a01b031663c9c653963060155f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610806573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061082a9190611a11565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610874573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108989190611a11565b601680546001600160a01b039283166001600160a01b0319909116811782555f908152600460209081526040808320805460ff199081166001908117909255945486168452600390925290912080549092161790556015541663f305d7194730610916816001600160a01b03165f9081526001602052604090205490565b5f5f6109295f546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af115801561098f573d5f5f3e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906109b49190611a2c565b505060165460155460405163095ea7b360e01b81526001600160a01b0391821660048201525f1960248201529116915063095ea7b3906044016020604051808303815f875af1158015610a09573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a2d91906119f2565b506018805461ff0019166101001790556016805460ff60a01b1916600160a01b17905543600655565b5f546001600160a01b03163314610a7f5760405162461bcd60e51b81526004016104a6906118a1565b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f6104f4338484610ca7565b5f546001600160a01b03163314610afc5760405162461bcd60e51b81526004016104a6906118a1565b610b086009600a6119cd565b610b16906305f5e1006119db565b601155610b256009600a6119cd565b610b33906305f5e1006119db565b6012557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf610b636009600a6119cd565b610b71906305f5e1006119db565b60405190815260200160405180910390a1565b6001600160a01b038316610be65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104a6565b6001600160a01b038216610c475760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104a6565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610d0b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104a6565b6001600160a01b038216610d6d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104a6565b5f8111610dce5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016104a6565b5f80546001600160a01b03858116911614801590610df957505f546001600160a01b03848116911614155b156112ab57610e2a6064610e24600b54600e5411610e1957600754610e1d565b6009545b8590611420565b906114a5565b6001600160a01b0385165f9081526004602052604090205490915060ff168015610e6257506015546001600160a01b03848116911614155b8015610e8657506001600160a01b0383165f9081526003602052604090205460ff16155b15610f8d57601154821115610edd5760405162461bcd60e51b815260206004820152601960248201527f4578636565647320746865205f6d61785478416d6f756e742e0000000000000060448201526064016104a6565b60125482610eff856001600160a01b03165f9081526001602052604090205490565b610f099190611a57565b1115610f575760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e00000000000060448201526064016104a6565b436006546001610f679190611a57565b1115610f7857823b15610f78575f5ffd5b600e8054905f610f8783611a6a565b91905055505b6001600160a01b0383165f9081526004602052604090205460ff16158015610fcd57506001600160a01b0383165f9081526003602052604090205460ff16155b1561104c5760125482610ff4856001600160a01b03165f9081526001602052604090205490565b610ffe9190611a57565b111561104c5760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e00000000000060448201526064016104a6565b6001600160a01b0383165f9081526004602052604090205460ff16801561107c57506001600160a01b0384163014155b156110a9576110a66064610e24600c54600e541161109c57600854610e1d565b600a548590611420565b90505b6001600160a01b0384165f9081526004602052604090205460ff161580156110e957506001600160a01b0383165f9081526004602052604090205460ff16155b80156110fe57506001600160a01b0384163014155b1561110657505f5b305f9081526001602052604090205460185462010000900460ff168015611130575060185460ff16155b801561115357506001600160a01b0384165f9081526004602052604090205460ff165b80156111665750601854610100900460ff165b8015611173575060135481115b80156111825750600d54600e54115b1561122657601054431115611196575f600f555b601754600f54106111db5760405162461bcd60e51b815260206004820152600f60248201526e10d04818985b185b98d9481cd95b1b608a1b60448201526064016104a6565b6111f86111f3846111ee846014546114e6565b6114e6565b6114fa565b4780156112085761120847611661565b600f8054905f61121783611a6a565b909155505043601055506112a9565b60185460ff1615801561125057506001600160a01b0384165f9081526004602052604090205460ff165b80156112635750601854610100900460ff165b8015611270575060135481115b801561127f5750600d54600e54115b156112a9576112976111f3846111ee846014546114e6565b4780156112a7576112a747611661565b505b505b801561132357305f908152600160205260409020546112ca908261169c565b305f81815260016020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061131a9085815260200190565b60405180910390a35b6001600160a01b0384165f9081526001602052604090205461134590836116fa565b6001600160a01b0385165f9081526001602052604090205561138861136a83836116fa565b6001600160a01b0385165f908152600160205260409020549061169c565b6001600160a01b038085165f8181526001602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6113d185856116fa565b60405190815260200160405180910390a350505050565b5f818484111561140b5760405162461bcd60e51b81526004016104a69190611767565b505f6114178486611a82565b95945050505050565b5f825f0361142f57505f6104f8565b5f61143a83856119db565b9050826114478583611a95565b1461149e5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016104a6565b9392505050565b5f61149e83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061173b565b5f8183116114f4578261149e565b50919050565b6018805460ff191660011790556040805160028082526060820183525f9260208301908036833701905050905030815f8151811061153a5761153a611ab4565b6001600160a01b03928316602091820292909201810191909152601554604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611591573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115b59190611a11565b816001815181106115c8576115c8611ab4565b6001600160a01b0392831660209182029290920101526015546115ee9130911684610b84565b60155460405163791ac94760e01b81526001600160a01b039091169063791ac947906116269085905f90869030904290600401611ac8565b5f604051808303815f87803b15801561163d575f5ffd5b505af115801561164f573d5f5f3e3d5ffd5b50506018805460ff1916905550505050565b6005546040516001600160a01b039091169082156108fc029083905f818181858888f19350505050158015611698573d5f5f3e3d5ffd5b5050565b5f806116a88385611a57565b90508381101561149e5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016104a6565b5f61149e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506113e8565b5f818361175b5760405162461bcd60e51b81526004016104a69190611767565b505f6114178486611a95565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b03811681146104e5575f5ffd5b5f5f604083850312156117c1575f5ffd5b82356117cc8161179c565b946020939093013593505050565b5f5f5f606084860312156117ec575f5ffd5b83356117f78161179c565b925060208401356118078161179c565b929592945050506040919091013590565b5f5f5f5f5f60a0868803121561182c575f5ffd5b505083359560208501359550604085013594606081013594506080013592509050565b5f6020828403121561185f575f5ffd5b813561149e8161179c565b5f5f6040838503121561187b575f5ffd5b82356118868161179c565b915060208301356118968161179c565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b6001815b600184111561192557808504811115611909576119096118d6565b600184161561191757908102905b60019390931c9280026118ee565b935093915050565b5f8261193b575060016104f8565b8161194757505f6104f8565b816001811461195d576002811461196757611983565b60019150506104f8565b60ff841115611978576119786118d6565b50506001821b6104f8565b5060208310610133831016604e8410600b84101617156119a6575081810a6104f8565b6119b25f1984846118ea565b805f19048211156119c5576119c56118d6565b029392505050565b5f61149e60ff84168361192d565b80820281158282048414176104f8576104f86118d6565b5f60208284031215611a02575f5ffd5b8151801515811461149e575f5ffd5b5f60208284031215611a21575f5ffd5b815161149e8161179c565b5f5f5f60608486031215611a3e575f5ffd5b5050815160208301516040909301519094929350919050565b808201808211156104f8576104f86118d6565b5f60018201611a7b57611a7b6118d6565b5060010190565b818103818111156104f8576104f86118d6565b5f82611aaf57634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b81811015611b185783516001600160a01b0316835260209384019390920191600101611af1565b50506001600160a01b03959095166060840152505060800152939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220272afddae5ee582fbd18ded6b9682ae51c52c9306a0b40981c110d077fd7d74c64736f6c634300081d0033
| Token | Symbol | Balance | Price | Value |
|---|---|---|---|---|
| CafeFun (CAFE) | CAFE | 1,071,690.838570 | $0.0000112 | $12 |
| Type | Age | Block | Details |
|---|---|---|---|
| no cross-chain L1↔L2 transactions for this address | |||
| Transaction Hash | Method | Block | Age | From | To | Type | Item | ||
|---|---|---|---|---|---|---|---|---|---|
| no NFT transfers for this address yet | |||||||||
| Txn Hash | Age | Event | Topics / Data |
|---|---|---|---|
| 0xe7214e…2a7734 | 1 day agoSun, 16 Aug 2026 16:52:40 UTC | Transfer | [0] 0x000000000000…54f2c431 [1] 0x000000000000…7290afa9 data: 0x000000000000000000…3c2801eb |
| 0xe7214e…2a7734 | 1 day agoSun, 16 Aug 2026 16:52:40 UTC | Transfer | [0] 0x000000000000…54f2c431 [1] 0x000000000000…d9e4cafe data: 0x000000000000000000…addc33bc |
| 0x8da656…b7628f | 1 day agoSun, 16 Aug 2026 16:52:39 UTC | Transfer | [0] 0x000000000000…eb649eba [1] 0x000000000000…3751d443 data: 0x000000000000000000…bc1b73d4 |
| 0x8da656…b7628f | 1 day agoSun, 16 Aug 2026 16:52:39 UTC | Transfer | [0] 0x000000000000…54f2c431 [1] 0x000000000000…eb649eba data: 0x000000000000000000…bc1b73d4 |
| 0x8da656…b7628f | 1 day agoSun, 16 Aug 2026 16:52:39 UTC | Transfer | [0] 0x000000000000…54f2c431 [1] 0x000000000000…d9e4cafe data: 0x000000000000000000…8af35916 |
| 0xf5ba7a…17c73b | 8 days agoSun, 09 Aug 2026 08:48:47 UTC | Approval | [0] 0x000000000000…77a1faaa [1] 0x000000000000…3ac78ba3 data: 0x000000000000000000…00000000 |
| 0x9c0cf3…533381 | 8 days agoSun, 09 Aug 2026 08:46:20 UTC | Approval | [0] 0x000000000000…77a1faaa [1] 0x000000000000…3ac78ba3 data: 0xffffffffffffffffff…ff7c0749 |
| 0x9c0cf3…533381 | 8 days agoSun, 09 Aug 2026 08:46:20 UTC | Transfer | [0] 0x000000000000…77a1faaa [1] 0x000000000000…54f2c431 data: 0x000000000000000000…fb63ee8c |
| 0x9c0cf3…533381 | 8 days agoSun, 09 Aug 2026 08:46:20 UTC | Transfer | [0] 0x000000000000…77a1faaa [1] 0x000000000000…d9e4cafe data: 0x000000000000000000…05200a2a |
| 0x845fee…6f9c9d | 8 days agoSun, 09 Aug 2026 08:46:03 UTC | Approval | [0] 0x000000000000…77a1faaa [1] 0x000000000000…3ac78ba3 data: 0xffffffffffffffffff…ffffffff |
| 0x9a2c9c…238ac4 | 10 days agoFri, 07 Aug 2026 09:17:48 UTC | Approval | [0] 0x000000000000…3c53dca8 [1] 0x000000000000…ec8b474b data: 0xffffffffffffffffff…c683403b |
| 0x9a2c9c…238ac4 | 10 days agoFri, 07 Aug 2026 09:17:48 UTC | Transfer | [0] 0x000000000000…3c53dca8 [1] 0x000000000000…54f2c431 data: 0x000000000000000000…2c1cc817 |
| 0x9a2c9c…238ac4 | 10 days agoFri, 07 Aug 2026 09:17:48 UTC | Transfer | [0] 0x000000000000…3c53dca8 [1] 0x000000000000…d9e4cafe data: 0x000000000000000000…0d5ff7ad |
| 0x7b026f…e1d016 | 10 days agoFri, 07 Aug 2026 08:58:21 UTC | Approval | [0] 0x000000000000…3c53dca8 [1] 0x000000000000…ec8b474b data: 0xffffffffffffffffff…ffffffff |
| 0xe64404…17c716 | 10 days agoFri, 07 Aug 2026 08:58:20 UTC | Transfer | [0] 0x000000000000…54f2c431 [1] 0x000000000000…3c53dca8 data: 0x000000000000000000…397cbfc4 |
| 0xe64404…17c716 | 10 days agoFri, 07 Aug 2026 08:58:20 UTC | Transfer | [0] 0x000000000000…54f2c431 [1] 0x000000000000…d9e4cafe data: 0x000000000000000000…ebe4d0ce |
| 0x5e7d1b…8d5ccc | 10 days agoFri, 07 Aug 2026 07:03:54 UTC | Approval | [0] 0x000000000000…9b9953e7 [1] 0x000000000000…3ac78ba3 data: 0xffffffffffffffffff…4daa20c6 |
| 0x5e7d1b…8d5ccc | 10 days agoFri, 07 Aug 2026 07:03:54 UTC | Transfer | [0] 0x000000000000…9b9953e7 [1] 0x000000000000…54f2c431 data: 0x000000000000000000…8a26eeea |
| 0x5e7d1b…8d5ccc | 10 days agoFri, 07 Aug 2026 07:03:54 UTC | Transfer | [0] 0x000000000000…9b9953e7 [1] 0x000000000000…d9e4cafe data: 0x000000000000000000…282ef04f |
| 0x31a5d8…2b3758 | 10 days agoFri, 07 Aug 2026 07:03:51 UTC | Approval | [0] 0x000000000000…6faead31 [1] 0x000000000000…3ac78ba3 data: 0xffffffffffffffffff…303600f0 |
| 0x31a5d8…2b3758 | 10 days agoFri, 07 Aug 2026 07:03:51 UTC | Transfer | [0] 0x000000000000…6faead31 [1] 0x000000000000…54f2c431 data: 0x000000000000000000…ac6e605a |
| 0x31a5d8…2b3758 | 10 days agoFri, 07 Aug 2026 07:03:51 UTC | Transfer | [0] 0x000000000000…6faead31 [1] 0x000000000000…d9e4cafe data: 0x000000000000000000…235b9eb5 |
| 0x020408…8fb861 | 10 days agoFri, 07 Aug 2026 07:03:50 UTC | Approval | [0] 0x000000000000…e3ef1696 [1] 0x000000000000…3ac78ba3 data: 0xffffffffffffffffff…d07619ca |
| 0x020408…8fb861 | 10 days agoFri, 07 Aug 2026 07:03:50 UTC | Transfer | [0] 0x000000000000…e3ef1696 [1] 0x000000000000…54f2c431 data: 0x000000000000000000…d2e73d82 |
| 0x020408…8fb861 | 10 days agoFri, 07 Aug 2026 07:03:50 UTC | Transfer | [0] 0x000000000000…e3ef1696 [1] 0x000000000000…d9e4cafe data: 0x000000000000000000…5ca2a8b3 |
| Transaction Hash | Method ? | Block | Age | From | To | Amount | Txn Fee ? | ||
|---|---|---|---|---|---|---|---|---|---|
| 0xf5ba7a…17c73b | Approve | 31,804,426 | 8 days agoSun, 09 Aug 2026 08:48:47 UTC | 0x5de4…faaa | IN | CafeFun | $0.000 ETH | 0.00000070 | |
| 0x845fee…6f9c9d | Approve | 31,802,779 | 8 days agoSun, 09 Aug 2026 08:46:03 UTC | 0x5de4…faaa | IN | CafeFun | $0.000 ETH | 0.00000132 | |
| 0x7b026f…e1d016 | Approve | 30,085,414 | 10 days agoFri, 07 Aug 2026 08:58:21 UTC | 0xf7ed…dca8 | IN | CafeFun | $0.000 ETH | 0.00000143 | |
| 0x0f63ea…1d05ae | Approve | 30,012,926 | 10 days agoFri, 07 Aug 2026 06:57:07 UTC | 0xb20a…d443 | IN | CafeFun | $0.000 ETH | 0.00000147 | |
| 0x750880…67eada | Approve | 30,012,310 | 10 days agoFri, 07 Aug 2026 06:56:05 UTC | 0x70ab…6ec3 | IN | CafeFun | $0.000 ETH | 0.00000147 | |
| 0x3022ab…e336f2 | Approve | 29,669,706 | 11 days agoThu, 06 Aug 2026 21:24:24 UTC | 0x0ae0…f138 | IN | CafeFun | $0.000 ETH | 0.00000148 | |
| 0xaed365…60bb79 | Approve | 29,506,054 | 11 days agoThu, 06 Aug 2026 16:51:20 UTC | 0x811b…2840 | IN | CafeFun | $0.000 ETH | 0.00000140 | |
| 0xec2107…9766bb | Approve | 29,503,221 | 11 days agoThu, 06 Aug 2026 16:46:37 UTC | 0x7c25…5ab0 | IN | CafeFun | $0.000 ETH | 0.00000143 | |
| 0xb49810…9765a6 | Approve | 29,503,009 | 11 days agoThu, 06 Aug 2026 16:46:16 UTC | 0x7275…281b | IN | CafeFun | $0.000 ETH | 0.00000141 | |
| 0xcd1910…80d081 | Approve | 29,497,553 | 11 days agoThu, 06 Aug 2026 16:37:09 UTC | 0xd0ff…467d | IN | CafeFun | $0.000 ETH | 0.00000141 | |
| 0x4706aa…efac2c | renounceOwnership | 29,494,812 | 11 days agoThu, 06 Aug 2026 16:32:36 UTC | 0xb20a…d443 | IN | CafeFun | $0.000 ETH | 0.00000069 | |
| 0xb30048…be517a | Approve | 29,491,723 | 11 days agoThu, 06 Aug 2026 16:27:27 UTC | 0xb313…fd0a | IN | CafeFun | $0.000 ETH | 0.00000137 | |
| 0xf8d669…f1f689 | Transfer | 29,488,001 | 11 days agoThu, 06 Aug 2026 16:21:15 UTC | 0xb20a…d443 | IN | CafeFun | $0.000 ETH | 0.00000160 | |
| 0x1b5158…f00991 | Approve | 29,486,720 | 11 days agoThu, 06 Aug 2026 16:19:06 UTC | 0x3175…33f1 | IN | CafeFun | $0.000 ETH | 0.00000136 | |
| 0xba1cd3…c334e8 | Approve | 29,486,719 | 11 days agoThu, 06 Aug 2026 16:19:06 UTC | 0x7cc5…7bcc | IN | CafeFun | $0.000 ETH | 0.00000136 | |
| 0xddd75a…52edcb | Approve | 29,485,671 | 11 days agoThu, 06 Aug 2026 16:17:20 UTC | 0x1071…6d84 | IN | CafeFun | $0.000 ETH | 0.00000079 | |
| 0x2edbb4…69d7bd | Approve | 29,485,667 | 11 days agoThu, 06 Aug 2026 16:17:20 UTC | 0xe055…ea1f | IN | CafeFun | $0.000 ETH | 0.00000078 | |
| 0xf96677…1ec826 | Approve | 29,485,665 | 11 days agoThu, 06 Aug 2026 16:17:20 UTC | 0x1071…6d84 | IN | CafeFun | $0.000 ETH | 0.00000136 | |
| 0xacc973…362f20 | Approve | 29,485,662 | 11 days agoThu, 06 Aug 2026 16:17:20 UTC | 0x452b…b991 | IN | CafeFun | $0.000 ETH | 0.00000138 | |
| 0x72cc47…bde48b | Approve | 29,485,661 | 11 days agoThu, 06 Aug 2026 16:17:19 UTC | 0xe055…ea1f | IN | CafeFun | $0.000 ETH | 0.00000138 | |
| 0x6bf7fb…2b88ac | Approve | 29,485,660 | 11 days agoThu, 06 Aug 2026 16:17:19 UTC | 0xa141…e7cd | IN | CafeFun | $0.000 ETH | 0.00000138 | |
| 0x095838…4a1bea | Approve | 29,485,435 | 11 days agoThu, 06 Aug 2026 16:16:57 UTC | 0xf577…1321 | IN | CafeFun | $0.000 ETH | 0.00000140 | |
| 0xb69db7…991af7 | Approve | 29,484,883 | 11 days agoThu, 06 Aug 2026 16:16:03 UTC | 0x66a8…0a3e | IN | CafeFun | $0.000 ETH | 0.00000138 | |
| 0x9755ca…1daa6a | Approve | 29,484,880 | 11 days agoThu, 06 Aug 2026 16:16:03 UTC | 0x43e2…934e | IN | CafeFun | $0.000 ETH | 0.00000136 | |
| 0x343508…d9aa5d | Approve | 29,484,333 | 11 days agoThu, 06 Aug 2026 16:15:08 UTC | 0x76e1…8db2 | IN | CafeFun | $0.000 ETH | 0.00000139 |
| Transaction Hash | Method | Block | Age | From | To | Amount | Token | ||
|---|---|---|---|---|---|---|---|---|---|
| 0xe7214e2a…2a7734 | Transfer | 38,133,680 | 1 day agoSun, 16 Aug 2026 16:52:40 UTC | 0x374c…c431 | IN | 0xcad3…cafe | $0.002.916889 CAFE | CafeFun (CAFE) | |
| 0x8da6568e…b7628f | Transfer | 38,133,675 | 1 day agoSun, 16 Aug 2026 16:52:39 UTC | 0x374c…c431 | IN | 0xcad3…cafe | $NaN907,601.935292 CAFE | CafeFun (CAFE) | |
| 0x9c0cf3a8…533381 | Transfer | 31,802,944 | 8 days agoSun, 09 Aug 2026 08:46:20 UTC | 0x5de4…faaa | IN | 0xcad3…cafe | $0.0094.575266 CAFE | CafeFun (CAFE) | |
| 0x9a2c9c4e…238ac4 | Transfer | 30,097,048 | 10 days agoFri, 07 Aug 2026 09:17:48 UTC | 0xf7ed…dca8 | IN | 0xcad3…cafe | $NaN16,102.056785 CAFE | CafeFun (CAFE) | |
| 0xe64404e1…17c716 | Transfer | 30,085,409 | 10 days agoFri, 07 Aug 2026 08:58:20 UTC | 0x374c…c431 | IN | 0xcad3…cafe | $NaN16,264.703824 CAFE | CafeFun (CAFE) | |
| 0x5e7d1b93…8d5ccc | Transfer | 30,016,978 | 10 days agoFri, 07 Aug 2026 07:03:54 UTC | 0xdb7d…53e7 | IN | 0xcad3…cafe | $NaN24,116.915531 CAFE | CafeFun (CAFE) | |
| 0x31a5d82a…2b3758 | Transfer | 30,016,952 | 10 days agoFri, 07 Aug 2026 07:03:51 UTC | 0x4b6a…ad31 | IN | 0xcad3…cafe | $NaN30,177.033428 CAFE | CafeFun (CAFE) | |
| 0x02040817…8fb861 | Transfer | 30,016,936 | 10 days agoFri, 07 Aug 2026 07:03:50 UTC | 0xa766…1696 | IN | 0xcad3…cafe | $NaN24,663.256377 CAFE | CafeFun (CAFE) | |
| 0xc2741567…5a8c3d | Transfer | 30,016,899 | 10 days agoFri, 07 Aug 2026 07:03:46 UTC | 0x3f1c…f0ce | IN | 0xcad3…cafe | $NaN27,722.414103 CAFE | CafeFun (CAFE) | |
| 0xfd530db7…47a461 | Transfer | 30,016,898 | 10 days agoFri, 07 Aug 2026 07:03:46 UTC | 0x1cdb…3337 | IN | 0xcad3…cafe | $NaN22,943.651936 CAFE | CafeFun (CAFE) | |
| 0xfd530db7…47a461 | Transfer | 30,016,898 | 10 days agoFri, 07 Aug 2026 07:03:46 UTC | 0xcad3…cafe | OUT | 0x374c…c431 | $NaN198,136.534269 CAFE | CafeFun (CAFE) | |
| 0xfd530db7…47a461 | Transfer | 30,016,898 | 10 days agoFri, 07 Aug 2026 07:03:46 UTC | 0xcad3…cafe | OUT | 0xcad3…cafe | $NaN2,001.379134 CAFE | CafeFun (CAFE) | |
| 0xa9b266a6…d4da39 | Transfer | 30,016,665 | 10 days agoFri, 07 Aug 2026 07:03:22 UTC | 0xf46f…1fe8 | IN | 0xcad3…cafe | $NaN22,352.751268 CAFE | CafeFun (CAFE) | |
| 0x582dbb30…e24161 | Transfer | 30,016,638 | 10 days agoFri, 07 Aug 2026 07:03:20 UTC | 0xad5e…041b | IN | 0xcad3…cafe | $NaN19,359.419180 CAFE | CafeFun (CAFE) | |
| 0x85d5aa80…81b3b9 | Transfer | 30,016,617 | 10 days agoFri, 07 Aug 2026 07:03:18 UTC | 0xface…7b21 | IN | 0xcad3…cafe | $NaN18,083.481632 CAFE | CafeFun (CAFE) | |
| 0xeefb23d1…08c2ad | Transfer | 30,016,615 | 10 days agoFri, 07 Aug 2026 07:03:17 UTC | 0x849f…90fd | IN | 0xcad3…cafe | $NaN20,775.414634 CAFE | CafeFun (CAFE) | |
| 0xb8e300a2…27754a | Transfer | 30,016,487 | 10 days agoFri, 07 Aug 2026 07:03:05 UTC | 0xa6f8…6993 | IN | 0xcad3…cafe | $NaN16,961.855977 CAFE | CafeFun (CAFE) | |
| 0x48fa61df…ca12a9 | Transfer | 30,016,309 | 10 days agoFri, 07 Aug 2026 07:02:47 UTC | 0x66a8…0a3e | IN | 0xcad3…cafe | $NaN17,114.555989 CAFE | CafeFun (CAFE) | |
| 0x9d9d3564…12cd07 | Transfer | 30,016,307 | 10 days agoFri, 07 Aug 2026 07:02:46 UTC | 0x43e2…934e | IN | 0xcad3…cafe | $NaN18,479.485110 CAFE | CafeFun (CAFE) | |
| 0x6b6bed77…9d4748 | Transfer | 30,016,072 | 10 days agoFri, 07 Aug 2026 07:02:23 UTC | 0xa086…be0a | IN | 0xcad3…cafe | $NaN20,577.983803 CAFE | CafeFun (CAFE) | |
| 0xcf4d938e…afdaa7 | Transfer | 30,016,054 | 10 days agoFri, 07 Aug 2026 07:02:21 UTC | 0x2a8a…9a99 | IN | 0xcad3…cafe | $NaN25,095.091711 CAFE | CafeFun (CAFE) | |
| 0x6b2a058a…9b5511 | Transfer | 30,016,035 | 10 days agoFri, 07 Aug 2026 07:02:19 UTC | 0x5b40…add9 | IN | 0xcad3…cafe | $NaN19,001.039278 CAFE | CafeFun (CAFE) | |
| 0x6b2a058a…9b5511 | Transfer | 30,016,035 | 10 days agoFri, 07 Aug 2026 07:02:19 UTC | 0xcad3…cafe | OUT | 0x374c…c431 | $NaN231,346.646803 CAFE | CafeFun (CAFE) | |
| 0x6b2a058a…9b5511 | Transfer | 30,016,035 | 10 days agoFri, 07 Aug 2026 07:02:19 UTC | 0xcad3…cafe | OUT | 0xcad3…cafe | $NaN2,336.834816 CAFE | CafeFun (CAFE) | |
| 0xa2ec3acd…0fba09 | Transfer | 30,016,012 | 10 days agoFri, 07 Aug 2026 07:02:17 UTC | 0xedd4…9b95 | IN | 0xcad3…cafe | $NaN34,856.390489 CAFE | CafeFun (CAFE) |
| Block | Age | Parent Transaction Hash | Type | Method | From | To | Value | |
|---|---|---|---|---|---|---|---|---|
| 30,016,898 | 10 days agoFri, 07 Aug 2026 07:03:46 UTC | 0xfd530d…47a461 | CALL | Execute | 0xcad3…cafe | OUT | 0x70ab…6ec3 | 0.00159 ETH |
| 30,016,898 | 10 days agoFri, 07 Aug 2026 07:03:46 UTC | 0xfd530d…47a461 | CALL | Execute | 0x89e5…9eba | IN | 0xcad3…cafe | 0.00159 ETH |
| 30,016,035 | 10 days agoFri, 07 Aug 2026 07:02:19 UTC | 0x6b2a05…9b5511 | CALL | Execute | 0xcad3…cafe | OUT | 0x70ab…6ec3 | 0.00335 ETH |
| 30,016,035 | 10 days agoFri, 07 Aug 2026 07:02:19 UTC | 0x6b2a05…9b5511 | CALL | Execute | 0x89e5…9eba | IN | 0xcad3…cafe | 0.00335 ETH |
| 30,016,014 | 10 days agoFri, 07 Aug 2026 07:02:17 UTC | 0x12d1d1…d2187b | CALL | Execute | 0xcad3…cafe | OUT | 0x70ab…6ec3 | 0.00335 ETH |
| 30,016,014 | 10 days agoFri, 07 Aug 2026 07:02:17 UTC | 0x12d1d1…d2187b | CALL | Execute | 0x89e5…9eba | IN | 0xcad3…cafe | 0.00335 ETH |
| 30,016,014 | 10 days agoFri, 07 Aug 2026 07:02:17 UTC | 0x55d86f…f48f36 | CALL | Execute | 0xcad3…cafe | OUT | 0x70ab…6ec3 | 0.00335 ETH |
| 30,016,014 | 10 days agoFri, 07 Aug 2026 07:02:17 UTC | 0x55d86f…f48f36 | CALL | Execute | 0x89e5…9eba | IN | 0xcad3…cafe | 0.00335 ETH |
| 30,016,013 | 10 days agoFri, 07 Aug 2026 07:02:17 UTC | 0x712e37…92a25a | CALL | Execute | 0xcad3…cafe | OUT | 0x70ab…6ec3 | 0.00335 ETH |
| 30,016,013 | 10 days agoFri, 07 Aug 2026 07:02:17 UTC | 0x712e37…92a25a | CALL | Execute | 0x89e5…9eba | IN | 0xcad3…cafe | 0.00335 ETH |
| 30,012,927 | 10 days agoFri, 07 Aug 2026 06:57:07 UTC | 0xdcd5fe…2ca9d4 | CALL | Execute | 0xcad3…cafe | OUT | 0x70ab…6ec3 | 0.01764 ETH |
| 30,012,927 | 10 days agoFri, 07 Aug 2026 06:57:07 UTC | 0xdcd5fe…2ca9d4 | CALL | Execute | 0x89e5…9eba | IN | 0xcad3…cafe | 0.01764 ETH |
| 29,506,047 | 11 days agoThu, 06 Aug 2026 16:51:20 UTC | 0x5d3836…470fa8 | CALL | Execute | 0xcad3…cafe | OUT | 0x70ab…6ec3 | 0.00568 ETH |
| 29,506,047 | 11 days agoThu, 06 Aug 2026 16:51:20 UTC | 0x5d3836…470fa8 | CALL | Execute | 0x89e5…9eba | IN | 0xcad3…cafe | 0.00568 ETH |
| 29,486,839 | 11 days agoThu, 06 Aug 2026 16:19:18 UTC | 0x687e4f…178de5 | CALL | Execute | 0xcad3…cafe | OUT | 0x70ab…6ec3 | 0.00801 ETH |
| 29,486,839 | 11 days agoThu, 06 Aug 2026 16:19:18 UTC | 0x687e4f…178de5 | CALL | Execute | 0x89e5…9eba | IN | 0xcad3…cafe | 0.00801 ETH |
| 29,482,901 | 11 days agoThu, 06 Aug 2026 16:12:44 UTC | 0xaf7e43…f7d1f9 | CALL | axiomTrade | 0xcad3…cafe | OUT | 0x70ab…6ec3 | 0.00398 ETH |
| 29,482,901 | 11 days agoThu, 06 Aug 2026 16:12:44 UTC | 0xaf7e43…f7d1f9 | CALL | axiomTrade | 0x89e5…9eba | IN | 0xcad3…cafe | 0.00398 ETH |
| 29,480,765 | 11 days agoThu, 06 Aug 2026 16:09:10 UTC | 0x0256f7…4fd688 | CALL | 0x549299b8 | 0xcad3…cafe | OUT | 0x70ab…6ec3 | 0.00254 ETH |
| 29,480,765 | 11 days agoThu, 06 Aug 2026 16:09:10 UTC | 0x0256f7…4fd688 | CALL | 0x549299b8 | 0x89e5…9eba | IN | 0xcad3…cafe | 0.00254 ETH |
| 29,479,563 | 11 days agoThu, 06 Aug 2026 16:07:09 UTC | 0xe4c8e7…ac87b7 | CALL | swap | 0xcad3…cafe | OUT | 0x70ab…6ec3 | 0.01464 ETH |
| 29,479,563 | 11 days agoThu, 06 Aug 2026 16:07:09 UTC | 0xe4c8e7…ac87b7 | CALL | swap | 0x89e5…9eba | IN | 0xcad3…cafe | 0.01464 ETH |
| 29,479,182 | 11 days agoThu, 06 Aug 2026 16:06:31 UTC | 0xfef997…dc2d2e | CALL | 0x549299b8 | 0xcad3…cafe | OUT | 0x70ab…6ec3 | 0.01899 ETH |
| 29,479,182 | 11 days agoThu, 06 Aug 2026 16:06:31 UTC | 0xfef997…dc2d2e | CALL | 0x549299b8 | 0x89e5…9eba | IN | 0xcad3…cafe | 0.01899 ETH |
| 29,478,901 | 11 days agoThu, 06 Aug 2026 16:06:03 UTC | 0x93e911…810d5e | CALL | swap | 0xcad3…cafe | OUT | 0x70ab…6ec3 | 0.00551 ETH |