// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/utils/ReentrancyGuard.sol";
interface IDEXFactory {
function createPair(address tokenA, address tokenB) external returns (address pair);
}
interface IDEXRouter {
function factory() external pure returns (address);
function WETH() external pure returns (address);
function swapExactTokensForETHSupportingFeeOnTransferTokens(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external;
}
interface IDEXPair {
function token0() external view returns (address);
function token1() external view returns (address);
}
contract robin is ERC20, Ownable, ReentrancyGuard {
using SafeERC20 for IERC20;
address public immutable pair;
uint256 public immutable tradeFee;
uint256 public immutable limitPerWallet;
uint256 public conversionThreshold;
uint256 public totalClaimableETH;
address private feeReceiver;
bool public isConversionEnabled;
bool private conversion;
IDEXRouter public immutable router;
mapping(address => uint256) public claimableETH;
mapping(address => bool) public isWalletExemptFromFee;
mapping(address => bool) public isLiquidityPair;
mapping(address => bool) public isWalletExemptFromLimit;
event ConversionThresholdUpdated(uint256 amount);
event FeeWalletUpdated(address indexed wallet);
event WithdrawStuckETH(uint256 amount);
event WithdrawStuckTokens(address indexed token, uint256 amount);
event FeeTokensWithdrawn(uint256 amount);
event FeeClaimed(address indexed wallet, uint256 amount);
event ConversionFailed(uint256 amount);
constructor(
address _owner,
address _finalOwner,
address _router,
address _feeReceiver,
string memory _name,
string memory _symbol,
uint256 _totalSupply
) ERC20(_name, _symbol) Ownable(_owner) {
require(_owner != address(0), "Owner:: zero address");
require(_finalOwner != address(0), "FinalOwner:: zero address");
require(_router != address(0), "Router: zero address");
require(_feeReceiver != address(0), "FeeReceiver:: zero address");
require(_totalSupply > 0, "Supply: zero");
require(bytes(_name).length > 0, "Name: empty");
require(bytes(_symbol).length > 0, "Symbol: empty");
uint256 supplyWei = _totalSupply * 1e18;
router = IDEXRouter(_router);
pair = IDEXFactory(router.factory()).createPair(address(this), router.WETH());
feeReceiver = _feeReceiver;
tradeFee = 1000;
conversionThreshold = supplyWei * 5 / 10000;
limitPerWallet = supplyWei * 500 / 10000;
isConversionEnabled = true;
isLiquidityPair[pair] = true;
address burnAddress = 0x000000000000000000000000000000000000dEaD;
isWalletExemptFromFee[address(this)] = true;
isWalletExemptFromFee[_owner] = true;
isWalletExemptFromFee[_finalOwner] = true;
isWalletExemptFromFee[_feeReceiver] = true;
isWalletExemptFromLimit[address(this)] = true;
isWalletExemptFromLimit[pair] = true;
isWalletExemptFromLimit[_owner] = true;
isWalletExemptFromLimit[_finalOwner] = true;
isWalletExemptFromLimit[address(router)] = true;
isWalletExemptFromLimit[burnAddress] = true;
_mint(_owner, supplyWei);
_approve(address(this), address(router), type(uint256).max);
}
receive() external payable {}
function updateConversionThreshold(uint256 amount) external onlyOwner {
require(amount <= totalSupply(), "Amount cannot be over the total supply.");
require(amount >= (100 * 1e18), "Amount cannot be less than `100` token.");
conversionThreshold = amount;
emit ConversionThresholdUpdated(amount);
}
function updateFeeWallet(address newWallet) external onlyOwner {
require(newWallet != address(0), "Zero address");
feeReceiver = newWallet;
emit FeeWalletUpdated(newWallet);
}
function _update(address sender, address recipient, uint256 amount) internal override(ERC20) {
if (sender == address(0) || recipient == address(0)) {
super._update(sender, recipient, amount);
return;
}
uint256 contractTokenBalance = balanceOf(address(this));
bool canConvert = contractTokenBalance >= conversionThreshold;
if(!conversion && canConvert && isLiquidityPair[recipient] && isConversionEnabled)
{
conversion = true;
uint256 initialETHBalance = address(this).balance;
convertTokensForETH(conversionThreshold);
uint256 newETHReceived = address(this).balance - initialETHBalance;
sendETH(feeReceiver, newETHReceived);
conversion = false;
}
bool senderExemptFromFee = isWalletExemptFromFee[sender];
bool recipientExemptFromFee = isWalletExemptFromFee[recipient];
bool isTrade = isLiquidityPair[sender] || isLiquidityPair[recipient];
uint256 netAmount = amount;
uint256 fee = 0;
if (!senderExemptFromFee && !recipientExemptFromFee && isTrade) {
fee = (amount * tradeFee) / 10000;
netAmount = amount - fee;
if (fee > 0) {
super._update(sender, address(this), fee);
}
}
if (!isWalletExemptFromLimit[recipient]) {
uint256 recipientBalance = balanceOf(recipient);
require(recipientBalance + netAmount <= limitPerWallet, "Exceeds wallet limit");
}
super._update(sender, recipient, netAmount);
}
function sendETH(address to, uint256 amount) private {
if (amount == 0) return;
(bool success, ) = payable(to).call{value: amount}("");
if (!success) {
claimableETH[to] += amount;
totalClaimableETH += amount;
}
}
function convertTokensForETH(uint256 amount) private {
address[] memory path = new address[](2);
path[0] = address(this);
path[1] = router.WETH();
try router.swapExactTokensForETHSupportingFeeOnTransferTokens(
amount,
0,
path,
address(this),
block.timestamp
) {
} catch {
emit ConversionFailed(amount);
}
}
function claimFees() external nonReentrant {
uint256 amount = claimableETH[msg.sender];
require(amount > 0, "Nothing to claim");
claimableETH[msg.sender] = 0;
totalClaimableETH -= amount;
(bool success, ) = payable(msg.sender).call{value: amount}("");
require(success, "ETH transfer failed");
emit FeeClaimed(msg.sender, amount);
}
function withdrawFeeTokens() external onlyOwner {
uint256 amount = balanceOf(address(this));
require(amount > 0, "No tokens to withdraw");
super._update(address(this), owner(), amount);
emit FeeTokensWithdrawn(amount);
}
function withdrawStuckETH() external onlyOwner nonReentrant {
uint256 amount = address(this).balance - totalClaimableETH;
require(amount > 0, "amount zero");
(bool success, ) = payable(owner()).call{value: amount}("");
require(success, "ETH transfer failed");
emit WithdrawStuckETH(amount);
}
function withdrawStuckTokens(address token) external onlyOwner {
uint256 amount = IERC20(token).balanceOf(address(this));
require(amount > 0, "amount zero");
IERC20(token).safeTransfer(owner(), amount);
emit WithdrawStuckTokens(token, amount);
}
}[
{
"type": "constructor",
"inputs": [
{
"name": "_owner",
"type": "address",
"internalType": "address"
},
{
"name": "_finalOwner",
"type": "address",
"internalType": "address"
},
{
"name": "_router",
"type": "address",
"internalType": "address"
},
{
"name": "_feeReceiver",
"type": "address",
"internalType": "address"
},
{
"name": "_name",
"type": "string",
"internalType": "string"
},
{
"name": "_symbol",
"type": "string",
"internalType": "string"
},
{
"name": "_totalSupply",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "nonpayable"
},
{
"name": "ERC20InsufficientAllowance",
"type": "error",
"inputs": [
{
"name": "spender",
"type": "address",
"internalType": "address"
},
{
"name": "allowance",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "needed",
"type": "uint256",
"internalType": "uint256"
}
]
},
{
"name": "ERC20InsufficientBalance",
"type": "error",
"inputs": [
{
"name": "sender",
"type": "address",
"internalType": "address"
},
{
"name": "balance",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "needed",
"type": "uint256",
"internalType": "uint256"
}
]
},
{
"name": "ERC20InvalidApprover",
"type": "error",
"inputs": [
{
"name": "approver",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "ERC20InvalidReceiver",
"type": "error",
"inputs": [
{
"name": "receiver",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "ERC20InvalidSender",
"type": "error",
"inputs": [
{
"name": "sender",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "ERC20InvalidSpender",
"type": "error",
"inputs": [
{
"name": "spender",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "OwnableInvalidOwner",
"type": "error",
"inputs": [
{
"name": "owner",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "OwnableUnauthorizedAccount",
"type": "error",
"inputs": [
{
"name": "account",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "ReentrancyGuardReentrantCall",
"type": "error",
"inputs": []
},
{
"name": "SafeERC20FailedOperation",
"type": "error",
"inputs": [
{
"name": "token",
"type": "address",
"internalType": "address"
}
]
},
{
"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": "ConversionFailed",
"type": "event",
"inputs": [
{
"name": "amount",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
}
],
"anonymous": false
},
{
"name": "ConversionThresholdUpdated",
"type": "event",
"inputs": [
{
"name": "amount",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
}
],
"anonymous": false
},
{
"name": "FeeClaimed",
"type": "event",
"inputs": [
{
"name": "wallet",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "amount",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
}
],
"anonymous": false
},
{
"name": "FeeTokensWithdrawn",
"type": "event",
"inputs": [
{
"name": "amount",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
}
],
"anonymous": false
},
{
"name": "FeeWalletUpdated",
"type": "event",
"inputs": [
{
"name": "wallet",
"type": "address",
"indexed": true,
"internalType": "address"
}
],
"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": "WithdrawStuckETH",
"type": "event",
"inputs": [
{
"name": "amount",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
}
],
"anonymous": false
},
{
"name": "WithdrawStuckTokens",
"type": "event",
"inputs": [
{
"name": "token",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "amount",
"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": "value",
"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": "claimFees",
"type": "function",
"inputs": [],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "claimableETH",
"type": "function",
"inputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "conversionThreshold",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "decimals",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint8",
"internalType": "uint8"
}
],
"stateMutability": "view"
},
{
"name": "isConversionEnabled",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "view"
},
{
"name": "isLiquidityPair",
"type": "function",
"inputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "view"
},
{
"name": "isWalletExemptFromFee",
"type": "function",
"inputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "view"
},
{
"name": "isWalletExemptFromLimit",
"type": "function",
"inputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "view"
},
{
"name": "limitPerWallet",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "name",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "string",
"internalType": "string"
}
],
"stateMutability": "view"
},
{
"name": "owner",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "pair",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "renounceOwnership",
"type": "function",
"inputs": [],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "router",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "contract IDEXRouter"
}
],
"stateMutability": "view"
},
{
"name": "symbol",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "string",
"internalType": "string"
}
],
"stateMutability": "view"
},
{
"name": "totalClaimableETH",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "totalSupply",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "tradeFee",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "transfer",
"type": "function",
"inputs": [
{
"name": "to",
"type": "address",
"internalType": "address"
},
{
"name": "value",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "nonpayable"
},
{
"name": "transferFrom",
"type": "function",
"inputs": [
{
"name": "from",
"type": "address",
"internalType": "address"
},
{
"name": "to",
"type": "address",
"internalType": "address"
},
{
"name": "value",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "nonpayable"
},
{
"name": "transferOwnership",
"type": "function",
"inputs": [
{
"name": "newOwner",
"type": "address",
"internalType": "address"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "updateConversionThreshold",
"type": "function",
"inputs": [
{
"name": "amount",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "updateFeeWallet",
"type": "function",
"inputs": [
{
"name": "newWallet",
"type": "address",
"internalType": "address"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "withdrawFeeTokens",
"type": "function",
"inputs": [],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "withdrawStuckETH",
"type": "function",
"inputs": [],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "withdrawStuckTokens",
"type": "function",
"inputs": [
{
"name": "token",
"type": "address",
"internalType": "address"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"type": "receive",
"stateMutability": "payable"
}
]0x6080604052600436106101c5575f3560e01c8063715018a6116100f6578063a8aa1b3111610094578063dd62ed3e11610063578063dd62ed3e14610638578063f2fde38b14610674578063f5648a4f1461069c578063f887ea40146106b2576101cc565b8063a8aa1b3114610594578063a9059cbb146105be578063cb963728146105fa578063d294f09314610622576101cc565b806395d89b41116100d057806395d89b41146104da57806398c09dbc14610504578063a3bd607e14610540578063a620ce5a1461056a576101cc565b8063715018a61461045e57806374ed51bd146104745780638da5cb5b146104b0576101cc565b80632c7da270116101635780633a0199401161013d5780633a019940146103a85780635c9a05b8146103be57806366718524146103fa57806370a0823114610422576101cc565b80632c7da27014610318578063313ce56714610354578063341fee041461037e576101cc565b80631212b7c21161019f5780631212b7c21461026057806318160ddd1461028857806323b872dd146102b257806324bcdfbd146102ee576101cc565b806306fdde03146101d0578063095ea7b3146101fa5780630d9986ad14610236576101cc565b366101cc57005b5f80fd5b3480156101db575f80fd5b506101e46106dc565b6040516101f19190612255565b60405180910390f35b348015610205575f80fd5b50610220600480360381019061021b9190612306565b61076c565b60405161022d919061235e565b60405180910390f35b348015610241575f80fd5b5061024a61078e565b604051610257919061235e565b60405180910390f35b34801561026b575f80fd5b5061028660048036038101906102819190612377565b6107a1565b005b348015610293575f80fd5b5061029c610880565b6040516102a991906123b1565b60405180910390f35b3480156102bd575f80fd5b506102d860048036038101906102d391906123ca565b610889565b6040516102e5919061235e565b60405180910390f35b3480156102f9575f80fd5b506103026108b7565b60405161030f91906123b1565b60405180910390f35b348015610323575f80fd5b5061033e6004803603810190610339919061241a565b6108db565b60405161034b91906123b1565b60405180910390f35b34801561035f575f80fd5b506103686108f0565b6040516103759190612460565b60405180910390f35b348015610389575f80fd5b506103926108f8565b60405161039f91906123b1565b60405180910390f35b3480156103b3575f80fd5b506103bc6108fe565b005b3480156103c9575f80fd5b506103e460048036038101906103df919061241a565b6109a0565b6040516103f1919061235e565b60405180910390f35b348015610405575f80fd5b50610420600480360381019061041b919061241a565b6109bd565b005b34801561042d575f80fd5b506104486004803603810190610443919061241a565b610ab9565b60405161045591906123b1565b60405180910390f35b348015610469575f80fd5b50610472610afe565b005b34801561047f575f80fd5b5061049a6004803603810190610495919061241a565b610b11565b6040516104a7919061235e565b60405180910390f35b3480156104bb575f80fd5b506104c4610b2e565b6040516104d19190612488565b60405180910390f35b3480156104e5575f80fd5b506104ee610b56565b6040516104fb9190612255565b60405180910390f35b34801561050f575f80fd5b5061052a6004803603810190610525919061241a565b610be6565b604051610537919061235e565b60405180910390f35b34801561054b575f80fd5b50610554610c03565b60405161056191906123b1565b60405180910390f35b348015610575575f80fd5b5061057e610c09565b60405161058b91906123b1565b60405180910390f35b34801561059f575f80fd5b506105a8610c2d565b6040516105b59190612488565b60405180910390f35b3480156105c9575f80fd5b506105e460048036038101906105df9190612306565b610c51565b6040516105f1919061235e565b60405180910390f35b348015610605575f80fd5b50610620600480360381019061061b919061241a565b610c73565b005b34801561062d575f80fd5b50610636610dbc565b005b348015610643575f80fd5b5061065e600480360381019061065991906124a1565b610fa3565b60405161066b91906123b1565b60405180910390f35b34801561067f575f80fd5b5061069a6004803603810190610695919061241a565b611025565b005b3480156106a7575f80fd5b506106b06110a9565b005b3480156106bd575f80fd5b506106c66111fe565b6040516106d3919061253a565b60405180910390f35b6060600380546106eb90612580565b80601f016020809104026020016040519081016040528092919081815260200182805461071790612580565b80156107625780601f1061073957610100808354040283529160200191610762565b820191905f5260205f20905b81548152906001019060200180831161074557829003601f168201915b5050505050905090565b5f80610776611222565b9050610783818585611229565b600191505092915050565b600860149054906101000a900460ff1681565b6107a961123b565b6107b1610880565b8111156107f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ea90612620565b60405180910390fd5b68056bc75e2d6310000081101561083f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610836906126ae565b60405180910390fd5b806006819055507f77849c2c2b49d66e2e97e956c1af05c9f1907af10f5b83ee9267b29a8e96bb8e8160405161087591906123b1565b60405180910390a150565b5f600254905090565b5f80610893611222565b90506108a08582856112c2565b6108ab858585611355565b60019150509392505050565b7f00000000000000000000000000000000000000000000000000000000000003e881565b6009602052805f5260405f205f915090505481565b5f6012905090565b60075481565b61090661123b565b5f61091030610ab9565b90505f8111610954576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094b90612716565b60405180910390fd5b61096630610960610b2e565b83611445565b7f7e10a720eb16638fb8b463fd03bc7507e519095cd7710cd60aea770bf2cb93298160405161099591906123b1565b60405180910390a150565b600b602052805f5260405f205f915054906101000a900460ff1681565b6109c561123b565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2a9061277e565b60405180910390fd5b8060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f29acee77dafcfa0143d74a7ea236018f3a6e1fa71e27fc59bbfbc6b8ca8edccd60405160405180910390a250565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610b0661123b565b610b0f5f61165e565b565b600a602052805f5260405f205f915054906101000a900460ff1681565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610b6590612580565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9190612580565b8015610bdc5780601f10610bb357610100808354040283529160200191610bdc565b820191905f5260205f20905b815481529060010190602001808311610bbf57829003601f168201915b5050505050905090565b600c602052805f5260405f205f915054906101000a900460ff1681565b60065481565b7f00000000000000000000000000000000000000000000de589d32bd931c40000081565b7f000000000000000000000000181456473f08a3736627e929eb52567be15cfe5681565b5f80610c5b611222565b9050610c68818585611355565b600191505092915050565b610c7b61123b565b5f8173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610cb59190612488565b602060405180830381865afa158015610cd0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cf491906127b0565b90505f8111610d38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2f90612825565b60405180910390fd5b610d6a610d43610b2e565b828473ffffffffffffffffffffffffffffffffffffffff166117219092919063ffffffff16565b8173ffffffffffffffffffffffffffffffffffffffff167f07c81a5e6d155913a9ed2ce53630058179c89fc94bb5de130620b0245c9f6a0b82604051610db091906123b1565b60405180910390a25050565b610dc4611774565b5f60095f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490505f8111610e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3e9061288d565b60405180910390fd5b5f60095f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508060075f828254610e9a91906128d8565b925050819055505f3373ffffffffffffffffffffffffffffffffffffffff1682604051610ec690612938565b5f6040518083038185875af1925050503d805f8114610f00576040519150601f19603f3d011682016040523d82523d5f602084013e610f05565b606091505b5050905080610f49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4090612996565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff167f20ca5094f3a20c321cbe4123d0f01b276b81df0fa24cd4d83d9253956035d86383604051610f8f91906123b1565b60405180910390a25050610fa1611796565b565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61102d61123b565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361109d575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016110949190612488565b60405180910390fd5b6110a68161165e565b50565b6110b161123b565b6110b9611774565b5f600754476110c891906128d8565b90505f811161110c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110390612825565b60405180910390fd5b5f611115610b2e565b73ffffffffffffffffffffffffffffffffffffffff168260405161113890612938565b5f6040518083038185875af1925050503d805f8114611172576040519150601f19603f3d011682016040523d82523d5f602084013e611177565b606091505b50509050806111bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b290612996565b60405180910390fd5b7fa33220800f2effc0825473f114f7a61588b2e7a26ce303206bd9f6afe1cc1c62826040516111ea91906123b1565b60405180910390a150506111fc611796565b565b7f00000000000000000000000089e5db8b5aa49aa85ac63f691524311aeb649eba81565b5f33905090565b61123683838360016117b0565b505050565b611243611222565b73ffffffffffffffffffffffffffffffffffffffff16611261610b2e565b73ffffffffffffffffffffffffffffffffffffffff16146112c057611284611222565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016112b79190612488565b60405180910390fd5b565b5f6112cd8484610fa3565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81101561134f5781811015611340578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401611337939291906129b4565b60405180910390fd5b61134e84848484035f6117b0565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113c5575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016113bc9190612488565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611435575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161142c9190612488565b60405180910390fd5b61144083838361197f565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611495578060025f82825461148991906129e9565b92505081905550611563565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561151e578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401611515939291906129b4565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115aa578060025f82825403925050819055506115f4565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161165191906123b1565b60405180910390a3505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61172e8383836001611daf565b61176f57826040517f5274afe70000000000000000000000000000000000000000000000000000000081526004016117669190612488565b60405180910390fd5b505050565b61177c611e11565b600261178e611789611e52565b611e7b565b5f0181905550565b60016117a86117a3611e52565b611e7b565b5f0181905550565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611820575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016118179190612488565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611890575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016118879190612488565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611979578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161197091906123b1565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806119e457505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b156119f9576119f4838383611445565b611daa565b5f611a0330610ab9565b90505f6006548210159050600860159054906101000a900460ff16158015611a285750805b8015611a7a5750600b5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b8015611a925750600860149054906101000a900460ff165b15611b18576001600860156101000a81548160ff0219169083151502179055505f479050611ac1600654611e84565b5f8147611ace91906128d8565b9050611afb60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826120c8565b5f600860156101000a81548160ff02191690831515021790555050505b5f600a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1690505f600a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1690505f600b5f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611c4e5750600b5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b90505f8690505f84158015611c61575083155b8015611c6a5750825b15611ccd576127107f00000000000000000000000000000000000000000000000000000000000003e889611c9e9190612a1c565b611ca89190612a8a565b90508088611cb691906128d8565b91505f811115611ccc57611ccb8a3083611445565b5b5b600c5f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16611d97575f611d258a610ab9565b90507f00000000000000000000000000000000000000000000de589d32bd931c4000008382611d5491906129e9565b1115611d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8c90612b04565b60405180910390fd5b505b611da28a8a84611445565b505050505050505b505050565b5f8063a9059cbb60e01b9050604051815f525f1960601c86166004528460245260205f60445f808b5af1925060015f51148316611e03578383151615611df7573d5f823e3d81fd5b5f873b113d1516831692505b806040525050949350505050565b611e196121af565b15611e50576040517f3ee5aeb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b5f7f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f005f1b905090565b5f819050919050565b5f600267ffffffffffffffff811115611ea057611e9f612b22565b5b604051908082528060200260200182016040528015611ece5781602001602082028036833780820191505090505b50905030815f81518110611ee557611ee4612b4f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f00000000000000000000000089e5db8b5aa49aa85ac63f691524311aeb649eba73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f88573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fac9190612b90565b81600181518110611fc057611fbf612b4f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f00000000000000000000000089e5db8b5aa49aa85ac63f691524311aeb649eba73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b815260040161205b959493929190612cab565b5f604051808303815f87803b158015612072575f80fd5b505af1925050508015612083575060015b6120c3577fe6930f2f40564d0d8643def8394f16008e6aaf13f58b48986dd04a64e5812f3f826040516120b691906123b1565b60405180910390a16120c4565b5b5050565b5f8103156121ab575f8273ffffffffffffffffffffffffffffffffffffffff16826040516120f590612938565b5f6040518083038185875af1925050503d805f811461212f576040519150601f19603f3d011682016040523d82523d5f602084013e612134565b606091505b50509050806121a9578160095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461218991906129e9565b925050819055508160075f8282546121a191906129e9565b925050819055505b505b5050565b5f60026121c26121bd611e52565b611e7b565b5f015414905090565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156122025780820151818401526020810190506121e7565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612227826121cb565b61223181856121d5565b93506122418185602086016121e5565b61224a8161220d565b840191505092915050565b5f6020820190508181035f83015261226d818461221d565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6122a282612279565b9050919050565b6122b281612298565b81146122bc575f80fd5b50565b5f813590506122cd816122a9565b92915050565b5f819050919050565b6122e5816122d3565b81146122ef575f80fd5b50565b5f81359050612300816122dc565b92915050565b5f806040838503121561231c5761231b612275565b5b5f612329858286016122bf565b925050602061233a858286016122f2565b9150509250929050565b5f8115159050919050565b61235881612344565b82525050565b5f6020820190506123715f83018461234f565b92915050565b5f6020828403121561238c5761238b612275565b5b5f612399848285016122f2565b91505092915050565b6123ab816122d3565b82525050565b5f6020820190506123c45f8301846123a2565b92915050565b5f805f606084860312156123e1576123e0612275565b5b5f6123ee868287016122bf565b93505060206123ff868287016122bf565b9250506040612410868287016122f2565b9150509250925092565b5f6020828403121561242f5761242e612275565b5b5f61243c848285016122bf565b91505092915050565b5f60ff82169050919050565b61245a81612445565b82525050565b5f6020820190506124735f830184612451565b92915050565b61248281612298565b82525050565b5f60208201905061249b5f830184612479565b92915050565b5f80604083850312156124b7576124b6612275565b5b5f6124c4858286016122bf565b92505060206124d5858286016122bf565b9150509250929050565b5f819050919050565b5f6125026124fd6124f884612279565b6124df565b612279565b9050919050565b5f612513826124e8565b9050919050565b5f61252482612509565b9050919050565b6125348161251a565b82525050565b5f60208201905061254d5f83018461252b565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061259757607f821691505b6020821081036125aa576125a9612553565b5b50919050565b7f416d6f756e742063616e6e6f74206265206f7665722074686520746f74616c205f8201527f737570706c792e00000000000000000000000000000000000000000000000000602082015250565b5f61260a6027836121d5565b9150612615826125b0565b604082019050919050565b5f6020820190508181035f830152612637816125fe565b9050919050565b7f416d6f756e742063616e6e6f74206265206c657373207468616e2060313030605f8201527f20746f6b656e2e00000000000000000000000000000000000000000000000000602082015250565b5f6126986027836121d5565b91506126a38261263e565b604082019050919050565b5f6020820190508181035f8301526126c58161268c565b9050919050565b7f4e6f20746f6b656e7320746f20776974686472617700000000000000000000005f82015250565b5f6127006015836121d5565b915061270b826126cc565b602082019050919050565b5f6020820190508181035f83015261272d816126f4565b9050919050565b7f5a65726f206164647265737300000000000000000000000000000000000000005f82015250565b5f612768600c836121d5565b915061277382612734565b602082019050919050565b5f6020820190508181035f8301526127958161275c565b9050919050565b5f815190506127aa816122dc565b92915050565b5f602082840312156127c5576127c4612275565b5b5f6127d28482850161279c565b91505092915050565b7f616d6f756e74207a65726f0000000000000000000000000000000000000000005f82015250565b5f61280f600b836121d5565b915061281a826127db565b602082019050919050565b5f6020820190508181035f83015261283c81612803565b9050919050565b7f4e6f7468696e6720746f20636c61696d000000000000000000000000000000005f82015250565b5f6128776010836121d5565b915061288282612843565b602082019050919050565b5f6020820190508181035f8301526128a48161286b565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6128e2826122d3565b91506128ed836122d3565b9250828203905081811115612905576129046128ab565b5b92915050565b5f81905092915050565b50565b5f6129235f8361290b565b915061292e82612915565b5f82019050919050565b5f61294282612918565b9150819050919050565b7f455448207472616e73666572206661696c6564000000000000000000000000005f82015250565b5f6129806013836121d5565b915061298b8261294c565b602082019050919050565b5f6020820190508181035f8301526129ad81612974565b9050919050565b5f6060820190506129c75f830186612479565b6129d460208301856123a2565b6129e160408301846123a2565b949350505050565b5f6129f3826122d3565b91506129fe836122d3565b9250828201905080821115612a1657612a156128ab565b5b92915050565b5f612a26826122d3565b9150612a31836122d3565b9250828202612a3f816122d3565b91508282048414831517612a5657612a556128ab565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f612a94826122d3565b9150612a9f836122d3565b925082612aaf57612aae612a5d565b5b828204905092915050565b7f457863656564732077616c6c6574206c696d69740000000000000000000000005f82015250565b5f612aee6014836121d5565b9150612af982612aba565b602082019050919050565b5f6020820190508181035f830152612b1b81612ae2565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050612b8a816122a9565b92915050565b5f60208284031215612ba557612ba4612275565b5b5f612bb284828501612b7c565b91505092915050565b5f819050919050565b5f612bde612bd9612bd484612bbb565b6124df565b6122d3565b9050919050565b612bee81612bc4565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b612c2681612298565b82525050565b5f612c378383612c1d565b60208301905092915050565b5f602082019050919050565b5f612c5982612bf4565b612c638185612bfe565b9350612c6e83612c0e565b805f5b83811015612c9e578151612c858882612c2c565b9750612c9083612c43565b925050600181019050612c71565b5085935050505092915050565b5f60a082019050612cbe5f8301886123a2565b612ccb6020830187612be5565b8181036040830152612cdd8186612c4f565b9050612cec6060830185612479565b612cf960808301846123a2565b969550505050505056fea2646970667358221220b93258d24024dfd35b4a86b79f4b595af1e9ded68942020702d236105265975b64736f6c63430008140033
| Token | Symbol | Balance | Price | Value |
|---|---|---|---|---|
| Money Talk (MONEY) | MONEY | 689,999.999999 | — | — |
| Transaction Hash | Method | Block | Age | From | To | Type | Item | ||
|---|---|---|---|---|---|---|---|---|---|
| no NFT transfers for this address yet | |||||||||
| Txn Hash | Age | Event | Topics / Data |
|---|---|---|---|
| 0x8bc0d6…f99614 | 35 days agoMon, 13 Jul 2026 16:25:30 UTC | Transfer | [0] 0x000000000000…e15cfe56 [1] 0x000000000000…c72c7ac6 data: 0x000000000000000000…00720fcd |
| 0x8bc0d6…f99614 | 35 days agoMon, 13 Jul 2026 16:25:30 UTC | Transfer | [0] 0x000000000000…e15cfe56 [1] 0x000000000000…75365ea2 data: 0x000000000000000000…000cac6c |
| 0x1bfbde…54e811 | 35 days agoMon, 13 Jul 2026 16:23:12 UTC | Transfer | [0] 0x000000000000…eb649eba [1] 0x000000000000…baef6de1 data: 0x000000000000000000…6658eaad |
| 0x1bfbde…54e811 | 35 days agoMon, 13 Jul 2026 16:23:12 UTC | Transfer | [0] 0x000000000000…e15cfe56 [1] 0x000000000000…eb649eba data: 0x000000000000000000…6658eaad |
| 0x1bfbde…54e811 | 35 days agoMon, 13 Jul 2026 16:23:12 UTC | Transfer | [0] 0x000000000000…e15cfe56 [1] 0x000000000000…75365ea2 data: 0x000000000000000000…4442c4bd |
| 0xbe0cd2…83e7d9 | 35 days agoMon, 13 Jul 2026 16:11:23 UTC | Approval | [0] 0x000000000000…fbab8a1c [1] 0x000000000000…018d237c data: 0xffffffffffffffffff…ffffffff |
| 0xa6c17c…55c98a | 35 days agoMon, 13 Jul 2026 16:11:22 UTC | Transfer | [0] 0x000000000000…e15cfe56 [1] 0x000000000000…fbab8a1c data: 0x000000000000000000…2c2a05f6 |
| 0xa6c17c…55c98a | 35 days agoMon, 13 Jul 2026 16:11:22 UTC | Transfer | [0] 0x000000000000…e15cfe56 [1] 0x000000000000…75365ea2 data: 0x000000000000000000…cc04ab54 |
| 0x69e4a9…463ff9 | 35 days agoMon, 13 Jul 2026 16:09:30 UTC | Transfer | [0] 0x000000000000…e15cfe56 [1] 0x000000000000…c72c7ac6 data: 0x000000000000000000…d24aff91 |
| 0x69e4a9…463ff9 | 35 days agoMon, 13 Jul 2026 16:09:30 UTC | Transfer | [0] 0x000000000000…e15cfe56 [1] 0x000000000000…75365ea2 data: 0x000000000000000000…faebe381 |
| 0x7a8068…1968f0 | 35 days agoMon, 13 Jul 2026 16:07:41 UTC | 0x8be007…57e0 | [0] 0x000000000000…442aeb0b [1] 0x000000000000…baef6de1 |
| 0x7a8068…1968f0 | 35 days agoMon, 13 Jul 2026 16:07:41 UTC | Transfer | [0] 0x000000000000…442aeb0b [1] 0x000000000000…0000dead data: 0x000000000000000000…c4800000 |
| 0x7a8068…1968f0 | 35 days agoMon, 13 Jul 2026 16:07:41 UTC | Transfer | [0] 0x000000000000…442aeb0b [1] 0x000000000000…e15cfe56 data: 0x000000000000000000…70800000 |
| 0x7a8068…1968f0 | 35 days agoMon, 13 Jul 2026 16:07:41 UTC | Approval | [0] 0x000000000000…442aeb0b [1] 0x000000000000…eb649eba data: 0x000000000000000000…70800000 |
| 0x7a8068…1968f0 | 35 days agoMon, 13 Jul 2026 16:07:41 UTC | Approval | [0] 0x000000000000…75365ea2 [1] 0x000000000000…eb649eba data: 0xffffffffffffffffff…ffffffff |
| 0x7a8068…1968f0 | 35 days agoMon, 13 Jul 2026 16:07:41 UTC | Transfer | [0] 0x000000000000…00000000 [1] 0x000000000000…442aeb0b data: 0x000000000000000000…35000000 |
| 0x7a8068…1968f0 | 35 days agoMon, 13 Jul 2026 16:07:41 UTC | 0x8be007…57e0 | [0] 0x000000000000…00000000 [1] 0x000000000000…442aeb0b |
| Block | Age | Parent Transaction Hash | Type | Method | From | To | Value | |
|---|---|---|---|---|---|---|---|---|
| no internal transactions found for this address yet (traced blocks + on-demand) | ||||||||
| Type | Age | Block | Details |
|---|---|---|---|
| no cross-chain L1↔L2 transactions for this address | |||
| Transaction Hash | Method ? | Block | Age | From | To | Amount | Txn Fee ? | ||
|---|---|---|---|---|---|---|---|---|---|
| 0xbe0cd2…83e7d9 | Approve | 8,800,895 | 35 days agoMon, 13 Jul 2026 16:11:23 UTC | 0x7a03…8a1c | IN | Money Talk | $0.000 ETH | 0.00000239 |
| Transaction Hash | Method | Block | Age | From | To | Amount | Token | ||
|---|---|---|---|---|---|---|---|---|---|
| 0x8bc0d62c…f99614 | Transfer | 8,809,347 | 35 days agoMon, 13 Jul 2026 16:25:30 UTC | 0x1814…fe56 | IN | 0x08fc…5ea2 | 0.000000 MONEY | Money Talk (MONEY) | |
| 0x1bfbded3…54e811 | Transfer | 8,807,958 | 35 days agoMon, 13 Jul 2026 16:23:12 UTC | 0x1814…fe56 | IN | 0x08fc…5ea2 | 689,925.023779 MONEY | Money Talk (MONEY) | |
| 0xa6c17c42…55c98a | Transfer | 8,800,885 | 35 days agoMon, 13 Jul 2026 16:11:22 UTC | 0x1814…fe56 | IN | 0x08fc…5ea2 | 68.096988 MONEY | Money Talk (MONEY) | |
| 0x69e4a98c…463ff9 | Transfer | 8,799,757 | 35 days agoMon, 13 Jul 2026 16:09:30 UTC | 0x1814…fe56 | IN | 0x08fc…5ea2 | 6.879231 MONEY | Money Talk (MONEY) |