carbon-pump-swap-decoder 1.0.0

PumpSwap Decoder
Documentation
//! This code was AUTOGENERATED using the Codama library.
use {
    crate::types::OptionBool,
    carbon_core::{
        instruction::InstructionMetadata,
        postgres::{metadata::InstructionRowMetadata, primitives::U64},
    },
};

#[derive(sqlx::FromRow, Debug, Clone)]
pub struct BuyExactQuoteInRow {
    #[sqlx(flatten)]
    pub instruction_metadata: InstructionRowMetadata,
    pub spendable_quote_in: U64,
    pub min_base_amount_out: U64,
    pub track_volume: sqlx::types::Json<OptionBool>,
    #[sqlx(rename = "__accounts")]
    pub accounts: sqlx::types::Json<Vec<solana_instruction::AccountMeta>>,
}

impl BuyExactQuoteInRow {
    pub fn from_parts(
        source: crate::instructions::buy_exact_quote_in::BuyExactQuoteIn,
        metadata: InstructionMetadata,
        accounts: Vec<solana_instruction::AccountMeta>,
    ) -> Self {
        Self {
            instruction_metadata: metadata.into(),
            spendable_quote_in: source.spendable_quote_in.into(),
            min_base_amount_out: source.min_base_amount_out.into(),
            track_volume: sqlx::types::Json(source.track_volume),
            accounts: sqlx::types::Json(accounts),
        }
    }
}

impl TryFrom<BuyExactQuoteInRow> for crate::instructions::buy_exact_quote_in::BuyExactQuoteIn {
    type Error = carbon_core::error::Error;
    fn try_from(source: BuyExactQuoteInRow) -> Result<Self, Self::Error> {
        Ok(Self {
            spendable_quote_in: *source.spendable_quote_in,
            min_base_amount_out: *source.min_base_amount_out,
            track_volume: source.track_volume.0,
        })
    }
}

impl carbon_core::postgres::operations::Table
    for crate::instructions::buy_exact_quote_in::BuyExactQuoteIn
{
    fn table() -> &'static str {
        "buy_exact_quote_in_instruction"
    }

    fn columns() -> Vec<&'static str> {
        vec![
            "__signature",
            "__instruction_index",
            "__stack_height",
            "__slot",
            "spendable_quote_in",
            "min_base_amount_out",
            "track_volume",
            "__accounts",
        ]
    }
}

#[async_trait::async_trait]
impl carbon_core::postgres::operations::Insert for BuyExactQuoteInRow {
    async fn insert(&self, pool: &sqlx::PgPool) -> carbon_core::error::CarbonResult<()> {
        sqlx::query(
            r#"
            INSERT INTO buy_exact_quote_in_instruction (
                "spendable_quote_in",
                "min_base_amount_out",
                "track_volume",
                __signature, __instruction_index, __stack_height, __slot, __accounts
            ) VALUES (
                $1, $2, $3, $4, $5, $6, $7, $8
            )"#,
        )
        .bind(&self.spendable_quote_in)
        .bind(&self.min_base_amount_out)
        .bind(self.track_volume)
        .bind(&self.instruction_metadata.signature)
        .bind(self.instruction_metadata.instruction_index)
        .bind(self.instruction_metadata.stack_height)
        .bind(&self.instruction_metadata.slot)
        .bind(&self.accounts)
        .execute(pool)
        .await
        .map_err(|e| carbon_core::error::Error::Custom(e.to_string()))?;
        Ok(())
    }
}

#[async_trait::async_trait]
impl carbon_core::postgres::operations::Upsert for BuyExactQuoteInRow {
    async fn upsert(&self, pool: &sqlx::PgPool) -> carbon_core::error::CarbonResult<()> {
        sqlx::query(
            r#"INSERT INTO buy_exact_quote_in_instruction (
                "spendable_quote_in",
                "min_base_amount_out",
                "track_volume",
                __signature, __instruction_index, __stack_height, __slot, __accounts
            ) VALUES (
                $1, $2, $3, $4, $5, $6, $7, $8
            ) ON CONFLICT (
                __signature, __instruction_index, __stack_height
            ) DO UPDATE SET
                "spendable_quote_in" = EXCLUDED."spendable_quote_in",
                "min_base_amount_out" = EXCLUDED."min_base_amount_out",
                "track_volume" = EXCLUDED."track_volume",
                __instruction_index = EXCLUDED.__instruction_index,
                __stack_height = EXCLUDED.__stack_height,
                __slot = EXCLUDED.__slot,
                __accounts = EXCLUDED.__accounts
            "#,
        )
        .bind(&self.spendable_quote_in)
        .bind(&self.min_base_amount_out)
        .bind(self.track_volume)
        .bind(&self.instruction_metadata.signature)
        .bind(self.instruction_metadata.instruction_index)
        .bind(self.instruction_metadata.stack_height)
        .bind(&self.instruction_metadata.slot)
        .bind(&self.accounts)
        .execute(pool)
        .await
        .map_err(|e| carbon_core::error::Error::Custom(e.to_string()))?;
        Ok(())
    }
}

#[async_trait::async_trait]
impl carbon_core::postgres::operations::Delete for BuyExactQuoteInRow {
    type Key = (
        String,
        carbon_core::postgres::primitives::U32,
        carbon_core::postgres::primitives::U32,
    );

    async fn delete(key: Self::Key, pool: &sqlx::PgPool) -> carbon_core::error::CarbonResult<()> {
        sqlx::query(
            r#"DELETE FROM buy_exact_quote_in_instruction WHERE
                __signature = $1 AND __instruction_index = $2 AND __stack_height = $3
            "#,
        )
        .bind(key.0)
        .bind(key.1)
        .bind(key.2)
        .execute(pool)
        .await
        .map_err(|e| carbon_core::error::Error::Custom(e.to_string()))?;
        Ok(())
    }
}

#[async_trait::async_trait]
impl carbon_core::postgres::operations::Lookup for BuyExactQuoteInRow {
    type Key = (
        String,
        carbon_core::postgres::primitives::U32,
        carbon_core::postgres::primitives::U32,
    );

    async fn lookup(
        key: Self::Key,
        pool: &sqlx::PgPool,
    ) -> carbon_core::error::CarbonResult<Option<Self>> {
        let row = sqlx::query_as(
            r#"SELECT * FROM buy_exact_quote_in_instruction WHERE
                __signature = $1 AND __instruction_index = $2 AND __stack_height = $3
            "#,
        )
        .bind(key.0)
        .bind(key.1)
        .bind(key.2)
        .fetch_optional(pool)
        .await
        .map_err(|e| carbon_core::error::Error::Custom(e.to_string()))?;
        Ok(row)
    }
}

pub struct BuyExactQuoteInMigrationOperation;

#[async_trait::async_trait]
impl sqlx_migrator::Operation<sqlx::Postgres> for BuyExactQuoteInMigrationOperation {
    async fn up(
        &self,
        connection: &mut sqlx::PgConnection,
    ) -> Result<(), sqlx_migrator::error::Error> {
        sqlx::query(
            r#"CREATE TABLE IF NOT EXISTS buy_exact_quote_in_instruction (
                -- Instruction data
                "spendable_quote_in" NUMERIC(20) NOT NULL,
                "min_base_amount_out" NUMERIC(20) NOT NULL,
                "track_volume" JSONB NOT NULL,
                -- Instruction metadata
                __signature TEXT NOT NULL,
                __instruction_index BIGINT NOT NULL,
                __stack_height BIGINT NOT NULL,
                __slot NUMERIC(20),
                __accounts JSONB NOT NULL,
                PRIMARY KEY (__signature, __instruction_index, __stack_height)
            )"#,
        )
        .execute(connection)
        .await?;
        Ok(())
    }

    async fn down(
        &self,
        connection: &mut sqlx::PgConnection,
    ) -> Result<(), sqlx_migrator::error::Error> {
        sqlx::query(r#"DROP TABLE IF EXISTS buy_exact_quote_in_instruction"#)
            .execute(connection)
            .await?;
        Ok(())
    }
}