Socket
Socket
Sign inDemoInstall

at.cryptobot.sdk

Package Overview
Dependencies
0
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    at.cryptobot.sdk

A SDK for telegram @cryptobot API


Version published
Weekly downloads
2
decreased by-89.47%
Maintainers
1
Install size
8.12 kB
Created
Weekly downloads
 

Readme

Source

CryptoBot SDK

This package provide SDK for working with telegram @CryptoBot in TypeScript

Usage

Creating invoice

import { CryptoBot, CRYPTOBOT_TEST_NETWORK } from "at.cryptobot.sdk";

if(!process.env.CRYPTOBOT_TOKEN){
    throw new Error("CRYPTOBOT_TOKEN is not set");
}

const cryptoBot = new CryptoBot({
    apiToken: process.env.CRYPTOBOT_TOKEN,
    // apiUrl: CRYPTOBOT_TEST_NETWORK
});

const invoice = cryptoBot.createInvoice({
    currency_type: "fiat",
    fiat: "UAH",
    amount: "500.25",
    description: "My new product x1",
});

Checking webhook

import { CryptoBot, type WebhookUpdate } from "at.cryptobot.sdk";
import express, { type Express, type Request, type Response } from "express";

const app: Express = express();

app.post(`/webhook/cryptobot/${process.env.CRYPTOBOT_TOKEN}`, async (req: Request, res: Response) => {
    const dataToCheck = {
        body: req.body,
        headers: req.headers as Record<string, string> // checkSignature function expect Record<string, string> for headers
    };

    // Check signature validity
    if(!cryptoBot.checkSignature(dataToCheck)){
        res.sendStatus(401);
    }

    // Get invoice data from body using WebhookUpdate type
    // More detail in cryptobot API
    // https://help.crypt.bot/crypto-pay-api#webhooks
    const invoiceData = (body as WebhookUpdate).payload;

    if(invoiceData.status === 'expired'){
        throw new WebhookExpireError();
    }

    if(invoiceData.status !== 'paid'){
        throw new UnknownWebhookStateError(invoiceData.status);
    }

    console.log('Successful payment');
    res.sendStatus(200);
})

app.listen(3000);

Keywords

FAQs

Last updated on 18 Mar 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc