The minting feature allows users to convert ADA to OADA tokens at a 1:1 ratio. This is implemented through the buyOada action in the OADA protocol.
The BuyOadaRequest type defines the structure for minting requests:
// src/oada/actions.ts
// Type definition for OADA minting requests
// Specifies the amount of ADA to convert to OADA tokens
type BuyOadaRequest = {
amount: bigint;
};