SeismicPublicNamespace
Sync read-only Seismic namespace
Definition
class SeismicPublicNamespace:
def get_tee_public_key(self) -> CompressedPublicKey: ...
def contract(self, address: ChecksumAddress, abi: list[dict[str, Any]]) -> PublicContract: ...
def get_deposit_root(self, *, address: str = DEPOSIT_CONTRACT_ADDRESS) -> bytes: ...
def get_deposit_count(self, *, address: str = DEPOSIT_CONTRACT_ADDRESS) -> int: ...Methods
Method
Returns
Description
Example
from seismic_web3 import SEISMIC_TESTNET
public = SEISMIC_TESTNET.public_client()
tee_key = public.seismic.get_tee_public_key()
root = public.seismic.get_deposit_root()
count = public.seismic.get_deposit_count()Notes
See Also
Last updated

