/*
$CASHDOG is here to follow in the footsteps of $CASHCAT.
X Community: https://x.com/i/communities/2003391988390117556
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.22;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// File @openzeppelin/contracts/token/ERC20/IERC20.sol@v4.4.0
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
// File @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol@v4.4.0
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
pragma solidity ^0.8.22;
contract ERC20 is Context, IERC20, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* The default value of {decimals} is 18. To select a different value for
* {decimals} you should overload it.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
function decimals() public view virtual override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
function approve(address spender, uint256 amount) public virtual override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
function transferFrom(
address sender,
address recipient,
uint256 amount
) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
uint256 currentAllowance = _allowances[sender][_msgSender()];
require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
unchecked {
_approve(sender, _msgSender(), currentAllowance - amount);
}
return true;
}
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
return true;
}
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
uint256 currentAllowance = _allowances[_msgSender()][spender];
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(_msgSender(), spender, currentAllowance - subtractedValue);
}
return true;
}
function _transfer(
address sender,
address recipient,
uint256 amount
) internal virtual {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(sender, recipient, amount);
uint256 senderBalance = _balances[sender];
require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[sender] = senderBalance - amount;
}
_balances[recipient] += amount;
emit Transfer(sender, recipient, amount);
_afterTokenTransfer(sender, recipient, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
_balances[account] += amount;
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
}
_totalSupply -= amount;
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
function _approve(
address owner,
address spender,
uint256 amount
) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
function _afterTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
}
pragma solidity ^0.8.22;
contract CashDog is ERC20 {
constructor() ERC20("Cash Dog", "CASHDOG") {
_mint(msg.sender, 1000000000 * 10 ** decimals());
}
}[
{
"type": "constructor",
"inputs": [],
"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": "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": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "decimals",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint8",
"internalType": "uint8"
}
],
"stateMutability": "view"
},
{
"name": "decreaseAllowance",
"type": "function",
"inputs": [
{
"name": "spender",
"type": "address",
"internalType": "address"
},
{
"name": "subtractedValue",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "nonpayable"
},
{
"name": "increaseAllowance",
"type": "function",
"inputs": [
{
"name": "spender",
"type": "address",
"internalType": "address"
},
{
"name": "addedValue",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "nonpayable"
},
{
"name": "name",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "string",
"internalType": "string"
}
],
"stateMutability": "view"
},
{
"name": "symbol",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "string",
"internalType": "string"
}
],
"stateMutability": "view"
},
{
"name": "totalSupply",
"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"
}
]0x608060405234801561000f575f5ffd5b50604051806040016040528060088152602001674361736820446f6760c01b8152506040518060400160405280600781526020016643415348444f4760c81b81525081600390816100609190610226565b50600461006d8282610226565b5050506100a0336100826100a560201b60201c565b61008d90600a6103d9565b61009b90633b9aca006103ee565b6100aa565b610418565b601290565b6001600160a01b0382166101045760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060025f8282546101159190610405565b90915550506001600160a01b0382165f9081526020819052604081208054839290610141908490610405565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806101b757607f821691505b6020821081036101d557634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561018a57805f5260205f20601f840160051c810160208510156102005750805b601f840160051c820191505b8181101561021f575f815560010161020c565b5050505050565b81516001600160401b0381111561023f5761023f61018f565b6102538161024d84546101a3565b846101db565b6020601f821160018114610285575f831561026e5750848201515b5f19600385901b1c1916600184901b17845561021f565b5f84815260208120601f198516915b828110156102b45787850151825560209485019460019092019101610294565b50848210156102d157868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b6001815b600184111561032f57808504811115610313576103136102e0565b600184161561032157908102905b60019390931c9280026102f8565b935093915050565b5f82610345575060016103d3565b8161035157505f6103d3565b816001811461036757600281146103715761038d565b60019150506103d3565b60ff841115610382576103826102e0565b50506001821b6103d3565b5060208310610133831016604e8410600b84101617156103b0575081810a6103d3565b6103bc5f1984846102f4565b805f19048211156103cf576103cf6102e0565b0290505b92915050565b5f6103e760ff841683610337565b9392505050565b80820281158282048414176103d3576103d36102e0565b808201808211156103d3576103d36102e0565b610897806104255f395ff3fe608060405234801561000f575f5ffd5b50600436106100a6575f3560e01c8063395093511161006e578063395093511461011f57806370a082311461013257806395d89b411461015a578063a457c2d714610162578063a9059cbb14610175578063dd62ed3e14610188575f5ffd5b806306fdde03146100aa578063095ea7b3146100c857806318160ddd146100eb57806323b872dd146100fd578063313ce56714610110575b5f5ffd5b6100b26101c0565b6040516100bf91906106f1565b60405180910390f35b6100db6100d6366004610757565b610250565b60405190151581526020016100bf565b6002545b6040519081526020016100bf565b6100db61010b36600461077f565b610266565b604051601281526020016100bf565b6100db61012d366004610757565b610313565b6100ef6101403660046107b9565b6001600160a01b03165f9081526020819052604090205490565b6100b261034e565b6100db610170366004610757565b61035d565b6100db610183366004610757565b6103f5565b6100ef6101963660046107d9565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6060600380546101cf9061080a565b80601f01602080910402602001604051908101604052809291908181526020018280546101fb9061080a565b80156102465780601f1061021d57610100808354040283529160200191610246565b820191905f5260205f20905b81548152906001019060200180831161022957829003601f168201915b5050505050905090565b5f61025c338484610401565b5060015b92915050565b5f610272848484610524565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156102fb5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103088533858403610401565b506001949350505050565b335f8181526001602090815260408083206001600160a01b0387168452909152812054909161025c918590610349908690610842565b610401565b6060600480546101cf9061080a565b335f9081526001602090815260408083206001600160a01b0386168452909152812054828110156103de5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016102f2565b6103eb3385858403610401565b5060019392505050565b5f61025c338484610524565b6001600160a01b0383166104635760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016102f2565b6001600160a01b0382166104c45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016102f2565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166105885760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016102f2565b6001600160a01b0382166105ea5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016102f2565b6001600160a01b0383165f90815260208190526040902054818110156106615760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016102f2565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290610697908490610842565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516106e391815260200190565b60405180910390a350505050565b602081525f82518060208401525f5b8181101561071d5760208186018101516040868401015201610700565b505f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610752575f5ffd5b919050565b5f5f60408385031215610768575f5ffd5b6107718361073c565b946020939093013593505050565b5f5f5f60608486031215610791575f5ffd5b61079a8461073c565b92506107a86020850161073c565b929592945050506040919091013590565b5f602082840312156107c9575f5ffd5b6107d28261073c565b9392505050565b5f5f604083850312156107ea575f5ffd5b6107f38361073c565b91506108016020840161073c565b90509250929050565b600181811c9082168061081e57607f821691505b60208210810361083c57634e487b7160e01b5f52602260045260245ffd5b50919050565b8082018082111561026057634e487b7160e01b5f52601160045260245ffdfea2646970667358221220f5e0790615198f35b671b4c0aab837fecf97ec35f18ce0307c7c44c90d28eb5a64736f6c634300081c0033
0x608060405234801561000f575f5ffd5b50600436106100a6575f3560e01c8063395093511161006e578063395093511461011f57806370a082311461013257806395d89b411461015a578063a457c2d714610162578063a9059cbb14610175578063dd62ed3e14610188575f5ffd5b806306fdde03146100aa578063095ea7b3146100c857806318160ddd146100eb57806323b872dd146100fd578063313ce56714610110575b5f5ffd5b6100b26101c0565b6040516100bf91906106f1565b60405180910390f35b6100db6100d6366004610757565b610250565b60405190151581526020016100bf565b6002545b6040519081526020016100bf565b6100db61010b36600461077f565b610266565b604051601281526020016100bf565b6100db61012d366004610757565b610313565b6100ef6101403660046107b9565b6001600160a01b03165f9081526020819052604090205490565b6100b261034e565b6100db610170366004610757565b61035d565b6100db610183366004610757565b6103f5565b6100ef6101963660046107d9565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6060600380546101cf9061080a565b80601f01602080910402602001604051908101604052809291908181526020018280546101fb9061080a565b80156102465780601f1061021d57610100808354040283529160200191610246565b820191905f5260205f20905b81548152906001019060200180831161022957829003601f168201915b5050505050905090565b5f61025c338484610401565b5060015b92915050565b5f610272848484610524565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156102fb5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103088533858403610401565b506001949350505050565b335f8181526001602090815260408083206001600160a01b0387168452909152812054909161025c918590610349908690610842565b610401565b6060600480546101cf9061080a565b335f9081526001602090815260408083206001600160a01b0386168452909152812054828110156103de5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016102f2565b6103eb3385858403610401565b5060019392505050565b5f61025c338484610524565b6001600160a01b0383166104635760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016102f2565b6001600160a01b0382166104c45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016102f2565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166105885760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016102f2565b6001600160a01b0382166105ea5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016102f2565b6001600160a01b0383165f90815260208190526040902054818110156106615760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016102f2565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290610697908490610842565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516106e391815260200190565b60405180910390a350505050565b602081525f82518060208401525f5b8181101561071d5760208186018101516040868401015201610700565b505f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610752575f5ffd5b919050565b5f5f60408385031215610768575f5ffd5b6107718361073c565b946020939093013593505050565b5f5f5f60608486031215610791575f5ffd5b61079a8461073c565b92506107a86020850161073c565b929592945050506040919091013590565b5f602082840312156107c9575f5ffd5b6107d28261073c565b9392505050565b5f5f604083850312156107ea575f5ffd5b6107f38361073c565b91506108016020840161073c565b90509250929050565b600181811c9082168061081e57607f821691505b60208210810361083c57634e487b7160e01b5f52602260045260245ffd5b50919050565b8082018082111561026057634e487b7160e01b5f52601160045260245ffdfea2646970667358221220f5e0790615198f35b671b4c0aab837fecf97ec35f18ce0307c7c44c90d28eb5a64736f6c634300081c0033
| Token | Symbol | Balance | Price | Value |
|---|---|---|---|---|
| DIH | 1 | $0.0000106 | $0 |
| Type | Age | Block | Details |
|---|---|---|---|
| no cross-chain L1↔L2 transactions for this address | |||
| Transaction Hash | Method | Block | Age | From | To | Amount | Token | ||
|---|---|---|---|---|---|---|---|---|---|
| 0xb2478efa…361e2b | Transfer | 18,558,959 | 22 days agoFri, 24 Jul 2026 23:53:26 UTC | 0xcaf7…5d11 | IN | 0xb391…a552 | $0.001 DIH |
| Transaction Hash | Method | Block | Age | From | To | Type | Item | ||
|---|---|---|---|---|---|---|---|---|---|
| no NFT transfers for this address yet | |||||||||
| Block | Age | Parent Transaction Hash | Type | Method | From | To | Value | |
|---|---|---|---|---|---|---|---|---|
| no internal transactions found for this address yet (traced blocks + on-demand) | ||||||||
| Txn Hash | Age | Event | Topics / Data |
|---|---|---|---|
| 0x0a83ce…51b0bb | 11 days agoTue, 04 Aug 2026 11:16:30 UTC | Approval | [0] 0x000000000000…6c0c8daf [1] 0x000000000000…3ac78ba3 data: 0xffffffffffffffffff…73028071 |
| 0x0a83ce…51b0bb | 11 days agoTue, 04 Aug 2026 11:16:30 UTC | Transfer | [0] 0x000000000000…6c0c8daf [1] 0x000000000000…43e40951 data: 0x000000000000000000…c75dc7f0 |
| 0xb9b6be…279c03 | 17 days agoWed, 29 Jul 2026 21:53:22 UTC | Approval | [0] 0x000000000000…3e1ccbc7 [1] 0x000000000000…1fcf6f60 data: 0xffffffffffffffffff…ffffffff |
| 0xd9ed33…59b3ce | 22 days agoFri, 24 Jul 2026 15:44:57 UTC | Approval | [0] 0x000000000000…7db0429c [1] 0x000000000000…262c40dc data: 0xffffffffffffffffff…b73a5859 |
| 0xd9ed33…59b3ce | 22 days agoFri, 24 Jul 2026 15:44:57 UTC | Transfer | [0] 0x000000000000…7db0429c [1] 0x000000000000…43e40951 data: 0x000000000000000000…48c5a7a6 |
| 0x5d2f89…f7d6bb | 22 days agoFri, 24 Jul 2026 15:44:57 UTC | Approval | [0] 0x000000000000…7db0429c [1] 0x000000000000…262c40dc data: 0xffffffffffffffffff…ffffffff |
| 0x82d0a8…d49ad6 | 22 days agoFri, 24 Jul 2026 03:42:11 UTC | Transfer | [0] 0x000000000000…e9b05d31 [1] 0x000000000000…43e40951 data: 0x000000000000000000…b32c9c1e |
| 0x82d0a8…d49ad6 | 22 days agoFri, 24 Jul 2026 03:42:11 UTC | Approval | [0] 0x000000000000…21932dd4 [1] 0x000000000000…e1a4f53d data: 0xffffffffffffffffff…334d8f8a |
| 0x82d0a8…d49ad6 | 22 days agoFri, 24 Jul 2026 03:42:11 UTC | Transfer | [0] 0x000000000000…21932dd4 [1] 0x000000000000…e9b05d31 data: 0x000000000000000000…b32c9c1e |
| 0xc7954f…2c2f70 | 23 days agoThu, 23 Jul 2026 17:39:24 UTC | Approval | [0] 0x000000000000…d1b3b51f [1] 0x000000000000…1fcf6f60 data: 0xffffffffffffffffff…ffffffff |
| 0x1ff8a4…71aacc | 23 days agoThu, 23 Jul 2026 17:39:24 UTC | Approval | [0] 0x000000000000…358cbe19 [1] 0x000000000000…1fcf6f60 data: 0xffffffffffffffffff…ffffffff |
| 0x3d859b…07de7b | 23 days agoThu, 23 Jul 2026 01:57:36 UTC | Approval | [0] 0x000000000000…d3d13dfb [1] 0x000000000000…3ac78ba3 data: 0xffffffffffffffffff…4c53dd5d |
| 0x3d859b…07de7b | 23 days agoThu, 23 Jul 2026 01:57:36 UTC | Transfer | [0] 0x000000000000…d3d13dfb [1] 0x000000000000…43e40951 data: 0x000000000000000000…16689185 |
| 0x8c3da4…356402 | 23 days agoThu, 23 Jul 2026 01:55:46 UTC | Transfer | [0] 0x000000000000…43e40951 [1] 0x000000000000…d3d13dfb data: 0x000000000000000000…3f0dc13e |
| 0xd8b241…fa5dfb | 24 days agoWed, 22 Jul 2026 16:42:46 UTC | Transfer | [0] 0x000000000000…94624eff [1] 0x000000000000…43e40951 data: 0x000000000000000000…52d35699 |
| 0xd8b241…fa5dfb | 24 days agoWed, 22 Jul 2026 16:42:46 UTC | Approval | [0] 0x000000000000…eba0c851 [1] 0x000000000000…72c22734 data: 0xffffffffffffffffff…ad2ca966 |
| 0xd8b241…fa5dfb | 24 days agoWed, 22 Jul 2026 16:42:46 UTC | Transfer | [0] 0x000000000000…eba0c851 [1] 0x000000000000…94624eff data: 0x000000000000000000…52d35699 |
| 0x46dad5…acd1f3 | 24 days agoWed, 22 Jul 2026 16:42:45 UTC | Approval | [0] 0x000000000000…eba0c851 [1] 0x000000000000…72c22734 data: 0xffffffffffffffffff…ffffffff |
| 0xcd7583…f0dbcb | 26 days agoMon, 20 Jul 2026 13:20:02 UTC | Transfer | [0] 0x000000000000…bf17d7b6 [1] 0x000000000000…43e40951 data: 0x000000000000000000…4b7a2748 |
| 0xcd7583…f0dbcb | 26 days agoMon, 20 Jul 2026 13:20:02 UTC | Transfer | [0] 0x000000000000…45000000 [1] 0x000000000000…bf17d7b6 data: 0x000000000000000000…4b7a2748 |
| 0xcd7583…f0dbcb | 26 days agoMon, 20 Jul 2026 13:20:02 UTC | Approval | [0] 0x000000000000…233154c9 [1] 0x000000000000…45000000 data: 0x000000000000000000…00000000 |
| 0xcd7583…f0dbcb | 26 days agoMon, 20 Jul 2026 13:20:02 UTC | Transfer | [0] 0x000000000000…233154c9 [1] 0x000000000000…45000000 data: 0x000000000000000000…c10c5dd5 |
| 0xcd7583…f0dbcb | 26 days agoMon, 20 Jul 2026 13:20:02 UTC | Approval | [0] 0x000000000000…233154c9 [1] 0x000000000000…45000000 data: 0x000000000000000000…c10c5dd5 |
| 0xb95585…59c4ca | 26 days agoMon, 20 Jul 2026 08:27:40 UTC | Approval | [0] 0x000000000000…0094ad95 [1] 0x000000000000…1fcf6f60 data: 0xffffffffffffffffff…ffffffff |
| 0x23e6e1…589cc7 | 27 days agoSun, 19 Jul 2026 08:10:56 UTC | Transfer | [0] 0x000000000000…e9b05d31 [1] 0x000000000000…43e40951 data: 0x000000000000000000…2a87ce5e |
| Transaction Hash | Method ? | Block | Age | From | To | Amount | Txn Fee ? | ||
|---|---|---|---|---|---|---|---|---|---|
| 0xb9b6be…279c03 | Approve | 22,791,928 | 17 days agoWed, 29 Jul 2026 21:53:22 UTC | 0x5765…cbc7 | IN | Cash Dog | $0.000 ETH | 0.00000101 | |
| 0x5d2f89…f7d6bb | Approve | 18,266,461 | 22 days agoFri, 24 Jul 2026 15:44:57 UTC | 0x3c87…429c | IN | Cash Dog | $0.000 ETH | 0.00000358 | |
| 0x1ff8a4…71aacc | Approve | 17,473,558 | 23 days agoThu, 23 Jul 2026 17:39:24 UTC | 0x87cc…be19 | IN | Cash Dog | $0.000 ETH | 0.00000549 | |
| 0xc7954f…2c2f70 | Approve | 17,473,558 | 23 days agoThu, 23 Jul 2026 17:39:24 UTC | 0xf3fd…b51f | IN | Cash Dog | $0.000 ETH | 0.00000549 | |
| 0x46dad5…acd1f3 | Approve | 16,577,729 | 24 days agoWed, 22 Jul 2026 16:42:45 UTC | 0x90f9…c851 | IN | Cash Dog | $0.000 ETH | 0.00000235 | |
| 0xb95585…59c4ca | Approve | 14,557,197 | 26 days agoMon, 20 Jul 2026 08:27:40 UTC | 0x49e5…ad95 | IN | Cash Dog | $0.000 ETH | 0.00000242 | |
| 0xc2c333…3e14c6 | Approve | 13,686,994 | 27 days agoSun, 19 Jul 2026 08:10:55 UTC | 0xaf09…b1b9 | IN | Cash Dog | $0.000 ETH | 0.00000275 | |
| 0xf2225f…011fa1 | Approve | 13,097,802 | 28 days agoSat, 18 Jul 2026 15:45:03 UTC | 0x8f63…b53c | IN | Cash Dog | $0.000 ETH | 0.00000308 | |
| 0xc235f1…556362 | Approve | 12,621,306 | 28 days agoSat, 18 Jul 2026 02:27:14 UTC | 0xfe4a…ee6d | IN | Cash Dog | $0.000 ETH | 0.00000363 | |
| 0x9749a3…4b1e2c | Approve | 12,578,412 | 29 days agoSat, 18 Jul 2026 01:15:36 UTC | 0x50c0…d277 | IN | Cash Dog | $0.000 ETH | 0.00000361 | |
| 0xfeebc2…ef5f7b | Approve | 12,397,252 | 29 days agoFri, 17 Jul 2026 20:13:02 UTC | 0x3172…3dfb | IN | Cash Dog | $0.000 ETH | 0.00000218 | |
| 0x8c7745…a3b231 | Transfer | 12,274,337 | 29 days agoFri, 17 Jul 2026 16:47:39 UTC | 0x23ee…7cfc | IN | Cash Dog | $0.000 ETH | 0.00000199 | |
| 0x1ddf8b…868585 | Approve | 12,249,636 | 29 days agoFri, 17 Jul 2026 16:06:22 UTC | 0xcce1…9066 | IN | Cash Dog | $0.000 ETH | 0.00000343 | |
| 0x9c4ebd…c3814e | Approve | 12,248,737 | 29 days agoFri, 17 Jul 2026 16:04:52 UTC | 0x3172…3dfb | IN | Cash Dog | $0.000 ETH | 0.00000214 | |
| 0x71a905…eac936 | Approve | 12,247,433 | 29 days agoFri, 17 Jul 2026 16:02:42 UTC | 0xb910…5491 | IN | Cash Dog | $0.000 ETH | 0.00000340 | |
| 0xbf77cc…b3482a | Approve | 12,239,909 | 29 days agoFri, 17 Jul 2026 15:50:08 UTC | 0x7028…2506 | IN | Cash Dog | $0.000 ETH | 0.00000345 | |
| 0xc71c82…30dea9 | Approve | 12,239,266 | 29 days agoFri, 17 Jul 2026 15:49:04 UTC | 0x8f63…b53c | IN | Cash Dog | $0.000 ETH | 0.00000341 | |
| 0x84d35b…79c42b | Approve | 12,239,068 | 29 days agoFri, 17 Jul 2026 15:48:44 UTC | 0xe108…56f7 | IN | Cash Dog | $0.000 ETH | 0.00000341 | |
| 0x208b60…08d2eb | Approve | 12,237,010 | 29 days agoFri, 17 Jul 2026 15:45:17 UTC | 0x89a7…f4e3 | IN | Cash Dog | $0.000 ETH | 0.00000216 | |
| 0x3c8b0b…771be1 | Approve | 12,237,010 | 29 days agoFri, 17 Jul 2026 15:45:17 UTC | 0x0111…7019 | IN | Cash Dog | $0.000 ETH | 0.00000216 | |
| 0x9ff11e…f052d1 | Approve | 12,236,994 | 29 days agoFri, 17 Jul 2026 15:45:15 UTC | 0x6cfa…3e32 | IN | Cash Dog | $0.000 ETH | 0.00000216 | |
| 0x836ce6…26985e | Approve | 12,236,994 | 29 days agoFri, 17 Jul 2026 15:45:15 UTC | 0x34b2…20d4 | IN | Cash Dog | $0.000 ETH | 0.00000216 | |
| 0xc5e372…5c83ee | Approve | 12,236,879 | 29 days agoFri, 17 Jul 2026 15:45:04 UTC | 0x64d8…41ca | IN | Cash Dog | $0.000 ETH | 0.00000220 | |
| 0xcb8f4c…2408bf | Approve | 12,236,879 | 29 days agoFri, 17 Jul 2026 15:45:04 UTC | 0x73fe…33c4 | IN | Cash Dog | $0.000 ETH | 0.00000220 | |
| 0x2b44f7…e03bfa | Approve | 12,236,631 | 29 days agoFri, 17 Jul 2026 15:44:40 UTC | 0x0111…7019 | IN | Cash Dog | $0.000 ETH | 0.00000343 |