| Crates.io | carbon-profile-vault-decoder |
| lib.rs | carbon-profile-vault-decoder |
| version | 0.12.1 |
| created_at | 2025-10-15 16:52:46.138154+00 |
| updated_at | 2026-01-21 23:34:24.948436+00 |
| description | Rust decoder for Star Atlas Profile Vault program on Solana |
| homepage | https://github.com/staratlasmeta/star-atlas-decoders |
| repository | https://github.com/staratlasmeta/star-atlas-decoders |
| max_upload_size | |
| id | 1884682 |
| size | 129,101 |
Rust decoder for the Star Atlas Profile Vault program on Solana, generated using Carbon CLI.
pv1ttom8tbyh83C1AVh6QH2naGRdVQUVt3HY1Yst5svAdd this crate to your Cargo.toml:
[dependencies]
carbon-profile-vault-decoder = "0.12.0"
use carbon_profile_vault_decoder::ProfileVaultDecoder;
use carbon_core::account::AccountDecoder;
let decoder = ProfileVaultDecoder;
let decoded_account = decoder.decode_account(&account);
if let Some(decoded) = decoded_account {
match decoded.data {
ProfileVaultAccount::VaultAuthority(authority) => {
println!("Vault Authority: {:?}", authority);
}
}
}
This decoder supports all Profile Vault account types:
VaultAuthority - Vault authority configuration and permissionsFull documentation is available at docs.rs.
See the main repository for build instructions and contribution guidelines.
Licensed under the Apache-2.0 license.