Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
@lightclients/patronum
Advanced tools
Patronum: Ethereum RPC proxy that verifies RPC responses against given trusted block hashes
Ethereum RPC proxy that verifies RPC responses against given trusted block hashes. Currently, most of the DAPPs and Wallets interact with Ethereum over RPC. Patronum can be used as a building block to build light clients that retrofit into the existing Ethereum infrastructure. This library mainly takes advantage of the eth_getProof
RPC to perform merkle inclusion proofs for RPC call verification.
import { VerifyingProvider, startServer } from 'patronum';
const provider = await VerifyingProvider.create(
trustlessRPCURL,
trustedBlockNumber,
trustedBlockHash,
);
await startServer(provider, PORT);
import { VerifyingProvider } from 'patronum';
const provider = await VerifyingProvider.create(
trustlessRPCURL,
trustedBlockNumber,
trustedBlockHash,
);
console.log(await provider.getBalance(address, blockTag));
console.log(await provider.call(tx));
The RPC URL provided to VerifyingProvider should support eth_getProof
and eth_createAccessList
. Infura doesn't support eth_createAccessList
.
FAQs
Patronum: Ethereum RPC proxy that verifies RPC responses against given trusted block hashes
We found that @lightclients/patronum demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.