Simplify your communication with the Memento Payments Platform.
npm i mpp-sdk
<script src="https://unpkg.com/mpp-sdk/dist/mpp.bundle.min.js"></script>
import { MPPSDK } from "mpp-sdk";
const config = {
host: "API_URL",
projectId: "YOUR_PROJECT_ID_HERE",
};
const mpp = new MPPSDK(config);
<script>
const mpp = new MPPSDK.MPPSDK(config);
// ...
</script>