H
Halkbank
Halkbank payment plugin for MedusaJS
npm install @sradevski/medusa-payment-halkbank
Категория
other
Создано
Community
Версия
1.0.0
Последнее обновление
8 месяцев назад
Halkbank Payment Plugin for MedusaJS
This plugin is a payment plugin for MedusaJS that allows you to accept payments from Halkbank MK. Halkbank uses Nestpay as a payment gateway, so the plugin can likely be adjusted to work with other banks that rely on Nestpay.
See Halkbank Payment Plugin for MedusaJS - Frontend for the frontend component.
Installation
The plugin expects that the payment and cart module are available in the project.
Install the plugin:
Add the plugin to your Medusa project:
Add the Halkbank provider to payment module:
{resolve: "@medusajs/medusa/payment",options: {providers: [{resolve: "@sradevski/medusa-payment-halkbank/providers/halkbank",id: "halkbank",name: "Halkbank",options: {clientId: process.env.HALKBANK_CLIENT_ID,clientKey: process.env.HALKBANK_CLIENT_KEY,},},],},},
The backend is ready to accept calls from the frontend component.