
Security News
The Next Open Source Security Race: Triage at Machine Speed
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.
@coolwallets/web3-subprovider
Advanced tools
Create a HookedWalletSubprovider for CoolWalletS.
This provider opens up CoolWalletS Connect as a service bridge to handle transaction signing.
// Starting web3 engine with CoolWallet Subprovider
import Web3 from 'web3'
import CoolWalletSubProvider from '@coolwallets/web3-subprovider'
import ProviderEngine from 'web3-provider-engine'
import RpcSubprovider from 'web3-provider-engine/subproviders/rpc'
const engine = new ProviderEngine()
const rpcUrl = 'https://mainnet.infura.io/v3/{your token}'
const options = {
accountsLength: 5,
accountsOffset: 0,
networkId: 1
}
const coolwallet = new CoolWalletSubProvider(options)
engine.addProvider(coolwallet)
engine.addProvider(new RpcSubprovider({ rpcUrl }))
engine.start()
const web3 = new Web3(engine);
// Sign Transaction
function handleSignTransaction () {
const tx = {
"from": from,
"nonce": "0x3b",
"gasPrice": "0xe8754700",
"gasLimit": "0x520c",
"to": "0x81bb32e4A7e4d0500d11A52F3a5F60c9A6Ef126C",
"value": "0x2386f26fc10000",
}
web3.eth.signTransaction(tx,(error, signed)=>{
if(signed) {
web3.eth.sendSignedTransaction(signed.raw, (err, hash)=>{
if(hash) console.log(`tx hash: ${hash}`)
})
}
})
}
FAQs
Web3 wrapper on coolwalletS sdk
We found that @coolwallets/web3-subprovider demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers 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
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.

Research
/Security News
Malicious dYdX client packages were published to npm and PyPI after a maintainer compromise, enabling wallet credential theft and remote code execution.

Security News
gem.coop is testing registry-level dependency cooldowns to limit exposure during the brief window when malicious gems are most likely to spread.