nowpayments-api-typescript
Version:
Nowpayments typescript API wrapper
20 lines (18 loc) • 636 B
text/typescript
import apiStatus from './api-status.service';
import getCurrencies from './get-currencies.service';
import getEstimatePrice from './get-estimate-price.service';
import createPayment from './create-payment.service';
import getPaymentStatus from './get-payment-status.service';
import getMinimumPaymentAmount from './get-minimum-payment-amount.service';
import getListPayments from './get-list-payments.service';
import createInvoice from './create-invoice.service';
export default {
apiStatus,
getCurrencies,
getEstimatePrice,
createPayment,
getPaymentStatus,
getMinimumPaymentAmount,
getListPayments,
createInvoice,
};