use {
carbon_core::graphql::primitives::{Pubkey, U8},
juniper::GraphQLObject,
serde_json,
};
#[derive(Debug, Clone, GraphQLObject)]
#[graphql(name = "InitializeMint")]
pub struct InitializeMintGraphQL {
pub instruction_metadata: crate::instructions::graphql::InstructionMetadataGraphQL,
pub decimals: U8,
pub mint_authority: Pubkey,
pub freeze_authority: Option<Pubkey>,
pub accounts: carbon_core::graphql::primitives::Json,
}
impl TryFrom<crate::instructions::postgres::InitializeMintRow> for InitializeMintGraphQL {
type Error = carbon_core::error::Error;
fn try_from(
row: crate::instructions::postgres::InitializeMintRow,
) -> Result<Self, Self::Error> {
Ok(Self {
instruction_metadata: row.instruction_metadata.into(),
decimals: carbon_core::graphql::primitives::U8((*row.decimals) as u8),
mint_authority: carbon_core::graphql::primitives::Pubkey(row.mint_authority.0),
freeze_authority: row
.freeze_authority
.map(|v| carbon_core::graphql::primitives::Pubkey(v.0)),
accounts: carbon_core::graphql::primitives::Json(
serde_json::to_value(&row.accounts.0)
.map_err(|e| carbon_core::error::Error::Custom(e.to_string()))?,
),
})
}
}