
Research
2025 Report: Destructive Malware in Open Source Packages
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.
@coolwallet/eth
Advanced tools
Ethereum API of CoolWallet.
npm install @coolwallet/eth
import cwsETH from '@coolwallet/eth'
const ETH = new cwsETH(transport, appPrivateKey, appId)
Get address by address index.
const address = await ETH.getAddress(0)
The address generated is compatible to BIP44 with account and change set to 0, which means calling getAddress(i) will get the address of folllowing BIP44 path:
m/44'/60'/0'/0/{i}
In the design of current hardware, we only support path m/44'/60'/0'/0/{i} for speed optimization. This might change in the future and we will then open a more general interface to deal with custom path.
Sign Ethereum Transaction. If the transaction has non-empty data field, the card will display SMART instead of transfering amount.
const tx = {
nonce: "0x21d",
gasPrice: "0x59682f00",
gasLimit: "0x5208",
to: "0x81bb32e4A7e4d0500d11A52F3a5F60c9A6Ef126C",
value: "0x5af3107a4000",
data: "0x00",
chainId: 1
}
// sign with address index 0
const signedTx = await ETH.signTransaction(tx, 0)
Perform ethereum personal_sign.
const message = 'custom message';
const signature = await ETH.signMessage(message, 0)
FAQs
Coolwallet Ethereum sdk
The npm package @coolwallet/eth receives a total of 7 weekly downloads. As such, @coolwallet/eth popularity was classified as not popular.
We found that @coolwallet/eth 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
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.

Research
/Security News
A five-month operation turned 27 npm packages into durable hosting for browser-run lures that mimic document-sharing portals and Microsoft sign-in, targeting 25 organizations across manufacturing, industrial automation, plastics, and healthcare for credential theft.