📦 Установка
$ npm install football-coin-api
🚀 Использование
const { FootballCoinApi } = require('football-coin-api')
const api = new FootballCoinApi({ key: 'YOUR_TOKEN', merchantId: 'YOUR_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] });
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);
})();