use {
crate::types::graphql::{
AmmCreatorFeeOnGraphQL, CurveParamsGraphQL, MintParamsGraphQL,
TransferFeeExtensionParamsGraphQL, VestingParamsGraphQL,
},
juniper::GraphQLObject,
serde_json,
};
#[derive(Debug, Clone, GraphQLObject)]
#[graphql(name = "InitializeWithToken2022")]
pub struct InitializeWithToken2022GraphQL {
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 transfer_fee_extension_param: Option<TransferFeeExtensionParamsGraphQL>,
pub accounts: carbon_core::graphql::primitives::Json,
}
impl TryFrom<crate::instructions::postgres::InitializeWithToken2022Row>
for InitializeWithToken2022GraphQL
{
type Error = carbon_core::error::Error;
fn try_from(
row: crate::instructions::postgres::InitializeWithToken2022Row,
) -> 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(),
transfer_fee_extension_param: row.transfer_fee_extension_param.map(|v| v.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()))?,
),
})
}
}