fusionamm-client 1.0.80

Rust client to interact with on-chain FusionAMM program.
Documentation
//! This code was AUTOGENERATED using the codama library.
//! Please DO NOT EDIT THIS FILE, instead use visitors
//! to add features, then rerun codama to update it.
//!
//! <https://github.com/codama-idl/codama>
//!

use borsh::BorshSerialize;
use borsh::BorshDeserialize;

#[derive(BorshSerialize, BorshDeserialize, Clone, Debug, Eq, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct Tick {
pub initialized: bool,
pub liquidity_net: i128,
pub liquidity_gross: u128,
pub fee_growth_outside_a: u128,
pub fee_growth_outside_b: u128,
pub age: u64,
pub open_orders_input: u64,
pub part_filled_orders_input: u64,
pub part_filled_orders_remaining_input: u64,
pub fulfilled_a_to_b_orders_input: u64,
pub fulfilled_b_to_a_orders_input: u64,
}