Create Merchant Wallet Redemption Transaction
Authentication
Headers
Request
If this purchase is for a seller/submerchant where the marketplace takes a fee, this is the % fee which is taken from the subtotal amount.
Response
Transaction for the users wallet to sign and send.
Solana - base 58 encoded transaction, recover using: Transaction.from(base58.decode(transaction))
Near - Base 64 encoded stringified transaction, recover using: JSON.parse(Buffer.from(transaction, 'base64').toString());
Evm - Base 64 encoded stringified transaction, recover using: JSON.parse(Buffer.from(transaction, 'base64').toString());

