ssts-org-client
Rust client for the Solana Security Token Standard (SSTS).
This crate provides generated:
- instruction builders and instruction args
- account structs
- program IDs
- errors and shared types
Crate names
- Package name on crates.io:
ssts-org-client - Library crate name in code:
security_token_client
Installation
[]
= "0.1.0"
Program IDs
Load program IDs from your cluster config/environment. Do not hardcode them in application code.
Usage
Build a Pause instruction
use PauseBuilder;
use Pubkey;
let ix = new
.mint
.verification_config
.pause_authority
.mint_account
.instruction;
assert_eq!;
Import modules
use ;
Notes
- This crate is generated from SSTS IDL and should be re-generated before each release.
- Optional features:
fetch: enable on-chain account fetching helpersserde: enable serde derives on generated types