// SPDX-License-Identifier: Apache-2.0
/*
Copyright 2023 ZeroEx Intl.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
pragma solidity ^0.6.5;
pragma experimental ABIEncoderV2;
import "@0x/contracts-utils/contracts/src/v06/errors/LibRichErrorsV06.sol";
import "@0x/contracts-utils/contracts/src/v06/errors/LibOwnableRichErrorsV06.sol";
import "../errors/LibWalletRichErrors.sol";
import "./IFlashWallet.sol";
/// @dev A contract that can execute arbitrary calls from its owner.
contract FlashWallet is IFlashWallet {
using LibRichErrorsV06 for bytes;
/// @dev Store the owner/deployer as an immutable to make this contract stateless.
address public immutable override owner;
constructor() public {
// The deployer is the owner.
owner = msg.sender;
}
/// @dev Allows only the (immutable) owner to call a function.
modifier onlyOwner() virtual {
if (msg.sender != owner) {
LibOwnableRichErrorsV06.OnlyOwnerError(msg.sender, owner).rrevert();
}
_;
}
/// @dev Execute an arbitrary call. Only an authority can call this.
/// @param target The call target.
/// @param callData The call data.
/// @param value Ether to attach to the call.
/// @return resultData The data returned by the call.
function executeCall(
address payable target,
bytes calldata callData,
uint256 value
) external payable override onlyOwner returns (bytes memory resultData) {
bool success;
(success, resultData) = target.call{value: value}(callData);
if (!success) {
LibWalletRichErrors
.WalletExecuteCallFailedError(address(this), target, callData, value, resultData)
.rrevert();
}
}
/// @dev Execute an arbitrary delegatecall, in the context of this puppet.
/// Only an authority can call this.
/// @param target The call target.
/// @param callData The call data.
/// @return resultData The data returned by the call.
function executeDelegateCall(
address payable target,
bytes calldata callData
) external payable override onlyOwner returns (bytes memory resultData) {
bool success;
(success, resultData) = target.delegatecall(callData);
if (!success) {
LibWalletRichErrors
.WalletExecuteDelegateCallFailedError(address(this), target, callData, resultData)
.rrevert();
}
}
/// @dev Allows this contract to receive ether.
receive() external payable override {}
/// @dev Signal support for receiving ERC1155 tokens.
/// @param interfaceID The interface ID, as per ERC-165 rules.
/// @return hasSupport `true` if this contract supports an ERC-165 interface.
function supportsInterface(bytes4 interfaceID) external pure returns (bool hasSupport) {
return
interfaceID == this.supportsInterface.selector ||
interfaceID == this.onERC1155Received.selector ^ this.onERC1155BatchReceived.selector ||
interfaceID == this.tokenFallback.selector;
}
/// @dev Allow this contract to receive ERC1155 tokens.
/// @return success `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
function onERC1155Received(
address, // operator,
address, // from,
uint256, // id,
uint256, // value,
bytes calldata //data
) external pure returns (bytes4 success) {
return this.onERC1155Received.selector;
}
/// @dev Allow this contract to receive ERC1155 tokens.
/// @return success `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
function onERC1155BatchReceived(
address, // operator,
address, // from,
uint256[] calldata, // ids,
uint256[] calldata, // values,
bytes calldata // data
) external pure returns (bytes4 success) {
return this.onERC1155BatchReceived.selector;
}
/// @dev Allows this contract to receive ERC223 tokens.
function tokenFallback(
address, // from,
uint256, // value,
bytes calldata // value
) external pure {}
}[
{
"type": "constructor",
"inputs": [],
"stateMutability": "nonpayable"
},
{
"name": "executeCall",
"type": "function",
"inputs": [
{
"name": "target",
"type": "address",
"internalType": "address payable"
},
{
"name": "callData",
"type": "bytes",
"internalType": "bytes"
},
{
"name": "value",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [
{
"name": "resultData",
"type": "bytes",
"internalType": "bytes"
}
],
"stateMutability": "payable"
},
{
"name": "executeDelegateCall",
"type": "function",
"inputs": [
{
"name": "target",
"type": "address",
"internalType": "address payable"
},
{
"name": "callData",
"type": "bytes",
"internalType": "bytes"
}
],
"outputs": [
{
"name": "resultData",
"type": "bytes",
"internalType": "bytes"
}
],
"stateMutability": "payable"
},
{
"name": "onERC1155BatchReceived",
"type": "function",
"inputs": [
{
"name": "",
"type": "address",
"internalType": "address"
},
{
"name": "",
"type": "address",
"internalType": "address"
},
{
"name": "",
"type": "uint256[]",
"internalType": "uint256[]"
},
{
"name": "",
"type": "uint256[]",
"internalType": "uint256[]"
},
{
"name": "",
"type": "bytes",
"internalType": "bytes"
}
],
"outputs": [
{
"name": "success",
"type": "bytes4",
"internalType": "bytes4"
}
],
"stateMutability": "pure"
},
{
"name": "onERC1155Received",
"type": "function",
"inputs": [
{
"name": "",
"type": "address",
"internalType": "address"
},
{
"name": "",
"type": "address",
"internalType": "address"
},
{
"name": "",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "",
"type": "bytes",
"internalType": "bytes"
}
],
"outputs": [
{
"name": "success",
"type": "bytes4",
"internalType": "bytes4"
}
],
"stateMutability": "pure"
},
{
"name": "owner",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "supportsInterface",
"type": "function",
"inputs": [
{
"name": "interfaceID",
"type": "bytes4",
"internalType": "bytes4"
}
],
"outputs": [
{
"name": "hasSupport",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "pure"
},
{
"name": "tokenFallback",
"type": "function",
"inputs": [
{
"name": "",
"type": "address",
"internalType": "address"
},
{
"name": "",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "",
"type": "bytes",
"internalType": "bytes"
}
],
"outputs": [],
"stateMutability": "pure"
},
{
"type": "receive",
"stateMutability": "payable"
}
]0x6080604052600436106100745760003560e01c8063b68df16d1161004e578063b68df16d146100f8578063bc197c811461010b578063c0ee0b8a14610138578063f23a6e611461015a5761007b565b806301ffc9a71461008057806354132d78146100b65780638da5cb5b146100d65761007b565b3661007b57005b600080fd5b34801561008c57600080fd5b506100a061009b366004610a3a565b61017a565b6040516100ad9190610bf5565b60405180910390f35b6100c96100c4366004610851565b61025f565b6040516100ad9190610c2d565b3480156100e257600080fd5b506100eb610397565b6040516100ad9190610afa565b6100c96101063660046107fe565b6103bb565b34801561011757600080fd5b5061012b6101263660046108ab565b6104e8565b6040516100ad9190610c00565b34801561014457600080fd5b506101586101533660046109e0565b610515565b005b34801561016657600080fd5b5061012b610175366004610966565b61051b565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f01ffc9a700000000000000000000000000000000000000000000000000000000148061020d57507fffffffff0000000000000000000000000000000000000000000000000000000082167f4e2312e000000000000000000000000000000000000000000000000000000000145b8061025957507fffffffff0000000000000000000000000000000000000000000000000000000082167fc0ee0b8a00000000000000000000000000000000000000000000000000000000145b92915050565b60603373ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000d5b775d1f15a864a5f6b94624e049cf758d013f716146102d0576102d06102cb337f000000000000000000000000d5b775d1f15a864a5f6b94624e049cf758d013f7610546565b6105e8565b60008573ffffffffffffffffffffffffffffffffffffffff168386866040516102fa929190610aea565b60006040518083038185875af1925050503d8060008114610337576040519150601f19603f3d011682016040523d82523d6000602084013e61033c565b606091505b50925090508061038e5761038e6102cb308888888080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152508a92508991506105f09050565b50949350505050565b7f000000000000000000000000d5b775d1f15a864a5f6b94624e049cf758d013f781565b60603373ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000d5b775d1f15a864a5f6b94624e049cf758d013f71614610427576104276102cb337f000000000000000000000000d5b775d1f15a864a5f6b94624e049cf758d013f7610546565b60008473ffffffffffffffffffffffffffffffffffffffff168484604051610450929190610aea565b600060405180830381855af49150503d806000811461048b576040519150601f19603f3d011682016040523d82523d6000602084013e610490565b606091505b5092509050806104e0576104e06102cb308787878080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152508992506106b4915050565b509392505050565b7fbc197c810000000000000000000000000000000000000000000000000000000098975050505050505050565b50505050565b7ff23a6e61000000000000000000000000000000000000000000000000000000009695505050505050565b6060631de45ad160e01b8383604051602401610563929190610b1b565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152905092915050565b805160208201fd5b60607f86945816f737646db7f2d6df01602a2212e8c75829f6940913724c13a83a8178868686868660405160240161062c959493929190610b98565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152905095945050505050565b60607f61e5a7320b4cf56a2980a427f39e3071c967bf2f77fffcaae20e4467e160afcc858585856040516024016106ee9493929190610b42565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff00000000000000000000000000000000000000000000000000000000909316929092179091529050949350505050565b60008083601f840112610786578182fd5b50813567ffffffffffffffff81111561079d578182fd5b60208301915083602080830285010111156107b757600080fd5b9250929050565b60008083601f8401126107cf578182fd5b50813567ffffffffffffffff8111156107e6578182fd5b6020830191508360208285010111156107b757600080fd5b600080600060408486031215610812578283fd5b833561081d81610c40565b9250602084013567ffffffffffffffff811115610838578283fd5b610844868287016107be565b9497909650939450505050565b60008060008060608587031215610866578081fd5b843561087181610c40565b9350602085013567ffffffffffffffff81111561088c578182fd5b610898878288016107be565b9598909750949560400135949350505050565b60008060008060008060008060a0898b0312156108c6578384fd5b88356108d181610c40565b975060208901356108e181610c40565b9650604089013567ffffffffffffffff808211156108fd578586fd5b6109098c838d01610775565b909850965060608b0135915080821115610921578586fd5b61092d8c838d01610775565b909650945060808b0135915080821115610945578384fd5b506109528b828c016107be565b999c989b5096995094979396929594505050565b60008060008060008060a0878903121561097e578182fd5b863561098981610c40565b9550602087013561099981610c40565b94506040870135935060608701359250608087013567ffffffffffffffff8111156109c2578283fd5b6109ce89828a016107be565b979a9699509497509295939492505050565b600080600080606085870312156109f5578384fd5b8435610a0081610c40565b935060208501359250604085013567ffffffffffffffff811115610a22578283fd5b610a2e878288016107be565b95989497509550505050565b600060208284031215610a4b578081fd5b81357fffffffff0000000000000000000000000000000000000000000000000000000081168114610a7a578182fd5b9392505050565b60008151808452815b81811015610aa657602081850181015186830182015201610a8a565b81811115610ab75782602083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6000828483379101908152919050565b73ffffffffffffffffffffffffffffffffffffffff91909116815260200190565b73ffffffffffffffffffffffffffffffffffffffff92831681529116602082015260400190565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525060806040830152610b7b6080830185610a81565b8281036060840152610b8d8185610a81565b979650505050505050565b600073ffffffffffffffffffffffffffffffffffffffff808816835280871660208401525060a06040830152610bd160a0830186610a81565b8460608401528281036080840152610be98185610a81565b98975050505050505050565b901515815260200190565b7fffffffff0000000000000000000000000000000000000000000000000000000091909116815260200190565b600060208252610a7a6020830184610a81565b73ffffffffffffffffffffffffffffffffffffffff81168114610c6257600080fd5b5056fea2646970667358221220356519b4bfa23f159b81f78a2e9a726a961e8382060a971175375645561f165d64736f6c634300060c0033
| Token | Symbol | Balance | Price | Value |
|---|---|---|---|---|
| Wrapped Small ETH (WETH) | WETH | 14 | $1,894.15 | $26,518.1 |
| Global Dollar (USDG) | USDG | 5 | $1 | $5 |
| global dollar (USDG) | USDG | 10 | $0.000967 | $0.01 |
| Maxi Doge (MAXI) | MAXI | 25 | — | — |
| Type | Age | Block | Details |
|---|---|---|---|
| no cross-chain L1↔L2 transactions for this address | |||
| Transaction Hash | Method ? | Block | Age | From | To | Amount | Txn Fee ? | ||
|---|---|---|---|---|---|---|---|---|---|
| No direct transactions — this address is only ever reached via internal calls (common for a contract only invoked through a router or proxy). View Internal Transactions → | |||||||||
| Txn Hash | Age | Event | Topics / Data |
|---|---|---|---|
| 0x8e87c5…100f0b | 13 hrs agoMon, 17 Aug 2026 20:29:26 UTC | 0xe59e71…5af8 | data: 0x000000000000000000…4a3a2761 |
| 0x8e87c5…100f0b | 13 hrs agoMon, 17 Aug 2026 20:29:26 UTC | 0xe59e71…5af8 | data: 0x000000000000000000…019c0474 |
| 0x368017…4234a9 | 1 day agoSun, 16 Aug 2026 23:18:44 UTC | 0xe59e71…5af8 | data: 0x000000000000000000…f5197669 |
| 0x368017…4234a9 | 1 day agoSun, 16 Aug 2026 23:18:44 UTC | 0xe59e71…5af8 | data: 0x000000000000000000…5b01b157 |
| 0xfb8d06…09e810 | 2 days agoSun, 16 Aug 2026 00:37:49 UTC | 0xe59e71…5af8 | data: 0x000000000000000000…8bc2a64d |
| 0x100d4a…133d44 | 2 days agoSat, 15 Aug 2026 21:41:21 UTC | 0xe59e71…5af8 | data: 0x000000000000000000…44c5845f |
| 0x100d4a…133d44 | 2 days agoSat, 15 Aug 2026 21:41:21 UTC | 0xe59e71…5af8 | data: 0x000000000000000000…d40d13f5 |
| 0x00f9b1…317278 | 3 days agoSat, 15 Aug 2026 03:37:47 UTC | 0xe59e71…5af8 | data: 0x000000000000000000…847ec80d |
| 0x00f9b1…317278 | 3 days agoSat, 15 Aug 2026 03:37:47 UTC | 0xe59e71…5af8 | data: 0x000000000000000000…c8c4ca07 |
| 0xd6b43a…f60b1a | 3 days agoSat, 15 Aug 2026 03:04:23 UTC | 0xe59e71…5af8 | data: 0x000000000000000000…6e3bbde6 |
| 0xd6b43a…f60b1a | 3 days agoSat, 15 Aug 2026 03:04:23 UTC | 0xe59e71…5af8 | data: 0x000000000000000000…bf8c4d65 |
| 0x404033…3d8c76 | 3 days agoFri, 14 Aug 2026 22:45:54 UTC | 0xe59e71…5af8 | data: 0x000000000000000000…831fd7a9 |
| 0x404033…3d8c76 | 3 days agoFri, 14 Aug 2026 22:45:54 UTC | 0xe59e71…5af8 | data: 0x000000000000000000…1bb6e28c |
| 0x4ddb26…d8e556 | 4 days agoThu, 13 Aug 2026 16:27:31 UTC | 0xe59e71…5af8 | data: 0x000000000000000000…322b8e76 |
| 0x37ce42…60c073 | 4 days agoThu, 13 Aug 2026 16:26:05 UTC | 0xe59e71…5af8 | data: 0x000000000000000000…4d12c4ba |
| 0x4da018…559a93 | 4 days agoThu, 13 Aug 2026 16:25:23 UTC | 0xe59e71…5af8 | data: 0x000000000000000000…80d7987e |
| 0x8d9fac…1ed495 | 4 days agoThu, 13 Aug 2026 16:05:06 UTC | 0xe59e71…5af8 | data: 0x000000000000000000…f84caf8b |
| 0x8d9fac…1ed495 | 4 days agoThu, 13 Aug 2026 16:05:06 UTC | 0xe59e71…5af8 | data: 0x000000000000000000…0014659f |
| 0x423440…6ca337 | 4 days agoThu, 13 Aug 2026 11:44:45 UTC | 0xe59e71…5af8 | data: 0x000000000000000000…93eb5478 |
| 0x0f78b8…c731a5 | 5 days agoWed, 12 Aug 2026 22:58:28 UTC | 0xe59e71…5af8 | data: 0x000000000000000000…2fb8b9ef |
| 0x7111f8…34101a | 10 days agoSat, 08 Aug 2026 00:10:02 UTC | 0xe59e71…5af8 | data: 0x000000000000000000…6c2f8b17 |
| 0xbf723a…02663a | 10 days agoFri, 07 Aug 2026 22:42:02 UTC | 0xe59e71…5af8 | data: 0x000000000000000000…c6d663e9 |
| 0x63aaec…e2ffc2 | 10 days agoFri, 07 Aug 2026 22:41:15 UTC | 0xe59e71…5af8 | data: 0x000000000000000000…9853ace0 |
| 0x9d361f…eb1ad3 | 10 days agoFri, 07 Aug 2026 15:13:26 UTC | 0xe59e71…5af8 | data: 0x000000000000000000…00004b9b |
| 0xf0c0bc…24beaf | 12 days agoWed, 05 Aug 2026 22:27:58 UTC | 0xe59e71…5af8 | data: 0x000000000000000000…e8e0ad36 |
| Transaction Hash | Method | Block | Age | From | To | Amount | Token | ||
|---|---|---|---|---|---|---|---|---|---|
| 0xc3aa42fa…2bb0b9 | Transfer | 39,137,426 | 13 hrs agoMon, 17 Aug 2026 20:50:53 UTC | 0x3f48…48ee | IN | 0x7199…de46 | 25 MAXI | Maxi Doge (MAXI) | |
| 0x8e87c5af…100f0b | Transfer | 39,124,587 | 13 hrs agoMon, 17 Aug 2026 20:29:26 UTC | 0x7199…de46 | OUT | 0x2b25…d0ba | $NaN48,508,856,280.904347 PLANK | ||
| 0x8e87c5af…100f0b | Transfer | 39,124,587 | 13 hrs agoMon, 17 Aug 2026 20:29:26 UTC | 0x7199…de46 | OUT | 0x6160…3c90 | $NaN22,339,280.828364 PLANK | ||
| 0x8e87c5af…100f0b | Transfer | 39,124,587 | 13 hrs agoMon, 17 Aug 2026 20:29:26 UTC | 0x01b1…6f73 | IN | 0x7199…de46 | $NaN48,531,195,561.732712 PLANK | ||
| 0x8e87c5af…100f0b | Transfer | 39,124,587 | 13 hrs agoMon, 17 Aug 2026 20:29:26 UTC | 0x7199…de46 | OUT | 0x8803…1c4d | $27.0927.001972 USDG | Global Dollar (USDG) | |
| 0x8e87c5af…100f0b | Transfer | 39,124,587 | 13 hrs agoMon, 17 Aug 2026 20:29:26 UTC | 0x7199…de46 | OUT | 0xd7da…b54c | $NaN3,822.043958 PRINTER | ||
| 0x8e87c5af…100f0b | Transfer | 39,124,587 | 13 hrs agoMon, 17 Aug 2026 20:29:26 UTC | 0xd7da…b54c | IN | 0x7199…de46 | $27.0927.001972 USDG | Global Dollar (USDG) | |
| 0x8e87c5af…100f0b | Transfer | 39,124,587 | 13 hrs agoMon, 17 Aug 2026 20:29:26 UTC | 0x2b25…d0ba | IN | 0x7199…de46 | $NaN3,822.043958 PRINTER | ||
| 0x3680174a…4234a9 | Transfer | 38,364,598 | 1 day agoSun, 16 Aug 2026 23:18:44 UTC | 0x7199…de46 | OUT | 0xa195…4660 | $NaN10,158,123,449.816721 PLANK | ||
| 0x3680174a…4234a9 | Transfer | 38,364,598 | 1 day agoSun, 16 Aug 2026 23:18:44 UTC | 0x7199…de46 | OUT | 0x6160…3c90 | $NaN5,028,245.966429 PLANK | ||
| 0x3680174a…4234a9 | Transfer | 38,364,598 | 1 day agoSun, 16 Aug 2026 23:18:44 UTC | 0x7199…de46 | OUT | 0x08c2…b6b3 | 0.00015 WETH | WETH (WETH) | |
| 0x3680174a…4234a9 | Transfer | 38,364,598 | 1 day agoSun, 16 Aug 2026 23:18:44 UTC | 0x08c2…b6b3 | IN | 0x7199…de46 | $NaN532,208,426.694910 PLANK | ||
| 0x3680174a…4234a9 | Transfer | 38,364,598 | 1 day agoSun, 16 Aug 2026 23:18:44 UTC | 0x01b1…6f73 | IN | 0x7199…de46 | $NaN9,630,943,269.088239 PLANK | ||
| 0x3680174a…4234a9 | Transfer | 38,364,598 | 1 day agoSun, 16 Aug 2026 23:18:44 UTC | 0x7199…de46 | OUT | 0x01b1…6f73 | 0.00285 WETH | WETH (WETH) | |
| 0x3680174a…4234a9 | Transfer | 38,364,598 | 1 day agoSun, 16 Aug 2026 23:18:44 UTC | 0x0000…0000 | IN | 0x7199…de46 | 0.003 WETH | WETH (WETH) | |
| 0x9acaf531…48a1bf | Transfer | 38,047,699 | 1 day agoSun, 16 Aug 2026 14:28:54 UTC | 0xb545…cc2c | IN | 0x7199…de46 | 14 WETH | Wrapped Small ETH (WETH) | |
| 0x432a5ef3…694495 | Transfer | 37,730,880 | 2 days agoSun, 16 Aug 2026 05:38:30 UTC | 0x602e…7bd0 | IN | 0x7199…de46 | 5 USDG | Global Dollar (USDG) | |
| 0x57f82b71…ee347a | Transfer | 37,718,118 | 2 days agoSun, 16 Aug 2026 05:17:09 UTC | 0x3d2b…6bfc | IN | 0x7199…de46 | $0.005 USDG | global dollar (USDG) | |
| 0xfb8d062b…09e810 | Transfer | 37,551,109 | 2 days agoSun, 16 Aug 2026 00:37:49 UTC | 0x7199…de46 | OUT | 0x0000…0000 | 0.529055 WETH | WETH (WETH) | |
| 0xfb8d062b…09e810 | Transfer | 37,551,109 | 2 days agoSun, 16 Aug 2026 00:37:49 UTC | 0x7199…de46 | OUT | 0x52e6…71ca | $998.54995.330683 USDG | Global Dollar (USDG) | |
| 0xfb8d062b…09e810 | Transfer | 37,551,109 | 2 days agoSun, 16 Aug 2026 00:37:49 UTC | 0x52e6…71ca | IN | 0x7199…de46 | 0.529055 WETH | WETH (WETH) | |
| 0xfb8d062b…09e810 | Transfer | 37,551,109 | 2 days agoSun, 16 Aug 2026 00:37:49 UTC | 0xf54e…9396 | IN | 0x7199…de46 | $998.54995.330683 USDG | Global Dollar (USDG) | |
| 0x7c9b8d96…d0a236 | Transfer | 37,483,720 | 2 days agoSat, 15 Aug 2026 22:45:11 UTC | 0x3d2b…6bfc | IN | 0x7199…de46 | $0.005 USDG | global dollar (USDG) | |
| 0x100d4a35…133d44 | Transfer | 37,445,530 | 2 days agoSat, 15 Aug 2026 21:41:21 UTC | 0x7199…de46 | OUT | 0x04b1…9356 | $0.085.476470 PRINTER | ||
| 0x100d4a35…133d44 | Transfer | 37,445,530 | 2 days agoSat, 15 Aug 2026 21:41:21 UTC | 0x7199…de46 | OUT | 0x6160…3c90 | $0.000.002710 PRINTER |
| Transaction Hash | Method | Block | Age | From | To | Type | Item | ||
|---|---|---|---|---|---|---|---|---|---|
| no NFT transfers for this address yet | |||||||||
| Block | Age | Parent Transaction Hash | Type | Method | From | To | Value | |
|---|---|---|---|---|---|---|---|---|
| 37,445,530 | 2 days agoSat, 15 Aug 2026 21:41:21 UTC | 0x100d4a…133d44 | CALL | transformERC20 | 0x7199…de46 | OUT | 0x3a84…a1ee | 0.00001 ETH |
| 37,445,530 | 2 days agoSat, 15 Aug 2026 21:41:21 UTC | 0x100d4a…133d44 | CALL | transformERC20 | 0x0bd7…ad73 | IN | 0x7199…de46 | 0.00001 ETH |
| 36,622,637 | 3 days agoFri, 14 Aug 2026 22:45:54 UTC | 0x404033…3d8c76 | CALL | transformERC20 | 0x7199…de46 | OUT | 0x0bd7…ad73 | 0.133 ETH |
| 36,622,637 | 3 days agoFri, 14 Aug 2026 22:45:54 UTC | 0x404033…3d8c76 | CALL | transformERC20 | 0xd5b7…13f7 | IN | 0x7199…de46 | 0.133 ETH |
| 35,533,547 | 4 days agoThu, 13 Aug 2026 16:27:31 UTC | 0x4ddb26…d8e556 | CALL | transformERC20 | 0x7199…de46 | OUT | 0xf54e…9396 | 0.00040 ETH |
| 35,533,547 | 4 days agoThu, 13 Aug 2026 16:27:31 UTC | 0x4ddb26…d8e556 | CALL | transformERC20 | 0x7199…de46 | OUT | 0x6160…3c90 | 0.00000 ETH |
| 35,533,547 | 4 days agoThu, 13 Aug 2026 16:27:31 UTC | 0x4ddb26…d8e556 | CALL | transformERC20 | 0x0bd7…ad73 | IN | 0x7199…de46 | 0.00040 ETH |
| 35,532,691 | 4 days agoThu, 13 Aug 2026 16:26:05 UTC | 0x37ce42…60c073 | CALL | transformERC20 | 0x7199…de46 | OUT | 0xf54e…9396 | 0.00076 ETH |
| 35,532,691 | 4 days agoThu, 13 Aug 2026 16:26:05 UTC | 0x37ce42…60c073 | CALL | transformERC20 | 0x7199…de46 | OUT | 0x6160…3c90 | 0.00000 ETH |
| 35,532,691 | 4 days agoThu, 13 Aug 2026 16:26:05 UTC | 0x37ce42…60c073 | CALL | transformERC20 | 0x0bd7…ad73 | IN | 0x7199…de46 | 0.00076 ETH |
| 35,532,272 | 4 days agoThu, 13 Aug 2026 16:25:23 UTC | 0x4da018…559a93 | CALL | transformERC20 | 0x7199…de46 | OUT | 0xf54e…9396 | 0.00075 ETH |
| 35,532,272 | 4 days agoThu, 13 Aug 2026 16:25:23 UTC | 0x4da018…559a93 | CALL | transformERC20 | 0x7199…de46 | OUT | 0x6160…3c90 | 0.00000 ETH |
| 35,532,272 | 4 days agoThu, 13 Aug 2026 16:25:23 UTC | 0x4da018…559a93 | CALL | transformERC20 | 0x0bd7…ad73 | IN | 0x7199…de46 | 0.00075 ETH |
| 35,520,120 | 4 days agoThu, 13 Aug 2026 16:05:06 UTC | 0x8d9fac…1ed495 | CALL | transformERC20 | 0x7199…de46 | OUT | 0xf54e…9396 | 0.00071 ETH |
| 35,520,120 | 4 days agoThu, 13 Aug 2026 16:05:06 UTC | 0x8d9fac…1ed495 | CALL | transformERC20 | 0x7199…de46 | OUT | 0x6160…3c90 | 0.00000 ETH |
| 35,520,120 | 4 days agoThu, 13 Aug 2026 16:05:06 UTC | 0x8d9fac…1ed495 | CALL | transformERC20 | 0x0bd7…ad73 | IN | 0x7199…de46 | 0.00071 ETH |
| 35,364,311 | 4 days agoThu, 13 Aug 2026 11:44:45 UTC | 0x423440…6ca337 | CALL | transformERC20 | 0x7199…de46 | OUT | 0x0bd7…ad73 | 0.01 ETH |
| 35,364,311 | 4 days agoThu, 13 Aug 2026 11:44:45 UTC | 0x423440…6ca337 | CALL | transformERC20 | 0xd5b7…13f7 | IN | 0x7199…de46 | 0.01 ETH |
| 34,905,935 | 5 days agoWed, 12 Aug 2026 22:58:28 UTC | 0x0f78b8…c731a5 | CALL | transformERC20 | 0x7199…de46 | OUT | 0x0bd7…ad73 | 0.0001 ETH |
| 34,905,935 | 5 days agoWed, 12 Aug 2026 22:58:28 UTC | 0x0f78b8…c731a5 | CALL | transformERC20 | 0xd5b7…13f7 | IN | 0x7199…de46 | 0.0001 ETH |
| 30,631,393 | 10 days agoSat, 08 Aug 2026 00:10:02 UTC | 0x7111f8…34101a | CALL | transformERC20 | 0x7199…de46 | OUT | 0xf54e…9396 | 0.41388 ETH |
| 30,631,393 | 10 days agoSat, 08 Aug 2026 00:10:02 UTC | 0x7111f8…34101a | CALL | transformERC20 | 0x7199…de46 | OUT | 0x6160…3c90 | 0.00020 ETH |
| 30,631,393 | 10 days agoSat, 08 Aug 2026 00:10:02 UTC | 0x7111f8…34101a | CALL | transformERC20 | 0x0bd7…ad73 | IN | 0x7199…de46 | 0.41408 ETH |
| 30,578,694 | 10 days agoFri, 07 Aug 2026 22:42:02 UTC | 0xbf723a…02663a | CALL | transformERC20 | 0x7199…de46 | OUT | 0xf54e…9396 | 0.64321 ETH |
| 30,578,694 | 10 days agoFri, 07 Aug 2026 22:42:02 UTC | 0xbf723a…02663a | CALL | transformERC20 | 0x7199…de46 | OUT | 0x6160…3c90 | 0.00031 ETH |