Fixed Price Offers (Listings)
Struct
pub struct FixedPriceOffer {
/// Account tag
pub tag: Tag,
/// Nonce
pub nonce: u8,
/// Name being sold
pub name_account: Pubkey,
/// Offer owner
pub owner: Pubkey,
/// Quote token used for offer
pub quote_mint: Pubkey,
/// Amount of the offer
pub offer_amount: u64,
// Offer amount token account destination
pub token_destination: Pubkey,
};Make Fixed Price Offer
Buy Fixed Price Offer
Last updated