
Research
/Security News
Toptal’s GitHub Organization Hijacked: 10 Malicious Packages Published
Threat actors hijacked Toptal’s GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.
A complete TypeScript library for connecting to and making transactions on different blockchains
A comprehensive TypeScript cryptocurrency framework for connecting to and executing transactions on multiple blockchains. Your private keys remain securely on your device, and all transaction signing is handled offline to ensure the highest level of security.
Bitcoin • Ethereum • Bnb • Dogecoin • Avalanche • Litecoin • Bitcoin Cash • Polygon • Arbitrum • Fantom • Base • Bitcoin Testnet
npm i chaingate
Get your API key now for free at https://chaingate.dev
Uint8Array
)Warning
Use of this blockchain library is at your own risk. There are no warranties or liabilities assumed, and data accuracy is not guaranteed.
import { initializeWallet } from 'chaingate'
// Create a new wallet
const { wallet, phrase } = await initializeWallet.create({
apiKey: 'YOUR_API_KEY'
})
// Access Bitcoin functionality
const bitcoin = wallet.currency('bitcoin')
console.log('BTC Address:', await bitcoin.getAddress())
// Check balance
const balance = await bitcoin.getBalance()
console.log('Balance:', balance.confirmed.baseAmount.str)
// Example transaction (see docs for full implementation)
const recipient = 'bc1q...'
const amount = await bitcoin.amount('0.001', 'btc')
const transfer = await bitcoin.createTransfer(recipient, amount)
const fees = await transfer.getSuggestedFees()
if (fees.normal.enoughFunds) {
const txId = await transfer.broadcast('normal')
console.log('Transaction ID:', txId)
}
For advanced usage, multichain operations, and API reference, visit the official documentation at docs.chaingate.dev.
FAQs
A complete TypeScript library for connecting to and making transactions on different blockchains
The npm package chaingate receives a total of 63,005 weekly downloads. As such, chaingate popularity was classified as popular.
We found that chaingate demonstrated a healthy version release cadence and project activity because the last version was released less than 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.
Research
/Security News
Threat actors hijacked Toptal’s GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.
Research
/Security News
Socket researchers investigate 4 malicious npm and PyPI packages with 56,000+ downloads that install surveillance malware.
Security News
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.