Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
@layerzerolabs/lz-foundation
Advanced tools
The LayerZero Foundation package provides essential functions and interfaces for chain interoperability. It includes utilities for signing, hashing, and managing key pairs.
To install the LayerZero Foundation package, you can use npm or yarn:
npm install @layerzerolabs/lz-foundation
or
yarn add @layerzerolabs/lz-foundation
Gets the human-readable address.
import { aptos } from "@layerzerolabs/lz-foundation"
const address = "0x1234567890abcdef1234567890abcdef12345678"
const addr = aptos.Address.from(address)
const hr = addr.hr()
console.log(`human-readable address: ${hr}`)
Encodes a string or Uint8Array to a base58 string.
import { base58 } from "@layerzerolabs/lz-foundation"
const msg = "hello"
const encode = base58.encode(msg)
console.log(`base58 encoded message: ${encode}`)
Computes the Keccak-256 hash of the given message.
import { keccak_256 } from "@layerzerolabs/lz-foundation"
const message = "Hello, world!"
const hash = keccak_256(message)
console.log(`Keccak-256 Hash: ${Buffer.from(hash).toString("hex")}`)
Signs a hash using the specified signing algorithm.
import { signHash, SignAlgorithm } from "@layerzerolabs/lz-foundation"
const hash = new Uint8Array(32) // Example hash
const privateKey = "0xYourPrivateKey"
const algorithm = SignAlgorithm.SECP256K1
signHash(hash, privateKey, algorithm).then((signature) => {
console.log(`Signature: ${Buffer.from(signature).toString("hex")}`)
})
Interface representing a key pair consisting of a private key and a public key.
import { KeyPair } from "@layerzerolabs/lz-foundation"
const keyPair: KeyPair = {
privateKey: new Uint8Array(32), // Example private key
publicKey: new Uint8Array(32), // Example public key
}
console.log(`Private Key: ${Buffer.from(keyPair.privateKey).toString("hex")}`)
console.log(`Public Key: ${Buffer.from(keyPair.publicKey).toString("hex")}`)
FAQs
LayerZero Core Library
The npm package @layerzerolabs/lz-foundation receives a total of 1,821 weekly downloads. As such, @layerzerolabs/lz-foundation popularity was classified as popular.
We found that @layerzerolabs/lz-foundation 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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.