Package Exports
- @lit-protocol/core
- @lit-protocol/core/src/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@lit-protocol/core) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Core
This package provides foundational utilities and interfaces that power the core functionalities of the Lit Protocol SDK. It includes essential data structures, business logic, and shared configurations that other packages build upon.
Installation
yarn add @lit-protocol/core
Quick Start
import { LitCore } from '@lit-protocol/core';
// Initialize core functionality
const litCore = new LitCore();
// Use core utilities
await litCore.connect();
Key Features
- Core data structures and interfaces
- Shared configurations and constants
- Base classes for Lit Protocol functionality
- Essential utility functions
- Type definitions for core components
Building
Run nx build core
to build the library.
Testing
Run nx test core
to execute the unit tests via Jest.