Crates.io | arcium-client |
lib.rs | arcium-client |
version | 0.3.0 |
created_at | 2025-04-30 19:04:17.535448+00 |
updated_at | 2025-09-02 11:54:06.939272+00 |
description | A client-side library for interacting with the Arcium Solana program. |
homepage | https://www.arcium.com |
repository | |
max_upload_size | |
id | 1655341 |
size | 506,640 |
A client-side library for interacting with the Arcium Solana program. Provides the program IDL, account types, and transaction building utilities for applications that integrate with the Arcium network.
use arcium_client::{ARCIUM_PROGRAM_ID, idl};
// Access the Arcium program ID
let program_id = ARCIUM_PROGRAM_ID;
Enable the transactions
feature for additional transaction building and PDA utilities.
ARCIUM_PROGRAM_ID
- The on-chain program ID for the Arcium Solana programidl
- Interface Definition Language types and structuresinstruction
- Instruction builders (with "transactions" feature)pda
- Program Derived Address utilities (with "transactions" feature)state
- Account state definitions (with "transactions" feature)transactions
- Transaction building helpers (with "transactions" feature)