
Security News
npm Adopts OIDC for Trusted Publishing in CI/CD Workflows
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
@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.
Security News
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.