Configure the Paystack payment object
masterTo initialize a payment, you must provide a configuration object. The amount field must be in the country's lowest currency unit (e.g., Kobo for NGN).
const config = {
reference: (new Date()).getTime().toString(),
email: "user@example.com",
amount: 20000, // Amount is in the country's lowest currency. E.g Kobo, so 20000 kobo = N200
publicKey: 'pk_test_dsdfghuytfd2345678gvxxxxxxxxxx',
};