Expand description
StrikeClient — the main entry point for the SDK.
Supports both read-only mode (no wallet) and trading mode (with wallet).
§Examples
use strike_sdk::prelude::*;
// Read-only
let client = StrikeClient::new(StrikeConfig::bsc_testnet()).build()?;
// With wallet
let client = StrikeClient::new(StrikeConfig::bsc_testnet())
.with_private_key("0x...")
.build()?;Structs§
- Strike
Client - The main Strike SDK client.
- Strike
Client Builder - Builder for constructing a
StrikeClient.
Type Aliases§
- Nonce
Sender Ref - Shared nonce sender reference type.