Server side client for OpnPayments.
npm install opn-paymentsA fully typed server side client for OpnPayments.
``sh`
npm install opn-payments
`ts
import { OpnPayments } from 'opn-payments/2015-11-17/class'
const client = new OpnPayments({
secretKey: 'skey_xxx'
})
client.fetchCharges().then(res => {
console.log(res)
})
``