export type Purchase = { /** * @description ID (transaction hash) of the purchase * @type string */ id: string; /** * @description Quantity of credits purchased * @type string */ amount: string; /** * @type object */ listing: { /** * @description ID of the listing that was purchased * @type string */ id: string; /** * @type object */ project: { /** * @type string */ country: string; /** * @type string */ key: string; /** * @type string */ methodology: string; /** * @type string */ name: string; /** * @type string */ projectID: string; /** * @type string */ vintage: string; }; }; /** * @description Total purchase price (USDC) * @type string */ price: string; };