SSV SDK
⚠️ Development Notice: This SDK is currently under active development and testing. It is not recommended for production use at this time.
This section and SDK are a work in progress and will be continuously updated as new components of the SDK are released.
The SSV SDK is a comprehensive, open-source developer toolkit written in TypeScript, designed to empower developers to seamlessly interact with the SSV Network programmatically.
It consolidates all necessary tooling into a single, cohesive package.
The SDK is structured into four core modules:
Cluster: Manage and interact with distributed validator clusters.
Utils: Utility functions to simplify development workflows.
API: Streamlined access to SSV Subgraph APIs.
Operator: Tools for operator-related interactions.
Explore the SDK's source code on GitHub: SSV SDK Repository.
Installation
To install the SDK, run:
Initialization
The SDK requires specific parameters for initialization. Two that are not optional are the chain and the account. The viem
library can be used to create an account object based off of a wallet's private key, and pass it into the SDK to instantiate it.
Initialization Parameters
Input name
Input type
Optional
public_client
No
wallet_client
No
Usage
Use the SDK by selecting one of the four modules and calling the desired function.
Last updated