@lodestar/types 1.30.0-dev.dd729f5ece → 1.30.0-dev.fa898bb319
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/fulu/index.d.ts +5 -0
- package/lib/fulu/index.js +5 -0
- package/lib/fulu/index.js.map +1 -0
- package/lib/fulu/sszTypes.d.ts +65 -0
- package/lib/fulu/sszTypes.js +41 -0
- package/lib/fulu/sszTypes.js.map +1 -0
- package/lib/fulu/types.d.ts +14 -0
- package/lib/fulu/types.js +2 -0
- package/lib/fulu/types.js.map +1 -0
- package/lib/primitive/sszTypes.d.ts +3 -0
- package/lib/primitive/sszTypes.js +3 -0
- package/lib/primitive/sszTypes.js.map +1 -1
- package/lib/primitive/types.d.ts +3 -0
- package/lib/sszTypes.d.ts +13003 -12
- package/lib/sszTypes.js +23 -14
- package/lib/sszTypes.js.map +1 -1
- package/lib/types.d.ts +5 -3
- package/lib/types.js +1 -0
- package/lib/types.js.map +1 -1
- package/package.json +4 -6
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/fulu/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAC3B,OAAO,KAAK,GAAG,MAAM,eAAe,CAAC;AACrC,OAAO,KAAK,EAAE,MAAM,YAAY,CAAC;AACjC,OAAO,EAAC,EAAE,EAAE,GAAG,EAAC,CAAC"}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import { ByteVectorType, ContainerType, ListBasicType, ListCompositeType, VectorCompositeType } from "@chainsafe/ssz";
|
|
2
|
+
export declare const Metadata: ContainerType<{
|
|
3
|
+
custodyGroupCount: import("@chainsafe/ssz").UintNumberType;
|
|
4
|
+
seqNumber: import("@chainsafe/ssz").UintBigintType;
|
|
5
|
+
attnets: import("@chainsafe/ssz").BitVectorType;
|
|
6
|
+
syncnets: import("@chainsafe/ssz").BitVectorType;
|
|
7
|
+
}>;
|
|
8
|
+
export declare const Cell: ByteVectorType;
|
|
9
|
+
export declare const DataColumn: ListCompositeType<ByteVectorType>;
|
|
10
|
+
export declare const ExtendedMatrix: ListCompositeType<ByteVectorType>;
|
|
11
|
+
export declare const KzgCommitmentsInclusionProof: VectorCompositeType<ByteVectorType>;
|
|
12
|
+
export declare const DataColumnSidecar: ContainerType<{
|
|
13
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
14
|
+
column: ListCompositeType<ByteVectorType>;
|
|
15
|
+
kzgCommitments: ListCompositeType<ByteVectorType>;
|
|
16
|
+
kzgProofs: ListCompositeType<ByteVectorType>;
|
|
17
|
+
signedBlockHeader: ContainerType<{
|
|
18
|
+
message: ContainerType<{
|
|
19
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
20
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
21
|
+
parentRoot: ByteVectorType;
|
|
22
|
+
stateRoot: ByteVectorType;
|
|
23
|
+
bodyRoot: ByteVectorType;
|
|
24
|
+
}>;
|
|
25
|
+
signature: ByteVectorType;
|
|
26
|
+
}>;
|
|
27
|
+
kzgCommitmentsInclusionProof: VectorCompositeType<ByteVectorType>;
|
|
28
|
+
}>;
|
|
29
|
+
export declare const DataColumnSidecars: ListCompositeType<ContainerType<{
|
|
30
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
31
|
+
column: ListCompositeType<ByteVectorType>;
|
|
32
|
+
kzgCommitments: ListCompositeType<ByteVectorType>;
|
|
33
|
+
kzgProofs: ListCompositeType<ByteVectorType>;
|
|
34
|
+
signedBlockHeader: ContainerType<{
|
|
35
|
+
message: ContainerType<{
|
|
36
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
37
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
38
|
+
parentRoot: ByteVectorType;
|
|
39
|
+
stateRoot: ByteVectorType;
|
|
40
|
+
bodyRoot: ByteVectorType;
|
|
41
|
+
}>;
|
|
42
|
+
signature: ByteVectorType;
|
|
43
|
+
}>;
|
|
44
|
+
kzgCommitmentsInclusionProof: VectorCompositeType<ByteVectorType>;
|
|
45
|
+
}>>;
|
|
46
|
+
export declare const MatrixEntry: ContainerType<{
|
|
47
|
+
cell: ByteVectorType;
|
|
48
|
+
kzgProof: ByteVectorType;
|
|
49
|
+
columnIndex: import("@chainsafe/ssz").UintNumberType;
|
|
50
|
+
rowIndex: import("@chainsafe/ssz").UintNumberType;
|
|
51
|
+
}>;
|
|
52
|
+
export declare const DataColumnIdentifier: ContainerType<{
|
|
53
|
+
blockRoot: ByteVectorType;
|
|
54
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
55
|
+
}>;
|
|
56
|
+
export declare const DataColumnSidecarsByRootRequest: ListCompositeType<ContainerType<{
|
|
57
|
+
blockRoot: ByteVectorType;
|
|
58
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
59
|
+
}>>;
|
|
60
|
+
export declare const DataColumnSidecarsByRangeRequest: ContainerType<{
|
|
61
|
+
startSlot: import("@chainsafe/ssz").UintNumberType;
|
|
62
|
+
count: import("@chainsafe/ssz").UintNumberType;
|
|
63
|
+
columns: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
64
|
+
}>;
|
|
65
|
+
//# sourceMappingURL=sszTypes.d.ts.map
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { ByteVectorType, ContainerType, ListBasicType, ListCompositeType, VectorCompositeType } from "@chainsafe/ssz";
|
|
2
|
+
import { BYTES_PER_FIELD_ELEMENT, FIELD_ELEMENTS_PER_CELL, KZG_COMMITMENTS_INCLUSION_PROOF_DEPTH, MAX_BLOB_COMMITMENTS_PER_BLOCK, MAX_REQUEST_DATA_COLUMN_SIDECARS, NUMBER_OF_COLUMNS, } from "@lodestar/params";
|
|
3
|
+
import { ssz as altairSsz } from "../altair/index.js";
|
|
4
|
+
import { ssz as denebSsz } from "../deneb/index.js";
|
|
5
|
+
import { ssz as phase0Ssz } from "../phase0/index.js";
|
|
6
|
+
import { ssz as primitiveSsz } from "../primitive/index.js";
|
|
7
|
+
const { Root, ColumnIndex, RowIndex, Bytes32, Slot, UintNum64 } = primitiveSsz;
|
|
8
|
+
export const Metadata = new ContainerType({
|
|
9
|
+
...altairSsz.Metadata.fields,
|
|
10
|
+
custodyGroupCount: UintNum64,
|
|
11
|
+
}, { typeName: "Metadata", jsonCase: "eth2" });
|
|
12
|
+
export const Cell = new ByteVectorType(BYTES_PER_FIELD_ELEMENT * FIELD_ELEMENTS_PER_CELL);
|
|
13
|
+
export const DataColumn = new ListCompositeType(Cell, MAX_BLOB_COMMITMENTS_PER_BLOCK);
|
|
14
|
+
export const ExtendedMatrix = new ListCompositeType(Cell, MAX_BLOB_COMMITMENTS_PER_BLOCK * NUMBER_OF_COLUMNS);
|
|
15
|
+
export const KzgCommitmentsInclusionProof = new VectorCompositeType(Bytes32, KZG_COMMITMENTS_INCLUSION_PROOF_DEPTH);
|
|
16
|
+
export const DataColumnSidecar = new ContainerType({
|
|
17
|
+
index: ColumnIndex,
|
|
18
|
+
column: DataColumn,
|
|
19
|
+
kzgCommitments: denebSsz.BlobKzgCommitments,
|
|
20
|
+
kzgProofs: denebSsz.KZGProofs,
|
|
21
|
+
signedBlockHeader: phase0Ssz.SignedBeaconBlockHeader,
|
|
22
|
+
kzgCommitmentsInclusionProof: KzgCommitmentsInclusionProof,
|
|
23
|
+
}, { typeName: "DataColumnSidecar", jsonCase: "eth2" });
|
|
24
|
+
export const DataColumnSidecars = new ListCompositeType(DataColumnSidecar, NUMBER_OF_COLUMNS);
|
|
25
|
+
export const MatrixEntry = new ContainerType({
|
|
26
|
+
cell: Cell,
|
|
27
|
+
kzgProof: denebSsz.KZGProof,
|
|
28
|
+
columnIndex: ColumnIndex,
|
|
29
|
+
rowIndex: RowIndex,
|
|
30
|
+
}, { typeName: "MatrixEntry", jsonCase: "eth2" });
|
|
31
|
+
export const DataColumnIdentifier = new ContainerType({
|
|
32
|
+
blockRoot: Root,
|
|
33
|
+
index: ColumnIndex,
|
|
34
|
+
}, { typeName: "DataColumnIdentifier", jsonCase: "eth2" });
|
|
35
|
+
export const DataColumnSidecarsByRootRequest = new ListCompositeType(DataColumnIdentifier, MAX_REQUEST_DATA_COLUMN_SIDECARS);
|
|
36
|
+
export const DataColumnSidecarsByRangeRequest = new ContainerType({
|
|
37
|
+
startSlot: Slot,
|
|
38
|
+
count: UintNum64,
|
|
39
|
+
columns: new ListBasicType(ColumnIndex, NUMBER_OF_COLUMNS),
|
|
40
|
+
}, { typeName: "DataColumnSidecarsByRangeRequest", jsonCase: "eth2" });
|
|
41
|
+
//# sourceMappingURL=sszTypes.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"sszTypes.js","sourceRoot":"","sources":["../../src/fulu/sszTypes.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,cAAc,EAAE,aAAa,EAAE,aAAa,EAAE,iBAAiB,EAAE,mBAAmB,EAAC,MAAM,gBAAgB,CAAC;AACpH,OAAO,EACL,uBAAuB,EACvB,uBAAuB,EACvB,qCAAqC,EACrC,8BAA8B,EAC9B,gCAAgC,EAChC,iBAAiB,GAClB,MAAM,kBAAkB,CAAC;AAE1B,OAAO,EAAC,GAAG,IAAI,SAAS,EAAC,MAAM,oBAAoB,CAAC;AACpD,OAAO,EAAC,GAAG,IAAI,QAAQ,EAAC,MAAM,mBAAmB,CAAC;AAClD,OAAO,EAAC,GAAG,IAAI,SAAS,EAAC,MAAM,oBAAoB,CAAC;AACpD,OAAO,EAAC,GAAG,IAAI,YAAY,EAAC,MAAM,uBAAuB,CAAC;AAE1D,MAAM,EAAC,IAAI,EAAE,WAAW,EAAE,QAAQ,EAAE,OAAO,EAAE,IAAI,EAAE,SAAS,EAAC,GAAG,YAAY,CAAC;AAE7E,MAAM,CAAC,MAAM,QAAQ,GAAG,IAAI,aAAa,CACvC;IACE,GAAG,SAAS,CAAC,QAAQ,CAAC,MAAM;IAC5B,iBAAiB,EAAE,SAAS;CAC7B,EACD,EAAC,QAAQ,EAAE,UAAU,EAAE,QAAQ,EAAE,MAAM,EAAC,CACzC,CAAC;AAEF,MAAM,CAAC,MAAM,IAAI,GAAG,IAAI,cAAc,CAAC,uBAAuB,GAAG,uBAAuB,CAAC,CAAC;AAC1F,MAAM,CAAC,MAAM,UAAU,GAAG,IAAI,iBAAiB,CAAC,IAAI,EAAE,8BAA8B,CAAC,CAAC;AACtF,MAAM,CAAC,MAAM,cAAc,GAAG,IAAI,iBAAiB,CAAC,IAAI,EAAE,8BAA8B,GAAG,iBAAiB,CAAC,CAAC;AAC9G,MAAM,CAAC,MAAM,4BAA4B,GAAG,IAAI,mBAAmB,CAAC,OAAO,EAAE,qCAAqC,CAAC,CAAC;AAEpH,MAAM,CAAC,MAAM,iBAAiB,GAAG,IAAI,aAAa,CAChD;IACE,KAAK,EAAE,WAAW;IAClB,MAAM,EAAE,UAAU;IAClB,cAAc,EAAE,QAAQ,CAAC,kBAAkB;IAC3C,SAAS,EAAE,QAAQ,CAAC,SAAS;IAC7B,iBAAiB,EAAE,SAAS,CAAC,uBAAuB;IACpD,4BAA4B,EAAE,4BAA4B;CAC3D,EACD,EAAC,QAAQ,EAAE,mBAAmB,EAAE,QAAQ,EAAE,MAAM,EAAC,CAClD,CAAC;AAEF,MAAM,CAAC,MAAM,kBAAkB,GAAG,IAAI,iBAAiB,CAAC,iBAAiB,EAAE,iBAAiB,CAAC,CAAC;AAE9F,MAAM,CAAC,MAAM,WAAW,GAAG,IAAI,aAAa,CAC1C;IACE,IAAI,EAAE,IAAI;IACV,QAAQ,EAAE,QAAQ,CAAC,QAAQ;IAC3B,WAAW,EAAE,WAAW;IACxB,QAAQ,EAAE,QAAQ;CACnB,EACD,EAAC,QAAQ,EAAE,aAAa,EAAE,QAAQ,EAAE,MAAM,EAAC,CAC5C,CAAC;AAEF,MAAM,CAAC,MAAM,oBAAoB,GAAG,IAAI,aAAa,CACnD;IACE,SAAS,EAAE,IAAI;IACf,KAAK,EAAE,WAAW;CACnB,EACD,EAAC,QAAQ,EAAE,sBAAsB,EAAE,QAAQ,EAAE,MAAM,EAAC,CACrD,CAAC;AAEF,MAAM,CAAC,MAAM,+BAA+B,GAAG,IAAI,iBAAiB,CAClE,oBAAoB,EACpB,gCAAgC,CACjC,CAAC;AAEF,MAAM,CAAC,MAAM,gCAAgC,GAAG,IAAI,aAAa,CAC/D;IACE,SAAS,EAAE,IAAI;IACf,KAAK,EAAE,SAAS;IAChB,OAAO,EAAE,IAAI,aAAa,CAAC,WAAW,EAAE,iBAAiB,CAAC;CAC3D,EACD,EAAC,QAAQ,EAAE,kCAAkC,EAAE,QAAQ,EAAE,MAAM,EAAC,CACjE,CAAC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { ValueOf } from "@chainsafe/ssz";
|
|
2
|
+
import * as ssz from "./sszTypes.js";
|
|
3
|
+
export type Metadata = ValueOf<typeof ssz.Metadata>;
|
|
4
|
+
export type Cell = ValueOf<typeof ssz.Cell>;
|
|
5
|
+
export type DataColumn = ValueOf<typeof ssz.DataColumn>;
|
|
6
|
+
export type ExtendedMatrix = ValueOf<typeof ssz.ExtendedMatrix>;
|
|
7
|
+
export type KzgCommitmentsInclusionProof = ValueOf<typeof ssz.KzgCommitmentsInclusionProof>;
|
|
8
|
+
export type DataColumnSidecar = ValueOf<typeof ssz.DataColumnSidecar>;
|
|
9
|
+
export type DataColumnSidecars = ValueOf<typeof ssz.DataColumnSidecars>;
|
|
10
|
+
export type MatrixEntry = ValueOf<typeof ssz.MatrixEntry>;
|
|
11
|
+
export type DataColumnIdentifier = ValueOf<typeof ssz.DataColumnIdentifier>;
|
|
12
|
+
export type DataColumnSidecarsByRootRequest = ValueOf<typeof ssz.DataColumnSidecarsByRootRequest>;
|
|
13
|
+
export type DataColumnSidecarsByRangeRequest = ValueOf<typeof ssz.DataColumnSidecarsByRangeRequest>;
|
|
14
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/fulu/types.ts"],"names":[],"mappings":""}
|
|
@@ -59,4 +59,7 @@ export declare const BLSSignature: ByteVectorType;
|
|
|
59
59
|
export declare const Domain: ByteVectorType;
|
|
60
60
|
export declare const ParticipationFlags: UintNumberType;
|
|
61
61
|
export declare const ExecutionAddress: ExecutionAddressType;
|
|
62
|
+
export declare const ColumnIndex: UintNumberType;
|
|
63
|
+
export declare const CustodyIndex: UintNumberType;
|
|
64
|
+
export declare const RowIndex: UintNumberType;
|
|
62
65
|
//# sourceMappingURL=sszTypes.d.ts.map
|
|
@@ -61,4 +61,7 @@ export const BLSSignature = Bytes96;
|
|
|
61
61
|
export const Domain = Bytes32;
|
|
62
62
|
export const ParticipationFlags = new UintNumberType(1, { setBitwiseOR: true });
|
|
63
63
|
export const ExecutionAddress = new ExecutionAddressType();
|
|
64
|
+
export const ColumnIndex = UintNum64;
|
|
65
|
+
export const CustodyIndex = UintNum64;
|
|
66
|
+
export const RowIndex = UintNum64;
|
|
64
67
|
//# sourceMappingURL=sszTypes.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sszTypes.js","sourceRoot":"","sources":["../../src/primitive/sszTypes.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"sszTypes.js","sourceRoot":"","sources":["../../src/primitive/sszTypes.ts"],"names":[],"mappings":"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"}
|
package/lib/primitive/types.d.ts
CHANGED
|
@@ -39,4 +39,7 @@ export type ExecutionAddress = Bytes20;
|
|
|
39
39
|
export type RootHex = string;
|
|
40
40
|
/** Non-spec type to signal time is represented in seconds */
|
|
41
41
|
export type TimeSeconds = number;
|
|
42
|
+
export type ColumnIndex = UintNum64;
|
|
43
|
+
export type CustodyIndex = UintNum64;
|
|
44
|
+
export type RowIndex = UintNum64;
|
|
42
45
|
//# sourceMappingURL=types.d.ts.map
|