Compare commits
3 Commits
v0.1.0-dev
...
v0.1.0-dev
Author | SHA1 | Date |
---|---|---|
semantic-release-bot | 03fe02cd09 | |
Derrick Hammer | 816bd93e80 | |
Derrick Hammer | baa9562749 |
|
@ -1,3 +1,10 @@
|
||||||
|
# [0.1.0-develop.27](https://git.lumeweb.com/LumeWeb/libethsync/compare/v0.1.0-develop.26...v0.1.0-develop.27) (2023-07-12)
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* fix import ([baa9562](https://git.lumeweb.com/LumeWeb/libethsync/commit/baa9562749e34db490997b62f5a8f370b355945c))
|
||||||
|
|
||||||
# [0.1.0-develop.26](https://git.lumeweb.com/LumeWeb/libethsync/compare/v0.1.0-develop.25...v0.1.0-develop.26) (2023-07-12)
|
# [0.1.0-develop.26](https://git.lumeweb.com/LumeWeb/libethsync/compare/v0.1.0-develop.25...v0.1.0-develop.26) (2023-07-12)
|
||||||
|
|
||||||
# [0.1.0-develop.25](https://git.lumeweb.com/LumeWeb/libethsync/compare/v0.1.0-develop.24...v0.1.0-develop.25) (2023-07-12)
|
# [0.1.0-develop.25](https://git.lumeweb.com/LumeWeb/libethsync/compare/v0.1.0-develop.24...v0.1.0-develop.25) (2023-07-12)
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "@lumeweb/libethclient",
|
"name": "@lumeweb/libethclient",
|
||||||
"version": "0.1.0-develop.26",
|
"version": "0.1.0-develop.27",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "@lumeweb/libethclient",
|
"name": "@lumeweb/libethclient",
|
||||||
"version": "0.1.0-develop.26",
|
"version": "0.1.0-develop.27",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@chainsafe/as-sha256": "^0.3.1",
|
"@chainsafe/as-sha256": "^0.3.1",
|
||||||
"@chainsafe/bls": "7.1.1",
|
"@chainsafe/bls": "7.1.1",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@lumeweb/libethsync",
|
"name": "@lumeweb/libethsync",
|
||||||
"version": "0.1.0-develop.26",
|
"version": "0.1.0-develop.27",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
|
|
@ -3,13 +3,13 @@ import { POLLING_DELAY } from "#constants.js";
|
||||||
import {
|
import {
|
||||||
computeSyncPeriodAtSlot,
|
computeSyncPeriodAtSlot,
|
||||||
getCurrentSlot,
|
getCurrentSlot,
|
||||||
|
deserializeSyncCommittee,
|
||||||
} from "@lodestar/light-client/utils";
|
} from "@lodestar/light-client/utils";
|
||||||
import { init } from "@chainsafe/bls/switchable";
|
import { init } from "@chainsafe/bls/switchable";
|
||||||
import { Mutex } from "async-mutex";
|
import { Mutex } from "async-mutex";
|
||||||
import { fromHexString, toHexString } from "@chainsafe/ssz";
|
import { fromHexString, toHexString } from "@chainsafe/ssz";
|
||||||
import { deserializePubkeys, getDefaultClientConfig } from "#util.js";
|
import { deserializePubkeys, getDefaultClientConfig } from "#util.js";
|
||||||
import { capella, LightClientUpdate } from "#types.js";
|
import { capella, LightClientUpdate } from "#types.js";
|
||||||
import { deserializeSyncCommittee } from "@lodestar/light-client/utils/index.js";
|
|
||||||
import bls from "@chainsafe/bls/switchable.js";
|
import bls from "@chainsafe/bls/switchable.js";
|
||||||
import { assertValidLightClientUpdate } from "@lodestar/light-client/validation.js";
|
import { assertValidLightClientUpdate } from "@lodestar/light-client/validation.js";
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue