
Product
Introducing Tier 1 Reachability: Precision CVE Triage for Enterprise Teams
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
@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
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.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
Research
/Security News
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.