SignatureChecker

Ethereum 瀏覽鏈

0x43506849d7c04f9138d1a2050bbf3a0c054402dd

Proxy 實作合約: 0x800c32eaa2a6c93cf4cb51794450ed77fbfbb172

Solidity v0.6.12+commit.27d51765

🤖
透過你的 AI 查詢此合約
參考: 0x43506849d7c04f9138d1a2050bbf3a0c054402dd
範例提示詞: "Tell me the current state of eth/0x43506849d7c04f9138d1a2050bbf3a0c054402dd"
還沒有接入 AI?→ mcp.smarts.md · 瀏覽鏈

管理與風險

誰能修改規則?

Detected upgradeable controls from the verified ABI.

Upgradeable

當前控制

Implementation
0x800c32eaa2a6c93cf4cb51794450ed77fbfbb172 ↗ Etherscan → smarts proxy

概覽

讀取函式
1
寫入函式
0
事件
0

讀取函式

isValidSignatureNow(signer: address, digest: bytes32, signature: bytes) view

Checks whether a signature was produced by a given signer for a provided digest.✨ AI

開發者: Checks if a signature is valid for a given signer and data hash. If the signer is a smart contract, the signature is validated against that smart contract using ERC1271, otherwise it's validated using `ECRecover.recover`.

參數

名稱 類型 描述
signer address Address of the claimed signer
digest bytes32 Keccak-256 hash digest of the signed message
signature bytes Signature byte array associated with hash

回傳值

名稱 類型 描述
bool True if the signature is valid for the signer and digest, otherwise false.✨ AI