
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Typescript implementation of the SLIP-0032 extended serialization format for BIP-32 wallets
ts-slip32 is a typescript implementation of the SLIP-0032 extended serialization format for BIP-32 wallets.
From npm:
npm install slip32
From git:
git clone https://github.com/witnet/ts-slip32.git
cd ts-slip32
yarn
yarn build
The main two functions are described in slip32.d.ts
:
/**
* Import key from Slip32 format
* @param {string} slip32
* @returns {{keyPath: KeyPath; extendedKey: ExtendedKey<PrivateKey | PublicKey>}}
*/
export declare const importKeyFromSlip32: (slip32: string) => {
keyPath: number[];
extendedKey: ExtendedKey<PrivateKey | PublicKey>;
};
/**
* Export key to Slip32 format
* @param {KeyPath} keyPath
* @param {ExtendedKey<PrivateKey> | ExtendedKey<PublicKey>} extendedKey
* @returns {string}
*/
export declare const exportKeyToSlip32: (keyPath: number[], extendedKey: ExtendedKey<PrivateKey | PublicKey>) => string;
The aforementioned functions use the following interfaces and types, defined in keys.d.ts
:
/**
* Key interface
* The buffer should have a length of 32 bytes
*/
export interface Key {
bytes: Uint8Array;
}
/**
* Chain code (32 bytes)
*/
export declare type ChainCode = Uint8Array;
/**
* Private Key (33 bytes)
*/
export interface PrivateKey extends Key {
type: "private";
}
/**
* Public Key (33 bytes)
*/
export interface PublicKey extends Key {
type: "public";
}
/**
* Extended keys, as introduced by BIP-0032, pair a key with a chain code
*/
export declare type ExtendedKey<Key> = {
key: Key;
chainCode: ChainCode;
};
import * as Slip32 from "slip32"
const keyToImport = "xprv1qxqqqqqq78qr7hlewyyfzt74vasa87k63pu7g9e6hfzlzrdyh0v5k8zfw9sqpsyv7vcejeyzcpkm85jel7vmujlhpquzf4f3sh3nry0w0n4jh7t0jhc039"
// Import key as {keyPath: KeyPath, extendedKey: ExtendedKey<PrivateKey | PublicKey>}
const importedKey = Slip32.importKeyFromSlip32(keyToImport)
// Export key as string
const exportedKey = Slip32.exportKeyToSlip32(importedKey.keyPath, importedKey.extendedKey)
This library is free and open-source software released under the MIT license.
FAQs
Typescript implementation of the SLIP-0032 extended serialization format for BIP-32 wallets
The npm package slip32 receives a total of 7 weekly downloads. As such, slip32 popularity was classified as not popular.
We found that slip32 demonstrated a not healthy version release cadence and project activity because the last version was released 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.