Signed Reads
Encrypted eth_call that proves your identity to the contract
Why this matters
# This proves your identity to the contract
result = contract.read.getBalance()
# This does NOT — msg.sender will be 0x0
result = contract.tread.getBalance()What gets encrypted
Low-level API
from hexbytes import HexBytes
result = w3.seismic.signed_call(
to="0x...",
data=HexBytes("0x..."),
gas=30_000_000,
)Async
Last updated

