You're Invited: Meet the Socket team at BSidesSF and RSAC - April 27 - May 1.RSVP
Socket
Sign inDemoInstall
Socket

@layerzerolabs/evm-sdks-core

Package Overview
Dependencies
Maintainers
1
Versions
221
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@layerzerolabs/evm-sdks-core

3.0.88
latest
npm
Version published
Weekly downloads
2.7K
-20.31%
Maintainers
1
Weekly downloads
 
Created
Source

@layerzerolabs/evm-sdks-core

The EVM SDKs Core package provides essential utilities and tools for interacting with EVM-compatible blockchains. It includes functions for contract error parsing.

Features

  • Error Parsing: Parse contract errors and convert them into easy-to-read and structured data.

Installation

To install the EVM SDKs Core package, you can use npm or yarn:

npm install @layerzerolabs/evm-sdks-core

or

yarn add @layerzerolabs/evm-sdks-core

Usage

Error Parsing

import { LayerZeroErrorParser, Abi } from "@layerzerolabs/evm-sdks-core";
import { EndpointV2__factory } from "@layerzerolabs/lz-evm-sdk-v2";

const abi: Abi = Endpoint__factory.createInterface();
const parser = new LayerZeroErrorParser(abi);

const errorData = "..."; // Error data string
const parsedError = parser.parse(errorData);

if (parsedError) {
  console.log(`Error: ${parsedError.message}`);
}

FAQs

Package last updated on 15 Apr 2025

Did you know?

Socket

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.

Install

Related posts