Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

qiwi-sdk

Package Overview
Dependencies
Maintainers
1
Versions
95
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

qiwi-sdk

Promise based QIWI API client

  • 1.0.0
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

NodeJS QIWI SDK

Это полностью типизированная реализация клиента API Киви Банка

Документация

В коде довфига комментариев, взятых из официального описания API, поэтому если у вас VSCode или WebStorm, которые умеют их подгружать как подсказки в коде, проблем не должно возникнуть.

@todo Нормальные доки потом напишу

Примеры

Получение информации о владельце кошелька

const QIWI = require('qiwi-sdk');

const qp = new QIWI.Personal(process.env.QIWI_TOKEN);

qp.getPersonProfile()
  .then(console.log);

// => { contractInfo: {...}, authInfo: {...}, userInfo: {...} }

Как слить баланс кошелька

const QIWI = require('qiwi-sdk');

const qp = new QIWI.Personal(process.env.QIWI_TOKEN);
const receiver = "+79123456789";
const provider = 99;

async function main() {
  const profile = await qp.getPersonProfile();
  const wallet = profile.authInfo.personId;
  const {accounts} = await qp.getAccounts(wallet);

  const rubleAccount = accounts.find(
    acc => acc.balance &&
      acc.balance.currency === QIWI.Personal.Currency.RUB
  );

  const commission = await qp.getCommission(
    provider,
    receiver,
    rubleAccount.balance.amount
  );

  const totalToSteal = parseFloat(
    (rubleAccount.balance.amount - balance).toFixed(2)
  );

  const payment = await qp.pay(
    provider,
    receiver,
    totalToSteal
  );

  console.log(payment);
}

main();

Создание пары ключей для взаимодействия с P2P

const QIWI = require('qiwi-sdk');

const qp = new QIWI.Personal(process.env.QIWI_TOKEN);

async function main() {
  const profile = await qp.getPersonProfile();
  const wallet = profile.authInfo.personId;

  const [pk, sk] = await qp.createP2PKeyPair('My super name');

  // Да, они инвертированы в порядке,
  // так как PublicKey не всегда нужен
  const p2pc = new QIWI.P2P(sk, pk);

  const bill = await p2pc.createBill({
    amount: {
      value: 1000,
      currency: QIWI.P2P.Currency.RUB
    },
    expirationDateTime: QIWI.P2P.formatLifetime(2 /* 2 дня */),
    comment: "Создание сайта pornhub.com"
  });

  console.log(bill.payUrl);

}

main();

Keywords

FAQs

Package last updated on 18 Oct 2020

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc