Shielded Write
Encrypted transactions — lifecycle, security parameters, and the filler pipeline
How it works
Step-by-step
1. Set up a signed provider
use seismic_prelude::client::*;
use seismic_alloy_network::reth::SeismicReth;
let signer: PrivateKeySigner = "0xYOUR_PRIVATE_KEY".parse()?;
let wallet = SeismicWallet::<SeismicReth>::from(signer);
let url: reqwest::Url = "https://testnet-1.seismictest.net/rpc".parse()?;
let provider = SeismicProviderBuilder::new()
.wallet(wallet)
.connect_http(url)
.await?;2. Define the contract interface
3. Build and send
4. Verify success
Security parameters
Parameter
Default
Description
What happens under the hood
Create transactions cannot be seismic
Error handling
Complete example
See Also
Last updated

