🙏Request

The data structure representing a request is defined as follows:

#[account]
pub struct Request {
    pub authority: Pubkey,
    pub marketplace: Pubkey,
    pub bump: u8,
}

The Request struct contains the following components:

  1. authority: The public key having authority over the request PDA.

  2. marketplace: The public key of the associated marketplace, used to derive the request PDA.

  3. bump: Bump seed parameter used for deterministic address derivation.

Last updated