ArbRouterProxyV2
0x201fd921822829ac8bd9ec67667fd497c7deb20d
Verification
Verified
v0.8.26+commit.8a97fa7a
Type
Contract
130 bytes
ABI entries
7
0 read · 0 write
License
none
Contract information
- Address
- 0x201fd921822829ac8bd9ec67667fd497c7deb20d
- Chain
- Robinhood Chain (4663)
- Compiler
- v0.8.26+commit.8a97fa7a
- Optimization
- Enabled
- Creator
- 0x08AC5C48EC…dE664ed812
- Creation tx
- 0xa2bd38d967…ef49e90f05
Token
Not a token
This contract does not expose ERC-20 metadata.
Read contract (0)
No read functions
The ABI is unavailable or exposes no view functions.
Events (1)
Upgraded
ABI
[
{
"inputs": [
{
"internalType": "address",
"name": "impl_",
"type": "address"
},
{
"internalType": "bytes",
"name": "initData",
"type": "bytes"
}
],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"inputs": [
{
"internalType": "address",
"name": "target",
"type": "address"
}
],
"name": "AddressEmptyCode",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "implementation",
"type": "address"
}
],
"name": "ERC1967InvalidImplementation",
"type": "error"
},
{
"inputs": [],
"name": "ERC1967NonPayable",
"type": "error"
},
{
"inputs": [],
"name": "FailedInnerCall",
"type": "error"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "implementation",
"type": "address"
}
],
"name": "Upgraded",
"type": "event"
},
{
"stateMutability": "payable",
"type": "fallback"
}
]Source code
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.26;
import {ERC1967Proxy} from "@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol";
/// @title ArbRouterProxyV2
/// @notice Thin ERC1967Proxy wrapper for the V2 implementation.
/// @dev Upgrade authority lives in the implementation (UUPS) under `owner()`.
/// The deployer should immediately delegatecall `initialize(...)` via
/// `_data`.
contract ArbRouterProxyV2 is ERC1967Proxy {
constructor(address impl_, bytes memory initData)
ERC1967Proxy(impl_, initData)
{}
}
Chain explorer3441msChain node105ms