Socket
Socket
Sign inDemoInstall

@chainsafe/lodestar-types

Package Overview
Dependencies
Maintainers
4
Versions
840
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@chainsafe/lodestar-types

Typescript types required for lodestar


Version published
Weekly downloads
9.7K
decreased by-11.31%
Maintainers
4
Weekly downloads
 
Install size
Created

Readme

Source

lodestar-types

npm License ETH2.0_Spec_Version 0.12.1 ES Version Node Version

This package is part of ChainSafe's Lodestar project

Typescript and SSZ types for Eth2 datastructures

Usage

Using the typescript types
import {BeaconState} from "@chainsafe/lodestar-types";

const b: BeaconState = {
  slot: 5,
  ...
};
Using the ssz types
// mainnet and minimal types pre-generated under non-default export
import {types as mainnetTypes} from "@chainsafe/lodestar-types/lib/ssz/presets/mainnet";
import {types as minimalTypes} from "@chainsafe/lodestar-types/lib/ssz/presets/mainnet";

mainnetTypes.BeaconState.defaultValue();
minimalTypes.BeaconState.defaultValue();

...

// create your own IBeaconSSZTypes object from an IBeaconParams
import {createIBeaconSSZTypes} from "@chainsafe/lodestar-types";
import {IBeaconParams} from "@chainsafe/lodestar-params";
const testnetParams: IBeaconParams = {
  ...
};

const testnetTypes = createIBeaconSSZTypes(testnetParams);

testnetTypes.BeaconState.defaultValue();

License

Apache-2.0 ChainSafe Systems

Keywords

FAQs

Package last updated on 02 Feb 2021

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc