2.0.8 • Published 2 months ago

@code-wallet/client v2.0.8

Weekly downloads
-
License
MIT
Repository
github
Last release
2 months ago

npm npm-downloads

@code-wallet/client

This module provides a seamless way to create a payment intent and verify payments directly from your server or client application. Whether you're building a web application or a server-side system, this module offers the tools you need to integrate with Code Wallet effectively.

Learn more about Code at https://getcode.com. See the docs for more information.

Features

  • Server and Client Compatibility: Designed for use both in browser environments and Node.js.
  • Payment Intent Creation: Easily create payment intents for processing transactions.
  • Payment Verification: Verify payments directly from your server to ensure they are completed successfully.

Installation

npm install @code-wallet/client

Usage

Creating a Payment Intent

import { paymentIntents } from "@code-wallet/client";

const options = {
    // ... your payment intent options here ...
};

const intent = await paymentIntents.create(options);
console.log(intent.clientSecret); // Use this client secret in your application

Verifying a Payment Intent

import { paymentIntents } from "@code-wallet/client";

const options = {
    intent: "YOUR_INTENT_ID"
};

const status = await paymentIntents.getStatus(options);
console.log(status); // Either 'pending' or 'confirmed'

Need Help?

If you have any questions or need help integrating Code into your website or application, please reach out to us on Discord or Twitter.

2.0.8

2 months ago

2.0.7

4 months ago

2.0.5

4 months ago

2.0.4

4 months ago

2.0.6

4 months ago

2.0.3

4 months ago

2.0.2

4 months ago

2.0.1

4 months ago

2.0.0

4 months ago

1.3.1

4 months ago

1.1.1

4 months ago

1.1.2

4 months ago

1.1.0

4 months ago

1.0.4

6 months ago

1.0.3

7 months ago

1.0.2

7 months ago

1.0.1

8 months ago

1.0.0

8 months ago