@layerzerolabs/devtools-cli
TypeScript icon, indicating that this package has built-in type declarations

0.0.5 • Public • Published

LayerZero

@layerzerolabs/devtools-cli

NPM Version Downloads NPM License

LayerZero devtools CLI Static Badge

This package provides a network-agnostic CLI interface for configuring LayerZero OApp contracts.


Please note that this package is in a beta state and backwards-incompatible changes might be introduced in future releases. The functionality is not yet on par with @layerzerolabs/toolbox-hardhat. While we strive to comply to semver, we can not guarantee to avoid breaking changes in minor releases.


Quick start

Installation

The CLI is distributed as an NPM package, we recommend the following ways of running it:

npx @layerzerolabs/devtools-cli@latest
# or
yarn @layerzerolabs/devtools-cli
# or
pnpm @layerzerolabs/devtools-cli
# or
bunx @layerzerolabs/devtools-cli

Configuration

The configuration of the CLI consists of two parts:

  • OApp configuration that describes the desired state of your OApp (typically called layerzero.config.ts)
  • CLI setup that creates the necessary functionality for the CLI to run - SDKs, configuration functions, signing functions (typically called layerzero.setup.ts)

The main difference between this CLI and @layerzerolabs/toolbox-hardhat is the layerzero.setup.ts file. While in @layerzerolabs/toolbox-hardhat lot of the functionality can be inferred based on hardhat, it is not possible to infer this functionality in a generic CLI environment.

CLI setup

The following is an example of a setup file that loads the EVM functionality based on hardhat.

import {
  createConnectedContractFactory,
  createSignerFactory,
  createDefaultContext,
} from "@layerzerolabs/devtools-evm-hardhat";
import { createOAppFactory } from "@layerzerolabs/ua-devtools-evm";

import type { CLISetup } from "@layerzerolabs/devtools-cli";

/**
 * Since we are not in hardhat CLI, we'll need to create the context first
 */
createDefaultContext();

/**
 * This is a setup file for @layerzerolabs/devtools-cli.
 *
 * At the moment, @layerzerolabs/devtools-cli is in development
 * and will be available
 */
const setup: CLISetup = {
  createSdk: createOAppFactory(createConnectedContractFactory()),
  createSigner: createSignerFactory(),
};

export default setup;

Readme

Keywords

Package Sidebar

Install

npm i @layerzerolabs/devtools-cli

Weekly Downloads

5

Version

0.0.5

License

MIT

Unpacked Size

2.56 MB

Total Files

10

Last publish

Collaborators

  • layerzero-bot