| Token | Symbol | Balance | Price | Value |
|---|---|---|---|---|
| no token holdings | ||||
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (proxy/ERC1967/ERC1967Proxy.sol)
pragma solidity ^0.8.20;
import {Proxy} from "../Proxy.sol";
import {ERC1967Utils} from "./ERC1967Utils.sol";
/**
* @dev This contract implements an upgradeable proxy. It is upgradeable because calls are delegated to an
* implementation address that can be changed. This address is stored in storage in the location specified by
* https://eips.ethereum.org/EIPS/eip-1967[EIP1967], so that it doesn't conflict with the storage layout of the
* implementation behind the proxy.
*/
contract ERC1967Proxy is Proxy {
/**
* @dev Initializes the upgradeable proxy with an initial implementation specified by `implementation`.
*
* If `_data` is nonempty, it's used as data in a delegate call to `implementation`. This will typically be an
* encoded function call, and allows initializing the storage of the proxy like a Solidity constructor.
*
* Requirements:
*
* - If `data` is empty, `msg.value` must be zero.
*/
constructor(address implementation, bytes memory _data) payable {
ERC1967Utils.upgradeToAndCall(implementation, _data);
}
/**
* @dev Returns the current implementation address.
*
* TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using
* the https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call.
* `0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc`
*/
function _implementation() internal view virtual override returns (address) {
return ERC1967Utils.getImplementation();
}
}[
{
"type": "constructor",
"inputs": [
{
"name": "implementation",
"type": "address",
"internalType": "address"
},
{
"name": "_data",
"type": "bytes",
"internalType": "bytes"
}
],
"stateMutability": "payable"
},
{
"name": "AddressEmptyCode",
"type": "error",
"inputs": [
{
"name": "target",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "ERC1967InvalidImplementation",
"type": "error",
"inputs": [
{
"name": "implementation",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "ERC1967NonPayable",
"type": "error",
"inputs": []
},
{
"name": "FailedInnerCall",
"type": "error",
"inputs": []
},
{
"name": "Upgraded",
"type": "event",
"inputs": [
{
"name": "implementation",
"type": "address",
"indexed": true,
"internalType": "address"
}
],
"anonymous": false
},
{
"type": "fallback",
"stateMutability": "payable"
}
][
{
"type": "constructor",
"inputs": [],
"stateMutability": "nonpayable"
},
{
"name": "AddressEmptyCode",
"type": "error",
"inputs": [
{
"name": "target",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "DeviationTooHigh",
"type": "error",
"inputs": []
},
{
"name": "ECDSAInvalidSignature",
"type": "error",
"inputs": []
},
{
"name": "ECDSAInvalidSignatureLength",
"type": "error",
"inputs": [
{
"name": "length",
"type": "uint256",
"internalType": "uint256"
}
]
},
{
"name": "ECDSAInvalidSignatureS",
"type": "error",
"inputs": [
{
"name": "s",
"type": "bytes32",
"internalType": "bytes32"
}
]
},
{
"name": "ERC1967InvalidImplementation",
"type": "error",
"inputs": [
{
"name": "implementation",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "ERC1967NonPayable",
"type": "error",
"inputs": []
},
{
"name": "EnforcedPause",
"type": "error",
"inputs": []
},
{
"name": "ExpectedPause",
"type": "error",
"inputs": []
},
{
"name": "FailedInnerCall",
"type": "error",
"inputs": []
},
{
"name": "InvalidBatchId",
"type": "error",
"inputs": []
},
{
"name": "InvalidInitialization",
"type": "error",
"inputs": []
},
{
"name": "InvalidNonce",
"type": "error",
"inputs": []
},
{
"name": "InvalidSigner",
"type": "error",
"inputs": []
},
{
"name": "InvalidThreshold",
"type": "error",
"inputs": []
},
{
"name": "InvalidTimestamp",
"type": "error",
"inputs": []
},
{
"name": "NoBatchPublished",
"type": "error",
"inputs": []
},
{
"name": "NotInitializing",
"type": "error",
"inputs": []
},
{
"name": "ReentrancyGuardReentrantCall",
"type": "error",
"inputs": []
},
{
"name": "RequestExpired",
"type": "error",
"inputs": []
},
{
"name": "ThresholdNotReached",
"type": "error",
"inputs": []
},
{
"name": "TooManyRequests",
"type": "error",
"inputs": []
},
{
"name": "UUPSUnauthorizedCallContext",
"type": "error",
"inputs": []
},
{
"name": "UUPSUnsupportedProxiableUUID",
"type": "error",
"inputs": [
{
"name": "slot",
"type": "bytes32",
"internalType": "bytes32"
}
]
},
{
"name": "Unauthorized",
"type": "error",
"inputs": []
},
{
"name": "ZeroAddress",
"type": "error",
"inputs": []
},
{
"name": "ZeroValue",
"type": "error",
"inputs": []
},
{
"name": "BatchCancelled",
"type": "event",
"inputs": [
{
"name": "batchId",
"type": "uint256",
"indexed": true,
"internalType": "uint256"
}
],
"anonymous": false
},
{
"name": "EIP712DomainChanged",
"type": "event",
"inputs": [],
"anonymous": false
},
{
"name": "Executed",
"type": "event",
"inputs": [
{
"name": "id",
"type": "uint256",
"indexed": true,
"internalType": "uint256"
},
{
"name": "medianValue",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
},
{
"name": "timestamp",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
},
{
"name": "executor",
"type": "address",
"indexed": true,
"internalType": "address"
}
],
"anonymous": false
},
{
"name": "ExecutorSet",
"type": "event",
"inputs": [
{
"name": "executor",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "approved",
"type": "bool",
"indexed": false,
"internalType": "bool"
}
],
"anonymous": false
},
{
"name": "Initialized",
"type": "event",
"inputs": [
{
"name": "version",
"type": "uint64",
"indexed": false,
"internalType": "uint64"
}
],
"anonymous": false
},
{
"name": "MaxDeviationSet",
"type": "event",
"inputs": [
{
"name": "oldMaxDeviation",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
},
{
"name": "newMaxDeviation",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
}
],
"anonymous": false
},
{
"name": "MaxStalenessSet",
"type": "event",
"inputs": [
{
"name": "oldMaxStaleness",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
},
{
"name": "newMaxStaleness",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
}
],
"anonymous": false
},
{
"name": "Paused",
"type": "event",
"inputs": [
{
"name": "account",
"type": "address",
"indexed": false,
"internalType": "address"
}
],
"anonymous": false
},
{
"name": "Published",
"type": "event",
"inputs": [
{
"name": "id",
"type": "uint256",
"indexed": true,
"internalType": "uint256"
},
{
"name": "value",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
},
{
"name": "timestamp",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
},
{
"name": "signer",
"type": "address",
"indexed": true,
"internalType": "address"
}
],
"anonymous": false
},
{
"name": "RateRejected",
"type": "event",
"inputs": [
{
"name": "id",
"type": "uint256",
"indexed": true,
"internalType": "uint256"
},
{
"name": "medianValue",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
},
{
"name": "measuredAt",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
}
],
"anonymous": false
},
{
"name": "SignerSet",
"type": "event",
"inputs": [
{
"name": "signer",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "approved",
"type": "bool",
"indexed": false,
"internalType": "bool"
}
],
"anonymous": false
},
{
"name": "ThresholdSet",
"type": "event",
"inputs": [
{
"name": "oldThreshold",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
},
{
"name": "newThreshold",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
}
],
"anonymous": false
},
{
"name": "Unpaused",
"type": "event",
"inputs": [
{
"name": "account",
"type": "address",
"indexed": false,
"internalType": "address"
}
],
"anonymous": false
},
{
"name": "Upgraded",
"type": "event",
"inputs": [
{
"name": "implementation",
"type": "address",
"indexed": true,
"internalType": "address"
}
],
"anonymous": false
},
{
"name": "BASIS_POINTS",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "DEFAULT_DEVIATION",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "DEFAULT_STALENESS",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "DEFAULT_THRESHOLD",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "MAX_PENDING_REQUESTS",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "MAX_THRESHOLD",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "PUBLISH_TYPEHASH",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "bytes32",
"internalType": "bytes32"
}
],
"stateMutability": "view"
},
{
"name": "UPGRADE_INTERFACE_VERSION",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "string",
"internalType": "string"
}
],
"stateMutability": "view"
},
{
"name": "cancelBatch",
"type": "function",
"inputs": [],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "currentBatchId",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "eip712Domain",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "fields",
"type": "bytes1",
"internalType": "bytes1"
},
{
"name": "name",
"type": "string",
"internalType": "string"
},
{
"name": "version",
"type": "string",
"internalType": "string"
},
{
"name": "chainId",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "verifyingContract",
"type": "address",
"internalType": "address"
},
{
"name": "salt",
"type": "bytes32",
"internalType": "bytes32"
},
{
"name": "extensions",
"type": "uint256[]",
"internalType": "uint256[]"
}
],
"stateMutability": "view"
},
{
"name": "execute",
"type": "function",
"inputs": [],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "executors",
"type": "function",
"inputs": [
{
"name": "executor",
"type": "address",
"internalType": "address"
}
],
"outputs": [
{
"name": "approved",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "view"
},
{
"name": "initialize",
"type": "function",
"inputs": [
{
"name": "strategy_",
"type": "address",
"internalType": "address"
},
{
"name": "threshold_",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "lastPublishedData",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "tuple",
"components": [
{
"name": "id",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "medianValue",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "timestamp",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "executor",
"type": "address",
"internalType": "address"
}
],
"internalType": "struct PublishedData"
}
],
"stateMutability": "view"
},
{
"name": "maxDeviation",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "maxStaleness",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "nonces",
"type": "function",
"inputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "pause",
"type": "function",
"inputs": [],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "paused",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "view"
},
{
"name": "pendingRequests",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "tuple[]",
"components": [
{
"name": "id",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "value",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "timestamp",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "signer",
"type": "address",
"internalType": "address"
},
{
"name": "nonce",
"type": "uint256",
"internalType": "uint256"
}
],
"internalType": "struct PublishRequest[]"
}
],
"stateMutability": "view"
},
{
"name": "proxiableUUID",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "bytes32",
"internalType": "bytes32"
}
],
"stateMutability": "view"
},
{
"name": "publish",
"type": "function",
"inputs": [
{
"name": "request",
"type": "tuple",
"components": [
{
"name": "id",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "value",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "timestamp",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "signer",
"type": "address",
"internalType": "address"
},
{
"name": "nonce",
"type": "uint256",
"internalType": "uint256"
}
],
"internalType": "struct PublishRequest"
},
{
"name": "signature",
"type": "bytes",
"internalType": "bytes"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "publishedDataByBatchId",
"type": "function",
"inputs": [
{
"name": "id",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [
{
"name": "",
"type": "tuple",
"components": [
{
"name": "id",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "medianValue",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "timestamp",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "executor",
"type": "address",
"internalType": "address"
}
],
"internalType": "struct PublishedData"
}
],
"stateMutability": "view"
},
{
"name": "setExecutor",
"type": "function",
"inputs": [
{
"name": "executor_",
"type": "address",
"internalType": "address"
},
{
"name": "approved_",
"type": "bool",
"internalType": "bool"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "setMaxDeviation",
"type": "function",
"inputs": [
{
"name": "maxDeviation_",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "setMaxStaleness",
"type": "function",
"inputs": [
{
"name": "maxStaleness_",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "setSigner",
"type": "function",
"inputs": [
{
"name": "signer_",
"type": "address",
"internalType": "address"
},
{
"name": "approved_",
"type": "bool",
"internalType": "bool"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "setThreshold",
"type": "function",
"inputs": [
{
"name": "threshold_",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "signers",
"type": "function",
"inputs": [
{
"name": "signer",
"type": "address",
"internalType": "address"
}
],
"outputs": [
{
"name": "approved",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "view"
},
{
"name": "strategy",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "threshold",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "unpause",
"type": "function",
"inputs": [],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "upgradeToAndCall",
"type": "function",
"inputs": [
{
"name": "newImplementation",
"type": "address",
"internalType": "address"
},
{
"name": "data",
"type": "bytes",
"internalType": "bytes"
}
],
"outputs": [],
"stateMutability": "payable"
}
]0x60806040527f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc545f9081906001600160a01b0316368280378136915af43d5f803e156048573d5ff35b3d5ffdfea264697066735822122049f33540c4c4744fa6deb0a3a040b4055e5558c9a9ba2e642a7c08f605ece6aa64736f6c634300081b0033
| 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 |
|---|---|---|---|
| 0xf927a1…bda7d2 | 3 days agoFri, 14 Aug 2026 14:53:46 UTC | 0x389074…4d82 | [0] 0x000000000000…00000003 [1] 0x000000000000…6b715253 data: 0x000000000000000000…6a7f2bfa |
| 0x41ed42…7b74c8 | 3 days agoFri, 14 Aug 2026 14:53:00 UTC | 0x342e84…6232 | [0] 0x000000000000…00000003 [1] 0x000000000000…6b715253 data: 0x000000000000000000…6a7f2a0b |
| 0xa9331f…350566 | 6 days agoTue, 11 Aug 2026 15:38:31 UTC | 0x389074…4d82 | [0] 0x000000000000…00000002 [1] 0x000000000000…6b715253 data: 0x000000000000000000…6a7b41f7 |
| 0x918ac3…023379 | 6 days agoTue, 11 Aug 2026 15:34:24 UTC | 0x342e84…6232 | [0] 0x000000000000…00000002 [1] 0x000000000000…6b715253 data: 0x000000000000000000…6a7b3f0a |
| 0x11b558…739657 | 9 days agoSat, 08 Aug 2026 07:23:07 UTC | 0x389074…4d82 | [0] 0x000000000000…00000001 [1] 0x000000000000…6b715253 data: 0x000000000000000000…6a76d95b |
| 0x4e9276…f9d5af | 10 days agoFri, 07 Aug 2026 16:26:48 UTC | 0x342e84…6232 | [0] 0x000000000000…00000001 [1] 0x000000000000…6b715253 data: 0x000000000000000000…6a7606eb |
| 0x1f8999…6296a4 | 10 days agoFri, 07 Aug 2026 10:28:27 UTC | 0xfc4acb…cf19 | [0] 0x000000000000…ec1f137d data: 0x000000000000000000…00000001 |
| 0x2a8344…d0b3dc | 14 days agoMon, 03 Aug 2026 07:24:19 UTC | 0x278b09…0a99 | [0] 0x000000000000…6afb222a data: 0x000000000000000000…00000000 |
| 0xaa59aa…87a9b3 | 18 days agoThu, 30 Jul 2026 16:01:15 UTC | 0x389074…4d82 | [0] 0x000000000000…00000000 [1] 0x000000000000…6b715253 data: 0x000000000000000000…6a6b754b |
| 0x76b6e2…2a6627 | 18 days agoThu, 30 Jul 2026 15:57:31 UTC | 0x342e84…6232 | [0] 0x000000000000…00000000 [1] 0x000000000000…6b715253 data: 0x000000000000000000…6a6b73d7 |
| 0x98e315…93b766 | 18 days agoThu, 30 Jul 2026 15:50:08 UTC | 0x278b09…0a99 | [0] 0x000000000000…6b715253 data: 0x000000000000000000…00000001 |
| 0xbb9575…ccf9cb | 18 days agoThu, 30 Jul 2026 15:49:21 UTC | 0xfc4acb…cf19 | [0] 0x000000000000…6b715253 data: 0x000000000000000000…00000001 |
| 0x2f3bce…29fab3 | 19 days agoWed, 29 Jul 2026 14:50:42 UTC | 0x1c42db…78e8 | data: 0x000000000000000000…0000c350 |
| 0x5f72e8…61a9b2 | 19 days agoWed, 29 Jul 2026 14:46:41 UTC | 0x278b09…0a99 | [0] 0x000000000000…6afb222a data: 0x000000000000000000…00000001 |
| 0xa98e50…f7e103 | 19 days agoWed, 29 Jul 2026 13:56:13 UTC | 0xc7f505…81d2 | data: 0x000000000000000000…00000001 |
| 0xa98e50…f7e103 | 19 days agoWed, 29 Jul 2026 13:56:13 UTC | 0xbc7cd7…2d3b | [0] 0x000000000000…f75f86aa |
| Transaction Hash | Method | Block | Age | From | To | Amount | Token | ||
|---|---|---|---|---|---|---|---|---|---|
| no token transfers for this address yet | |||||||||
| Transaction Hash | Method ? | Block | Age | From | To | Amount | Txn Fee ? | ||
|---|---|---|---|---|---|---|---|---|---|
| 0xf927a1…bda7d2 | execute | 36,339,759 | 3 days agoFri, 14 Aug 2026 14:53:46 UTC | 0x7f1a…5253 | IN | DVNPublisher | $0.000 ETH | 0.00001004 | |
| 0x41ed42…7b74c8 | publish | 36,339,284 | 3 days agoFri, 14 Aug 2026 14:53:00 UTC | 0x7f1a…5253 | IN | DVNPublisher | $0.000 ETH | 0.00000758 | |
| 0xa9331f…350566 | execute | 33,775,757 | 6 days agoTue, 11 Aug 2026 15:38:31 UTC | 0x7f1a…5253 | IN | DVNPublisher | $0.000 ETH | 0.00000685 | |
| 0x918ac3…023379 | publish | 33,773,258 | 6 days agoTue, 11 Aug 2026 15:34:24 UTC | 0x7f1a…5253 | IN | DVNPublisher | $0.000 ETH | 0.00000508 | |
| 0x11b558…739657 | execute | 30,890,770 | 9 days agoSat, 08 Aug 2026 07:23:07 UTC | 0x7f1a…5253 | IN | DVNPublisher | $0.000 ETH | 0.00000924 | |
| 0x4e9276…f9d5af | publish | 30,353,811 | 10 days agoFri, 07 Aug 2026 16:26:48 UTC | 0x7f1a…5253 | IN | DVNPublisher | $0.000 ETH | 0.00000564 | |
| 0x1f8999…6296a4 | setSigner | 30,139,287 | 10 days agoFri, 07 Aug 2026 10:28:27 UTC | 0x7f1a…5253 | IN | DVNPublisher | $0.000 ETH | 0.00000192 | |
| 0x2a8344…d0b3dc | setExecutor | 26,580,331 | 14 days agoMon, 03 Aug 2026 07:24:19 UTC | 0x7f1a…5253 | IN | DVNPublisher | $0.000 ETH | 0.00000084 | |
| 0xaa59aa…87a9b3 | execute | 23,442,737 | 18 days agoThu, 30 Jul 2026 16:01:15 UTC | 0x7f1a…5253 | IN | DVNPublisher | $0.000 ETH | 0.00000593 | |
| 0x76b6e2…2a6627 | publish | 23,440,508 | 18 days agoThu, 30 Jul 2026 15:57:31 UTC | 0x7f1a…5253 | IN | DVNPublisher | $0.000 ETH | 0.00000333 | |
| 0x98e315…93b766 | setExecutor | 23,436,075 | 18 days agoThu, 30 Jul 2026 15:50:08 UTC | 0x7f1a…5253 | IN | DVNPublisher | $0.000 ETH | 0.00000126 | |
| 0xbb9575…ccf9cb | setSigner | 23,435,606 | 18 days agoThu, 30 Jul 2026 15:49:21 UTC | 0x7f1a…5253 | IN | DVNPublisher | $0.000 ETH | 0.00000126 | |
| 0x2f3bce…29fab3 | setMaxDeviation | 22,538,753 | 19 days agoWed, 29 Jul 2026 14:50:42 UTC | 0x94f7…222a | IN | DVNPublisher | $0.000 ETH | 0.00000104 | |
| 0x5f72e8…61a9b2 | setExecutor | 22,536,336 | 19 days agoWed, 29 Jul 2026 14:46:41 UTC | 0x94f7…222a | IN | DVNPublisher | $0.000 ETH | 0.00000140 |
| Block | Age | Parent Transaction Hash | Type | Method | From | To | Value | |
|---|---|---|---|---|---|---|---|---|
| 22,506,090 | 19 days agoWed, 29 Jul 2026 13:56:13 UTC | 0xa98e50…f7e103 | CREATE | createDVNPublisher | 0x7347…b6a8 | IN | 0x4150…f22f | 0 ETH |