Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More

@layerzerolabs/evm-sdks-core

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@layerzerolabs/evm-sdks-core

  • 3.0.39-ton.1
  • dev
  • npm
  • Socket score

Version published
Weekly downloads
4.1K
increased by15.09%
Maintainers
1
Weekly downloads
 
Created

@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 09 Jan 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