Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.06 KB

File metadata and controls

31 lines (23 loc) · 1.06 KB

Changelog

All notable changes to this project will be documented in this file.

[0.1.2] - 2026-02-12

Fixed

  • Fixed Table and Connection account decoders to correctly handle optional fields
    • gate_mint field now properly decoded as Option<Pubkey> instead of required Pubkey
    • writers field in Table now properly decoded as Option<Vec<Pubkey>>
    • This fixes issues where tables created without gate_mint were incorrectly decoded

[0.1.1] - 2026-02-12

Fixed

  • Fixed send_tx function compatibility with solders >= 0.23
    • Updated Transaction creation to use Message.new_with_blockhash instead of deprecated Transaction.new_with_payer
    • Fixed recent_blockhash attribute error with newer solders versions
    • Fixed signature type handling in confirm_transaction
  • Improved compatibility with httpx >= 0.28.0

Changed

  • Transaction signing now properly handles both Keypair and WalletSigner types

[0.1.0] - 2026-01-03

Added

  • Initial release
  • Support for on-chain data storage
  • Database tables and connections
  • Code-in functionality