use {
crate::types::graphql::{
AmmCreatorFeeOnGraphQL, CurveParamsGraphQL, MintParamsGraphQL, VestingParamsGraphQL,
},
juniper::GraphQLObject,
serde_json,
};
#[derive(Debug, Clone, GraphQLObject)]
#[graphql(name = "InitializeV2")]
pub struct InitializeV2GraphQL {
pub instruction_metadata: crate::instructions::graphql::InstructionMetadataGraphQL,
pub base_mint_param: MintParamsGraphQL,
pub curve_param: CurveParamsGraphQL,
pub vesting_param: VestingParamsGraphQL,
pub amm_fee_on: AmmCreatorFeeOnGraphQL,
pub accounts: carbon_core::graphql::primitives::Json,
}
impl TryFrom<crate::instructions::postgres::InitializeV2Row> for InitializeV2GraphQL {
type Error = carbon_core::error::Error;
fn try_from(row: crate::instructions::postgres::InitializeV2Row) -> Result<Self, Self::Error> {
Ok(Self {
instruction_metadata: row.instruction_metadata.into(),
base_mint_param: row.base_mint_param.0.into(),
curve_param: row.curve_param.0.into(),
vesting_param: row.vesting_param.0.into(),
amm_fee_on: row.amm_fee_on.0.into(),
accounts: carbon_core::graphql::primitives::Json(
serde_json::to_value(&row.accounts.0)
.map_err(|e| carbon_core::error::Error::Custom(e.to_string()))?,
),
})
}
}