Security News
Supply Chain Attack Detected in Solana's web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Модуль для удобного использования MathCoin API.
От AdepT-Hub с ❤.
$ npm install math-coin-api
const { MathCoinApi } = require('math-coin-api')
const api = new MathCoinApi({ token: 'YOUR_TOKEN', id: 'YOUR_ID' }) // Ваш токен и айди
// Получение баланса мерчанта
async function getMyBalance() {
const balance = await api.getMyBalance() // Получаем баланс
console.log(balance) // Выводим результат в консоль
}
getMyBalance() // Вызов функции
Параметры | Описание | Тип |
---|---|---|
user_id | Айди пользователя у которого нужно проверить баланс | Number |
// Получение баланса пользователей
async function getBalance() {
const user_id = 657023844 // Айди пользователя у которого нужно получить баланс
const userBalance = await api.getBalance({ user_id }) // Получаем балансы пользователей
console.log(userBalance) // Выводим результат в консоль
}
getBalance() // Вызов функции
// Получение истории переводов
async function getHistory() {
const history = await api.getHistory() // Получаем истоорию переводов
console.log(history) // Выводим результат в консоль
}
getHistory() // Вызов функции
Параметры | Описание | Тип |
---|---|---|
to_id | Айди пользователя которому нужно сделать перевод | Number |
amount | Сумма перевода (по дефолту 0.1) | Number |
//Перевод коинов пользователю
async function send() {
const send = await api.send({to_id: 626050539, amount: 1}) // Делаем перевод 1 коин
console.log(send) // Выводим результат в консоль
}
send() // Вызов функции
FAQs
Модуль для удобного использования MathCoin API
The npm package math-coin receives a total of 0 weekly downloads. As such, math-coin popularity was classified as not popular.
We found that math-coin demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.