This commit is contained in:
Cayman
2022-10-19 09:46:10 -05:00
parent 90a92dd74f
commit 00a01e2f2d
15 changed files with 70 additions and 70 deletions

View File

@@ -4,7 +4,7 @@
],
"npmClient": "yarn",
"useWorkspaces": true,
"version": "1.1.0",
"version": "1.1.1",
"stream": "true",
"command": {
"version": {

View File

@@ -11,7 +11,7 @@
"bugs": {
"url": "https://github.com/ChainSafe/lodestar/issues"
},
"version": "1.1.0",
"version": "1.1.1",
"type": "module",
"exports": {
".": {
@@ -70,10 +70,10 @@
"dependencies": {
"@chainsafe/persistent-merkle-tree": "^0.4.2",
"@chainsafe/ssz": "^0.9.2",
"@lodestar/config": "^1.1.0",
"@lodestar/params": "^1.1.0",
"@lodestar/types": "^1.1.0",
"@lodestar/utils": "^1.1.0",
"@lodestar/config": "^1.1.1",
"@lodestar/params": "^1.1.1",
"@lodestar/types": "^1.1.1",
"@lodestar/utils": "^1.1.1",
"cross-fetch": "^3.1.4",
"eventsource": "^2.0.2",
"qs": "^6.10.1"

View File

@@ -11,7 +11,7 @@
"bugs": {
"url": "https://github.com/ChainSafe/lodestar/issues"
},
"version": "1.1.0",
"version": "1.1.1",
"type": "module",
"exports": {
".": {
@@ -108,16 +108,16 @@
"@chainsafe/ssz": "^0.9.2",
"@chainsafe/threads": "^1.10.0",
"@ethersproject/abi": "^5.0.0",
"@lodestar/api": "^1.1.0",
"@lodestar/config": "^1.1.0",
"@lodestar/db": "^1.1.0",
"@lodestar/fork-choice": "^1.1.0",
"@lodestar/light-client": "^1.1.0",
"@lodestar/params": "^1.1.0",
"@lodestar/state-transition": "^1.1.0",
"@lodestar/types": "^1.1.0",
"@lodestar/utils": "^1.1.0",
"@lodestar/validator": "^1.1.0",
"@lodestar/api": "^1.1.1",
"@lodestar/config": "^1.1.1",
"@lodestar/db": "^1.1.1",
"@lodestar/fork-choice": "^1.1.1",
"@lodestar/light-client": "^1.1.1",
"@lodestar/params": "^1.1.1",
"@lodestar/state-transition": "^1.1.1",
"@lodestar/types": "^1.1.1",
"@lodestar/utils": "^1.1.1",
"@lodestar/validator": "^1.1.1",
"@types/datastore-level": "^3.0.0",
"bl": "^5.0.0",
"buffer-xor": "^2.0.2",

View File

@@ -1,6 +1,6 @@
{
"name": "@chainsafe/lodestar",
"version": "1.1.0",
"version": "1.1.1",
"description": "Command line interface for lodestar",
"author": "ChainSafe Systems",
"license": "LGPL-3.0",
@@ -56,16 +56,16 @@
"@chainsafe/blst": "^0.2.4",
"@chainsafe/discv5": "^0.7.1",
"@chainsafe/ssz": "^0.9.2",
"@lodestar/api": "^1.1.0",
"@lodestar/beacon-node": "^1.1.0",
"@lodestar/config": "^1.1.0",
"@lodestar/db": "^1.1.0",
"@lodestar/light-client": "^1.1.0",
"@lodestar/params": "^1.1.0",
"@lodestar/state-transition": "^1.1.0",
"@lodestar/types": "^1.1.0",
"@lodestar/utils": "^1.1.0",
"@lodestar/validator": "^1.1.0",
"@lodestar/api": "^1.1.1",
"@lodestar/beacon-node": "^1.1.1",
"@lodestar/config": "^1.1.1",
"@lodestar/db": "^1.1.1",
"@lodestar/light-client": "^1.1.1",
"@lodestar/params": "^1.1.1",
"@lodestar/state-transition": "^1.1.1",
"@lodestar/types": "^1.1.1",
"@lodestar/utils": "^1.1.1",
"@lodestar/validator": "^1.1.1",
"@types/lockfile": "^1.0.1",
"bip39": "^3.0.2",
"deepmerge": "^4.2.2",

View File

@@ -1,6 +1,6 @@
{
"name": "@lodestar/config",
"version": "1.1.0",
"version": "1.1.1",
"description": "Chain configuration required for lodestar",
"author": "ChainSafe Systems",
"license": "Apache-2.0",
@@ -66,7 +66,7 @@
],
"dependencies": {
"@chainsafe/ssz": "^0.9.2",
"@lodestar/params": "^1.1.0",
"@lodestar/types": "^1.1.0"
"@lodestar/params": "^1.1.1",
"@lodestar/types": "^1.1.1"
}
}

View File

@@ -1,6 +1,6 @@
{
"name": "@lodestar/db",
"version": "1.1.0",
"version": "1.1.1",
"description": "DB modules of Lodestar",
"author": "ChainSafe Systems",
"homepage": "https://github.com/ChainSafe/lodestar#readme",
@@ -39,8 +39,8 @@
},
"dependencies": {
"@chainsafe/ssz": "^0.9.2",
"@lodestar/config": "^1.1.0",
"@lodestar/utils": "^1.1.0",
"@lodestar/config": "^1.1.1",
"@lodestar/utils": "^1.1.1",
"@types/levelup": "^4.3.3",
"it-all": "^1.0.2",
"level": "^7.0.0",

View File

@@ -1,6 +1,6 @@
{
"name": "@lodestar/flare",
"version": "1.1.0",
"version": "1.1.1",
"description": "Beacon chain debugging tool",
"author": "ChainSafe Systems",
"license": "Apache-2.0",
@@ -59,10 +59,10 @@
"blockchain"
],
"dependencies": {
"@lodestar/api": "^1.1.0",
"@lodestar/config": "^1.1.0",
"@lodestar/state-transition": "^1.1.0",
"@lodestar/types": "^1.1.0",
"@lodestar/api": "^1.1.1",
"@lodestar/config": "^1.1.1",
"@lodestar/state-transition": "^1.1.1",
"@lodestar/types": "^1.1.1",
"source-map-support": "^0.5.19",
"yargs": "^16.1.0"
},

View File

@@ -11,7 +11,7 @@
"bugs": {
"url": "https://github.com/ChainSafe/lodestar/issues"
},
"version": "1.1.0",
"version": "1.1.1",
"type": "module",
"exports": "./lib/index.js",
"types": "./lib/index.d.ts",
@@ -40,11 +40,11 @@
},
"dependencies": {
"@chainsafe/ssz": "^0.9.2",
"@lodestar/config": "^1.1.0",
"@lodestar/params": "^1.1.0",
"@lodestar/state-transition": "^1.1.0",
"@lodestar/types": "^1.1.0",
"@lodestar/utils": "^1.1.0"
"@lodestar/config": "^1.1.1",
"@lodestar/params": "^1.1.1",
"@lodestar/state-transition": "^1.1.1",
"@lodestar/types": "^1.1.1",
"@lodestar/utils": "^1.1.1"
},
"keywords": [
"ethereum",

View File

@@ -11,7 +11,7 @@
"bugs": {
"url": "https://github.com/ChainSafe/lodestar/issues"
},
"version": "1.1.0",
"version": "1.1.1",
"type": "module",
"exports": {
".": {
@@ -60,11 +60,11 @@
"@chainsafe/bls": "7.1.1",
"@chainsafe/persistent-merkle-tree": "^0.4.2",
"@chainsafe/ssz": "^0.9.2",
"@lodestar/api": "^1.1.0",
"@lodestar/config": "^1.1.0",
"@lodestar/params": "^1.1.0",
"@lodestar/types": "^1.1.0",
"@lodestar/utils": "^1.1.0",
"@lodestar/api": "^1.1.1",
"@lodestar/config": "^1.1.1",
"@lodestar/params": "^1.1.1",
"@lodestar/types": "^1.1.1",
"@lodestar/utils": "^1.1.1",
"cross-fetch": "^3.1.4",
"mitt": "^3.0.0"
},

View File

@@ -1,6 +1,6 @@
{
"name": "@lodestar/params",
"version": "1.1.0",
"version": "1.1.1",
"description": "Chain parameters required for lodestar",
"author": "ChainSafe Systems",
"license": "Apache-2.0",

View File

@@ -1,6 +1,6 @@
{
"name": "@lodestar/spec-test-util",
"version": "1.1.0",
"version": "1.1.1",
"description": "Spec test suite generator from yaml test files",
"author": "ChainSafe Systems",
"license": "Apache-2.0",
@@ -46,7 +46,7 @@
"blockchain"
],
"dependencies": {
"@lodestar/utils": "^1.1.0",
"@lodestar/utils": "^1.1.1",
"async-retry": "^1.3.3",
"axios": "^0.21.0",
"chai": "^4.2.0",

View File

@@ -11,7 +11,7 @@
"bugs": {
"url": "https://github.com/ChainSafe/lodestar/issues"
},
"version": "1.1.0",
"version": "1.1.1",
"type": "module",
"exports": {
".": {
@@ -63,10 +63,10 @@
"@chainsafe/persistent-merkle-tree": "^0.4.2",
"@chainsafe/persistent-ts": "^0.19.1",
"@chainsafe/ssz": "^0.9.2",
"@lodestar/config": "^1.1.0",
"@lodestar/params": "^1.1.0",
"@lodestar/types": "^1.1.0",
"@lodestar/utils": "^1.1.0",
"@lodestar/config": "^1.1.1",
"@lodestar/params": "^1.1.1",
"@lodestar/types": "^1.1.1",
"@lodestar/utils": "^1.1.1",
"bigint-buffer": "^1.1.5",
"buffer-xor": "^2.0.2"
},

View File

@@ -11,7 +11,7 @@
"bugs": {
"url": "https://github.com/ChainSafe/lodestar/issues"
},
"version": "1.1.0",
"version": "1.1.1",
"type": "module",
"exports": {
".": {
@@ -63,7 +63,7 @@
"types": "lib/index.d.ts",
"dependencies": {
"@chainsafe/ssz": "^0.9.2",
"@lodestar/params": "^1.1.0"
"@lodestar/params": "^1.1.1"
},
"keywords": [
"ethereum",

View File

@@ -11,7 +11,7 @@
"bugs": {
"url": "https://github.com/ChainSafe/lodestar/issues"
},
"version": "1.1.0",
"version": "1.1.1",
"type": "module",
"exports": "./lib/index.js",
"files": [

View File

@@ -1,6 +1,6 @@
{
"name": "@lodestar/validator",
"version": "1.1.0",
"version": "1.1.1",
"description": "A Typescript implementation of the validator client",
"author": "ChainSafe Systems",
"license": "LGPL-3.0",
@@ -49,13 +49,13 @@
"dependencies": {
"@chainsafe/bls": "7.1.1",
"@chainsafe/ssz": "^0.9.2",
"@lodestar/api": "^1.1.0",
"@lodestar/config": "^1.1.0",
"@lodestar/db": "^1.1.0",
"@lodestar/params": "^1.1.0",
"@lodestar/state-transition": "^1.1.0",
"@lodestar/types": "^1.1.0",
"@lodestar/utils": "^1.1.0",
"@lodestar/api": "^1.1.1",
"@lodestar/config": "^1.1.1",
"@lodestar/db": "^1.1.1",
"@lodestar/params": "^1.1.1",
"@lodestar/state-transition": "^1.1.1",
"@lodestar/types": "^1.1.1",
"@lodestar/utils": "^1.1.1",
"bigint-buffer": "^1.1.5",
"cross-fetch": "^3.1.4",
"strict-event-emitter-types": "^2.0.0"