ManualApprovalMilestoneProxy
0x6273fcddfbe3666b7ef95927e3639cbd87f09ab9
Verification
Verified
v0.8.28+commit.7893614a
Type
Contract
605 bytes
ABI entries
11
2 read · 3 write
License
none
Contract information
- Address
- 0x6273fcddfbe3666b7ef95927e3639cbd87f09ab9
- Chain
- Robinhood Chain (4663)
- Compiler
- v0.8.28+commit.7893614a
- Optimization
- Enabled
- Creator
- 0xE5E3b9324a…5Ce2a15dd6
- Creation tx
- 0xf70aa4e942…1e0b800199
Token
Not a token
This contract does not expose ERC-20 metadata.
Read contract (2)
implementation() → address
owner() → address
Events (2)
OwnershipTransferredUpgraded
ABI
[
{
"inputs": [
{
"internalType": "address",
"name": "impl",
"type": "address"
},
{
"internalType": "address",
"name": "admin",
"type": "address"
}
],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"inputs": [
{
"internalType": "address",
"name": "implementation",
"type": "address"
}
],
"name": "BeaconInvalidImplementation",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "OwnableInvalidOwner",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "OwnableUnauthorizedAccount",
"type": "error"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "implementation",
"type": "address"
}
],
"name": "Upgraded",
"type": "event"
},
{
"inputs": [],
"name": "implementation",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newImplementation",
"type": "address"
}
],
"name": "upgradeTo",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]Source code
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.28;
import { UpgradeableBeacon } from "@openzeppelin/contracts/proxy/beacon/UpgradeableBeacon.sol";
/**
* @title ManualApprovalMilestoneProxy
* @notice Per-type upgradeable beacon for ManualApproval milestone logic
*/
contract ManualApprovalMilestoneProxy is UpgradeableBeacon {
constructor(address impl, address admin) UpgradeableBeacon(impl, admin) {}
}
Chain explorer5287msChain node100ms