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 · just now
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