Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
code.dumpstack.io/lib/cryptocurrency
Stateless cryptocurrency API.
Requirements:
export INFURA_API_KEY=...
from infura.io (it's free). It'll work even without, but there are some limits on queries.Start:
go get -u code.dumpstack.io/lib/cryptocurrency
go test -v code.dumpstack.io/lib/cryptocurrency/...
Usage:
package main
import (
"log"
"code.dumpstack.io/lib/cryptocurrency"
)
func main() {
c := cryptocurrency.Bitcoin
dest := "mk84dHbQoUHWaWGuYspx6GXWgcjB9CuQqw"
// c := cryptocurrency.Ethereum
// dest := "0xD98660C76443A8A043a19499048EeC4FB06f2581"
// c := cryptocurrency.Cardano
// dest := "Ae2tdPwUPEZ68cfEjZjKKRabiqbazMtP69uGaM2pMZRg87fvn4FGvR95BEV"
err := c.Testnet(true)
if err != nil {
log.Fatal(err)
}
seed, address, err := c.GenWallet()
if err != nil {
log.Fatal(err)
}
log.Println(seed, address)
balance, err := c.Balance(seed)
log.Println(balance)
if err != nil {
log.Fatal(err)
}
valid, err := c.Validate(dest)
if err != nil {
log.Fatal(err)
}
if valid {
log.Println("address", dest, "is valid")
} else {
log.Fatal("address", dest, "is invalid")
}
amount := float64(0.1)
tx, err := c.Send(seed, dest, amount)
// tx, err := c.SendUnits(seed, dest, wei) // precise version
if err != nil {
log.Println("here it'll exit because there's no money inside new wallet")
log.Fatal(err)
}
log.Println(tx)
}
FAQs
Unknown package
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
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.