Executor

Ethereum 浏览链

0x5300a1a15135ea4dc7ad5a167152c01efc9b192a

Solidity v0.8.19+commit.7dd6d404

🤖
通过你的 AI 查询此合约
引用: 0x5300a1a15135ea4dc7ad5a167152c01efc9b192a
示例提示词: "Tell me the current state of eth/0x5300a1a15135ea4dc7ad5a167152c01efc9b192a"
还没有接入 AI?→ mcp.smarts.md · 浏览链

管理与风险

谁能修改规则?

Block #25,494,082

Detected ownable controls from the verified ABI.

Ownable

当前控制

Owner
0xdabad81af85554e9ae636395611c58f7ec1aaec5 ↗ Etherscan → smarts

概览

读取函数
1
写入函数
3
事件
2

读取函数

Block #25,494,082 · 30s ago
owner() view → 0xdabad81af85554e9ae636395611c58f7ec1aaec5

Returns the current owner address of the contract.✨ AI

开发者: Returns the address of the current owner.

返回值

名称 类型 描述
address The address that holds ownership and administrative privileges.✨ AI

写入函数

executeTransaction(target: address, value: uint256, signature: string, data: bytes, withDelegatecall: bool) payable

Function, called by Governance, that executes a transaction, returns the callData executed

参数

名称 类型 描述
target address smart contract target
value uint256 wei value of the transaction
signature string function signature of the transaction
data bytes function arguments of the transaction or callData if signature empty
withDelegatecall bool boolean, true = transaction delegatecalls the target, else calls the target

返回值

名称 类型 描述
bytes result data of the execution call.
renounceOwnership() nonpayable

Renounce ownership of the contract, leaving it without an owner.✨ AI

开发者: Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner.
transferOwnership(newOwner: address) nonpayable

Transfer ownership of the contract to a new owner address.✨ AI

开发者: Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner.

参数

名称 类型 描述
newOwner address Address to receive ownership; should be a valid non-zero address.✨ AI

事件

ExecutedAction(target: address, value: uint256, signature: string, data: bytes, executionTime: uint256, withDelegatecall: bool, resultData: bytes)

emitted when an action got executed

名称 类型 已索引 描述
target address address of the targeted contract
value uint256 wei value of the transaction
signature string function signature of the transaction
data bytes function arguments of the transaction or callData if signature empty
executionTime uint256 time at which to execute the transaction
withDelegatecall bool boolean, true = transaction delegatecalls the target, else calls the target
resultData bytes the actual callData used on the target
OwnershipTransferred(previousOwner: address, newOwner: address)
名称 类型 已索引 描述
previousOwner address
newOwner address