solana_kit_address 0.9.2
solana_kit_address: ^0.9.2 copied to clipboard
Core Address extension type, codecs, comparator, and PublicKey type for the Solana Kit Dart SDK.
Changelog #
All notable changes to this project will be documented in this file.
This changelog is managed by monochange.
0.9.2 - 2026-09-06 #
Changed #
- No package-specific changes were recorded;
solana_kit_addresswas updated to 0.9.2 as part of groupmain.
0.9.1 - 2026-08-30 #
Changed #
- No package-specific changes were recorded;
solana_kit_addresswas updated to 0.9.1 as part of groupmain.
0.9.0 - 2026-08-30 #
๐ Documentation #
Unslop package docs and code comments
Rewrote every package README from a reader's perspective with verified, compilable examples, removed AI-tell phrasing from docs and code comments, and added a test that analyzes every Dart block in Markdown so examples cannot drift from the API.
0.8.0 - 2026-08-19 #
Changed #
- No package-specific changes were recorded;
solana_kit_addresswas updated to 0.8.0 as part of groupmain.
0.7.0 - 2026-08-18 #
0.6.0 - 2026-08-12 #
๐ Documentation #
Centralize package version documentation
Centralize package version metadata in versions.json and render package installation snippets from the shared MDT data source. Published package behavior is unchanged.
Owner: @ifiokjr ยท Review: PR #188
Point package README website badges at package docs
Updated package README website badges to link directly to each package's docs catalog entry and added missing package entries to the documentation website catalog/index.
0.5.0 - 2026-06-01 #
๐ฅ Breaking Change #
new solana_kit_address package
Initial release of solana_kit_address โ core Address extension type, codecs, comparator, and PublicKey type extracted from solana_kit_addresses.
import 'package:solana_kit_address/solana_kit_address.dart';
final address = Address('11111111111111111111111111111111');
final codec = Address.codec();
Owner: Ifiok Jr. ยท Introduced in: 3f596ef ยท Last updated in: 249e14e
๐ Fixed #
Add well-known program, sysvar, SPL, Metaplex, and token mint address constants
Add centralized address constants to solana_kit_addresses so that any package can reference well-known on-chain addresses without importing the full domain package or hardcoding strings.
New exports:
program_addresses.dartโ All Agave/Solana native program addresses (system, ALT, BPF loaders, compute budget, config, stake, vote, etc.)sysvar_addresses.dartโ All sysvar addresses (clock, rent, recentBlockhashes, fees, rewards, etc.) plus the sysvar owner addressspl_addresses.dartโ SPL program addresses (Token, Token-2022, ATA, Memo, Memo Legacy)metaplex_addresses.dartโ Metaplex program addresses (Token Metadata, Bubblegum, Auth Rules, Core, SPL Account Compression, Noop)well_known_addresses.dartโ Well-known token mint addresses (Wrapped SOL, USDC, USDT)
Also re-exports from solana_kit_address (Address type, codecs, comparator, PublicKey) and solana_kit_address_constants (well-known address constants).
Owner: Ifiok Jr. ยท Introduced in: 3f596ef ยท Last updated in: 4643648
0.0.0 #
Initial release of solana_kit_address โ core Address extension type, codecs, comparator, and PublicKey type extracted from solana_kit_addresses.