🙏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:
authority: The public key having authority over the request PDA.marketplace: The public key of the associated marketplace, used to derive the request PDA.bump: Bump seed parameter used for deterministic address derivation.
Last updated