
Product
Rust Support Now in Beta
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
@ganache/rlp
Advanced tools
@ganache/rlp
Recursive Length Prefix Encoding for Node.js.
Based on https://github.com/ethereumjs/rlp, with some additional optimizations for encoding:
function encodeRange<
T extends EncodingInput | Readonly<EncodingInput>,
Start extends RangeOf<T["length"]>
>(
items: T,
start: Start,
length: Exclude<Remainders<T["length"], Start>, 0>
): { length: number; output: Buffer[] } {
//...;
}
Begin RLP encoding of items
, from start
until length
. Call RLP.digest
to
finish encoding.
Returns an object containing the total length
of all data in the encoded parts,
and output
, an array of encoded Buffers.
function digest(ranges: Readonly<Buffer[]>[], length: number) {
// ...
}
Finishes encoding started by encodeRange
.
Returns a Buffer of encoded data.
Additional changes:
encode
encode
only accepts buffers or nested buffer arrays, strings, number, bigint,
and BN support have been removed.These changes enable encoding data in chunks, avoiding processing the same inputs multiple times in common scenarios withing Ganache. Example:
type EthereumRawTx = [
nonce: Buffer,
gasPrice: Buffer,
gas: Buffer,
to: Buffer,
value: Buffer,
data: Buffer,
v: Buffer,
r: Buffer,
s: Buffer
];
// encode the first 6 entries
const partialRlp = encodeRange(raw, 0, 6);
// encode the last 3 entires
const signature = encodeRange(raw, 6, 3);
// combine all entries
const serialized = digest(
[partialRlp.output, signature.output],
partialRlp.length + signature.length
);
return {
// computing the `from` address requires entries 0-6
from: computeFromAddress(partialRlp, v.toNumber(), raw, chainId),
// hash requires entries 0-9
hash: Data.from(keccak(serialized), 32),
// serialized uses all entries for storage/transmission
serialized
};
FAQs
Recursive Length Prefix Encoding Module
The npm package @ganache/rlp receives a total of 27,070 weekly downloads. As such, @ganache/rlp popularity was classified as popular.
We found that @ganache/rlp demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.