npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

maxelpaytest-js

v1.0.1

Published

Use MaxelPay for secure crypto payments.

Downloads

5

Readme

Maxelpay Integration

DESCRIPTION

MaxelPay.com offers a simple and fast solution for accepting Ethereum, BNB, and various other cryptocurrencies. Seamlessly receive crypto payouts from fiat currencies like Euros or U.S. Dollars, all without worrying about exchange rate volatility. Our package connects you with a streamlined way to generate secure checkout links for cryptocurrency payments. With this, you can easily integrate cryptocurrency payment options into your website or web applications by leveraging API keys, secret keys, payloads, and environment settings.

Payments received from customers can be instantly converted to fiat, and you can receive payouts in Euros and U.S. Dollars directly to your MaxelPay wallet. Start accepting cryptocurrencies in no time!

Features

  • Set it and forget it: The gateway operates on autopilot.
  • Payment amount: Calculated using real-time exchange rates.
  • Simplicity for you, flexibility for your customers: On our invoices, a customer can choose to pay with the listed cryptocurrencies which you choose to accept at checkout, resulting in your payouts.
  • No setup: Generate Checkout Links: Create secure and dynamic checkout links for processing cryptocurrency payments.
  • API Key Integration: Utilize your API key and Secret key to authenticate requests and ensure secure transactions. You can get your API key and secret key at MaxelPay.
  • Flexible Payload Handling: Customize the payment request payload to include necessary transaction details.
  • Environment Support: Configure and switch between different environments (e.g., production, staging) to match your deployment needs. has context menu

INSTALLATION

  npm i maxelpaytest-js

HOW TO USE

ENV Keys

 Copy and paste given keys in your .env file. You can get api key and secret key from https://dashboard.maxelpay.com/developers

  maxelpay_api_key = '' // API Key
  maxelpay_secret_key = '' // Secret Key
  maxelpay_environment = 'stg' // update to 'prod' for live integration.
 

Example

const dotenv = require('dotenv'); // Require this package in back-end if you want to use env file.
const maxelpayCheckout = require('maxelpaytest-js');

dotenv.config(); //If we use in back-end and dotenv package is used we will use dotennv.config for env variables usuage

const payload = {
    "orderID": "113099", //unique id
    "amount": "100",
    "currency": "USD", // supported currencies - https://dashboard.maxelpay.com/documentation/integration
    "timestamp": "1717651675", //current unix timestamp
    "userEmail": "[email protected]",
    "userName": "John Doe",
    "redirectUrl": "https://example.com/checkout/order-received/113099/", // after order completion user will redirect to this url
    "websiteUrl": "https://example.com",
    "cancelUrl": "https://example.com/cancel", // after cancel order user will redirect to this url
    "siteName": "your site name",
    "webhookUrl": "https://example.com/validate_order_status" // mention webhook url to listed order statuses from maxelpay.
};

maxelpayCheckout(payload, process.env.maxelpay_api_key, process.env.maxelpay_secret_key, process.env.maxelpay_environment)
    .then(maxelcheckouturl => {
        console.log('url:', maxelcheckouturl);//user will get the url link
    })
    .catch(error => {
        console.error('Error:', error);
    });