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

football-coin-api

Package Overview
Dependencies
Maintainers
0
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

football-coin-api

Модуль для удобного использования Football Coin API

  • 1.0.1
  • latest
  • npm
  • Socket score

Version published
Maintainers
0
Created
Source

NPM version NPM downloads

Модуль для удобного использования Football Coin API.

От AdepT-Hub с ❤.

📦 Установка

$ npm install football-coin-api

🚀 Использование

const { FootballCoinApi } = require('football-coin-api')
const api = new FootballCoinApi({ key: 'YOUR_TOKEN', merchantId: 'YOUR_ID' }) // Ваш токен и ID ВК

// Проверка доступа
;(async function() {
    const ping = await api.ping();
    console.log(ping); // Выводим результат в консоль
})();

📄 Получение 100 последних транзакций

;(async function() {
    const tx = await api.tx();
    console.log(tx); // Выводим результат в консоль
})();

💳 Перевод коинов

;(async function() {
    const send = await api.send({ toId: 'ID', amount: 'Сумма перевода' });
    console.log(send); // Выводим результат в консоль
})();

📄 Проверка до 100 балансов

;(async function() {
    const score = await api.score({ userIds: [USER_ID] }); // Обязательно Array
    console.log(score); // Выводим результат в консоль
})();

Установка callback сервера

;(async function() {
    const setCallback = await api.setCallback({ callback: `https://my-site.com/` });
    console.log(setCallback); // Выводим результат в консоль
})();

Получить текущий курс TON и FC

;(async function() {
    const price = await api.price();
    console.log(price); // Выводим результат в консоль
})();

Keywords

FAQs

Package last updated on 08 Aug 2024

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