@lodestar/types 1.35.0-dev.5e2a80008e → 1.35.0-dev.643707ecd3
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/altair/index.d.ts.map +1 -0
- package/lib/altair/index.js.map +1 -1
- package/lib/altair/sszTypes.d.ts +1 -1
- package/lib/altair/sszTypes.d.ts.map +1 -0
- package/lib/altair/types.d.ts.map +1 -0
- package/lib/bellatrix/index.d.ts.map +1 -0
- package/lib/bellatrix/index.js.map +1 -1
- package/lib/bellatrix/sszTypes.d.ts +15 -15
- package/lib/bellatrix/sszTypes.d.ts.map +1 -0
- package/lib/bellatrix/types.d.ts.map +1 -0
- package/lib/capella/index.d.ts.map +1 -0
- package/lib/capella/index.js.map +1 -1
- package/lib/capella/sszTypes.d.ts +41 -41
- package/lib/capella/sszTypes.d.ts.map +1 -0
- package/lib/capella/types.d.ts.map +1 -0
- package/lib/deneb/index.d.ts.map +1 -0
- package/lib/deneb/index.js.map +1 -1
- package/lib/deneb/sszTypes.d.ts +44 -44
- package/lib/deneb/sszTypes.d.ts.map +1 -0
- package/lib/deneb/types.d.ts.map +1 -0
- package/lib/electra/index.d.ts.map +1 -0
- package/lib/electra/index.js.map +1 -1
- package/lib/electra/sszTypes.d.ts +67 -67
- package/lib/electra/sszTypes.d.ts.map +1 -0
- package/lib/electra/types.d.ts.map +1 -0
- package/lib/fulu/index.d.ts.map +1 -0
- package/lib/fulu/index.js.map +1 -1
- package/lib/fulu/sszTypes.d.ts +22 -22
- package/lib/fulu/sszTypes.d.ts.map +1 -0
- package/lib/fulu/sszTypes.js.map +1 -1
- package/lib/fulu/types.d.ts.map +1 -0
- package/lib/gloas/index.d.ts.map +1 -0
- package/lib/gloas/index.js.map +1 -1
- package/lib/gloas/sszTypes.d.ts +535 -234
- package/lib/gloas/sszTypes.d.ts.map +1 -0
- package/lib/gloas/sszTypes.js +162 -3
- package/lib/gloas/sszTypes.js.map +1 -1
- package/lib/gloas/types.d.ts +13 -0
- package/lib/gloas/types.d.ts.map +1 -0
- package/lib/index.d.ts +4 -4
- package/lib/index.d.ts.map +1 -0
- package/lib/index.js +5 -5
- package/lib/index.js.map +1 -1
- package/lib/phase0/index.d.ts.map +1 -0
- package/lib/phase0/index.js.map +1 -1
- package/lib/phase0/sszTypes.d.ts.map +1 -0
- package/lib/phase0/types.d.ts.map +1 -0
- package/lib/phase0/validator.d.ts.map +1 -0
- package/lib/primitive/index.d.ts.map +1 -0
- package/lib/primitive/sszTypes.d.ts.map +1 -0
- package/lib/primitive/types.d.ts.map +1 -0
- package/lib/sszTypes.d.ts +1668 -1450
- package/lib/sszTypes.d.ts.map +1 -0
- package/lib/types.d.ts +3 -3
- package/lib/types.d.ts.map +1 -0
- package/lib/types.js +2 -2
- package/lib/types.js.map +1 -1
- package/lib/utils/container.d.ts.map +1 -0
- package/lib/utils/container.js.map +1 -1
- package/lib/utils/executionAddress.d.ts.map +1 -0
- package/lib/utils/executionAddress.js +1 -1
- package/lib/utils/executionAddress.js.map +1 -1
- package/lib/utils/stringType.d.ts.map +1 -0
- package/lib/utils/typeguards.d.ts.map +1 -0
- package/lib/utils/validatorStatus.d.ts.map +1 -0
- package/package.json +14 -8
- package/src/altair/index.ts +5 -0
- package/src/altair/sszTypes.ts +243 -0
- package/src/altair/types.ts +24 -0
- package/src/bellatrix/index.ts +5 -0
- package/src/bellatrix/sszTypes.ts +238 -0
- package/src/bellatrix/types.ts +24 -0
- package/src/capella/index.ts +5 -0
- package/src/capella/sszTypes.ts +281 -0
- package/src/capella/types.ts +33 -0
- package/src/deneb/index.ts +5 -0
- package/src/deneb/sszTypes.ts +329 -0
- package/src/deneb/types.ts +55 -0
- package/src/electra/index.ts +5 -0
- package/src/electra/sszTypes.ts +451 -0
- package/src/electra/types.ts +54 -0
- package/src/fulu/index.ts +5 -0
- package/src/fulu/sszTypes.ts +138 -0
- package/src/fulu/types.ts +31 -0
- package/src/gloas/index.ts +5 -0
- package/src/gloas/sszTypes.ts +234 -0
- package/src/gloas/types.ts +20 -0
- package/src/index.ts +15 -0
- package/src/phase0/index.ts +6 -0
- package/src/phase0/sszTypes.ts +514 -0
- package/src/phase0/types.ts +46 -0
- package/src/phase0/validator.ts +78 -0
- package/src/primitive/index.ts +3 -0
- package/src/primitive/sszTypes.ts +70 -0
- package/src/primitive/types.ts +53 -0
- package/src/sszTypes.ts +86 -0
- package/src/types.ts +375 -0
- package/src/utils/container.ts +38 -0
- package/src/utils/executionAddress.ts +48 -0
- package/src/utils/stringType.ts +58 -0
- package/src/utils/typeguards.ts +98 -0
- package/src/utils/validatorStatus.ts +52 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/altair/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAE3B,OAAO,KAAK,GAAG,MAAM,eAAe,CAAC;AACrC,OAAO,KAAK,EAAE,MAAM,YAAY,CAAC;AACjC,OAAO,EAAC,EAAE,EAAE,GAAG,EAAC,CAAC"}
|
package/lib/altair/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/altair/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/altair/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAE3B,OAAO,KAAK,GAAG,MAAM,eAAe,CAAC;AACrC,OAAO,KAAK,EAAE,MAAM,YAAY,CAAC;AACjC,OAAO,EAAC,EAAE,EAAE,GAAG,EAAC,CAAC"}
|
package/lib/altair/sszTypes.d.ts
CHANGED
|
@@ -418,7 +418,7 @@ export declare const BeaconState: ContainerType<{
|
|
|
418
418
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
419
419
|
}>>;
|
|
420
420
|
eth1DepositIndex: import("@chainsafe/ssz").UintNumberType;
|
|
421
|
-
validators: ListCompositeType<import("../phase0/validator.
|
|
421
|
+
validators: ListCompositeType<import("../phase0/validator.ts").ValidatorNodeStructType>;
|
|
422
422
|
balances: import("@chainsafe/ssz").ListUintNum64Type;
|
|
423
423
|
randaoMixes: VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
424
424
|
slashings: import("@chainsafe/ssz").VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"sszTypes.d.ts","sourceRoot":"","sources":["../../src/altair/sszTypes.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,aAAa,EAAE,aAAa,EAAE,aAAa,EAAE,iBAAiB,EAAE,mBAAmB,EAAC,MAAM,gBAAgB,CAAC;AA4BnH,eAAO,MAAM,WAAW,eAAiD,CAAC;AAE1E,eAAO,MAAM,cAAc,8DAAyD,CAAC;AAErF,eAAO,MAAM,0BAA0B,8DAAiE,CAAC;AAEzG,eAAO,MAAM,uBAAuB,8DAA8D,CAAC;AAEnG,eAAO,MAAM,QAAQ;;;;EAOpB,CAAC;AAEF,eAAO,MAAM,aAAa;;;EAMzB,CAAC;AAEF,eAAO,MAAM,oBAAoB;;;;;EAQhC,CAAC;AAEF,eAAO,MAAM,yBAAyB;;;;;;EASrC,CAAC;AAEF,eAAO,MAAM,oBAAoB;;;;;;;;;;EAOhC,CAAC;AAEF,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;EAMtC,CAAC;AAEF,eAAO,MAAM,2BAA2B;;;EAMvC,CAAC;AAEF,eAAO,MAAM,iBAAiB,eAAyC,CAAC;AAExE,eAAO,MAAM,aAAa;;;EAMzB,CAAC;AAEF,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAM3B,CAAC;AAEF,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EASvB,CAAC;AAEF,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAM7B,CAAC;AAEF,eAAO,MAAM,kBAAkB,wDAAkE,CAAC;AAClG,eAAO,MAAM,gBAAgB,wDAAyD,CAAC;AAIvF,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAoCvB,CAAC;AAEF,eAAO,MAAM,iBAAiB;;;;;;;;EAK7B,CAAC;AAEF,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;EAOhC,CAAC;AAEF,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAW7B,CAAC;AAEF,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;EASrC,CAAC;AAEF,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;EAOvC,CAAC;AAEF,eAAO,MAAM,yBAAyB;;;EAMrC,CAAC;AAEF,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAM5B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/altair/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,OAAO,EAAC,MAAM,gBAAgB,CAAC;AACvC,OAAO,KAAK,GAAG,MAAM,eAAe,CAAC;AAErC,MAAM,MAAM,WAAW,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,WAAW,CAAC,CAAC;AAC1D,MAAM,MAAM,QAAQ,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,QAAQ,CAAC,CAAC;AACpD,MAAM,MAAM,aAAa,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,aAAa,CAAC,CAAC;AAC9D,MAAM,MAAM,oBAAoB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,oBAAoB,CAAC,CAAC;AAC5E,MAAM,MAAM,yBAAyB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,yBAAyB,CAAC,CAAC;AACtF,MAAM,MAAM,oBAAoB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,oBAAoB,CAAC,CAAC;AAC5E,MAAM,MAAM,0BAA0B,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,0BAA0B,CAAC,CAAC;AACxF,MAAM,MAAM,2BAA2B,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,2BAA2B,CAAC,CAAC;AAC1F,MAAM,MAAM,aAAa,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,aAAa,CAAC,CAAC;AAC9D,MAAM,MAAM,eAAe,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,eAAe,CAAC,CAAC;AAClE,MAAM,MAAM,WAAW,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,WAAW,CAAC,CAAC;AAC1D,MAAM,MAAM,iBAAiB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,iBAAiB,CAAC,CAAC;AACtE,MAAM,MAAM,WAAW,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,WAAW,CAAC,CAAC;AAE1D,MAAM,MAAM,iBAAiB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,iBAAiB,CAAC,CAAC;AACtE,MAAM,MAAM,oBAAoB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,oBAAoB,CAAC,CAAC;AAC5E,MAAM,MAAM,iBAAiB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,iBAAiB,CAAC,CAAC;AACtE,MAAM,MAAM,yBAAyB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,yBAAyB,CAAC,CAAC;AACtF,MAAM,MAAM,2BAA2B,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,2BAA2B,CAAC,CAAC;AAC1F,MAAM,MAAM,gBAAgB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,gBAAgB,CAAC,CAAC;AACpE,MAAM,MAAM,yBAAyB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,yBAAyB,CAAC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/bellatrix/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAE3B,OAAO,KAAK,GAAG,MAAM,eAAe,CAAC;AACrC,OAAO,KAAK,EAAE,MAAM,YAAY,CAAC;AACjC,OAAO,EAAC,EAAE,EAAE,GAAG,EAAC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/bellatrix/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/bellatrix/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAE3B,OAAO,KAAK,GAAG,MAAM,eAAe,CAAC;AACrC,OAAO,KAAK,EAAE,MAAM,YAAY,CAAC;AACjC,OAAO,EAAC,EAAE,EAAE,GAAG,EAAC,CAAC"}
|
|
@@ -13,7 +13,7 @@ export declare const Transaction: ByteListType;
|
|
|
13
13
|
export declare const Transactions: ListCompositeType<ByteListType>;
|
|
14
14
|
export declare const CommonExecutionPayloadType: ContainerType<{
|
|
15
15
|
parentHash: ByteVectorType;
|
|
16
|
-
feeRecipient: import("../index.
|
|
16
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
17
17
|
stateRoot: ByteVectorType;
|
|
18
18
|
receiptsRoot: ByteVectorType;
|
|
19
19
|
logsBloom: ByteVectorType;
|
|
@@ -29,7 +29,7 @@ export declare const CommonExecutionPayloadType: ContainerType<{
|
|
|
29
29
|
export declare const ExecutionPayload: ContainerType<{
|
|
30
30
|
transactions: ListCompositeType<ByteListType>;
|
|
31
31
|
parentHash: ByteVectorType;
|
|
32
|
-
feeRecipient: import("../index.
|
|
32
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
33
33
|
stateRoot: ByteVectorType;
|
|
34
34
|
receiptsRoot: ByteVectorType;
|
|
35
35
|
logsBloom: ByteVectorType;
|
|
@@ -45,7 +45,7 @@ export declare const ExecutionPayload: ContainerType<{
|
|
|
45
45
|
export declare const ExecutionPayloadHeader: ContainerType<{
|
|
46
46
|
transactionsRoot: ByteVectorType;
|
|
47
47
|
parentHash: ByteVectorType;
|
|
48
|
-
feeRecipient: import("../index.
|
|
48
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
49
49
|
stateRoot: ByteVectorType;
|
|
50
50
|
receiptsRoot: ByteVectorType;
|
|
51
51
|
logsBloom: ByteVectorType;
|
|
@@ -62,7 +62,7 @@ export declare const BeaconBlockBody: ContainerType<{
|
|
|
62
62
|
executionPayload: ContainerType<{
|
|
63
63
|
transactions: ListCompositeType<ByteListType>;
|
|
64
64
|
parentHash: ByteVectorType;
|
|
65
|
-
feeRecipient: import("../index.
|
|
65
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
66
66
|
stateRoot: ByteVectorType;
|
|
67
67
|
receiptsRoot: ByteVectorType;
|
|
68
68
|
logsBloom: ByteVectorType;
|
|
@@ -187,7 +187,7 @@ export declare const BeaconBlock: ContainerType<{
|
|
|
187
187
|
executionPayload: ContainerType<{
|
|
188
188
|
transactions: ListCompositeType<ByteListType>;
|
|
189
189
|
parentHash: ByteVectorType;
|
|
190
|
-
feeRecipient: import("../index.
|
|
190
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
191
191
|
stateRoot: ByteVectorType;
|
|
192
192
|
receiptsRoot: ByteVectorType;
|
|
193
193
|
logsBloom: ByteVectorType;
|
|
@@ -314,7 +314,7 @@ export declare const SignedBeaconBlock: ContainerType<{
|
|
|
314
314
|
executionPayload: ContainerType<{
|
|
315
315
|
transactions: ListCompositeType<ByteListType>;
|
|
316
316
|
parentHash: ByteVectorType;
|
|
317
|
-
feeRecipient: import("../index.
|
|
317
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
318
318
|
stateRoot: ByteVectorType;
|
|
319
319
|
receiptsRoot: ByteVectorType;
|
|
320
320
|
logsBloom: ByteVectorType;
|
|
@@ -468,7 +468,7 @@ export declare const BeaconState: ContainerType<{
|
|
|
468
468
|
blockHash: ByteVectorType;
|
|
469
469
|
}>>;
|
|
470
470
|
eth1DepositIndex: import("@chainsafe/ssz").UintNumberType;
|
|
471
|
-
validators: ListCompositeType<import("../phase0/validator.
|
|
471
|
+
validators: ListCompositeType<import("../phase0/validator.ts").ValidatorNodeStructType>;
|
|
472
472
|
balances: import("@chainsafe/ssz").ListUintNum64Type;
|
|
473
473
|
randaoMixes: import("@chainsafe/ssz").VectorCompositeType<ByteVectorType>;
|
|
474
474
|
slashings: import("@chainsafe/ssz").VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
@@ -499,7 +499,7 @@ export declare const BeaconState: ContainerType<{
|
|
|
499
499
|
latestExecutionPayloadHeader: ContainerType<{
|
|
500
500
|
transactionsRoot: ByteVectorType;
|
|
501
501
|
parentHash: ByteVectorType;
|
|
502
|
-
feeRecipient: import("../index.
|
|
502
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
503
503
|
stateRoot: ByteVectorType;
|
|
504
504
|
receiptsRoot: ByteVectorType;
|
|
505
505
|
logsBloom: ByteVectorType;
|
|
@@ -517,7 +517,7 @@ export declare const BlindedBeaconBlockBody: ContainerType<{
|
|
|
517
517
|
executionPayloadHeader: ContainerType<{
|
|
518
518
|
transactionsRoot: ByteVectorType;
|
|
519
519
|
parentHash: ByteVectorType;
|
|
520
|
-
feeRecipient: import("../index.
|
|
520
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
521
521
|
stateRoot: ByteVectorType;
|
|
522
522
|
receiptsRoot: ByteVectorType;
|
|
523
523
|
logsBloom: ByteVectorType;
|
|
@@ -642,7 +642,7 @@ export declare const BlindedBeaconBlock: ContainerType<{
|
|
|
642
642
|
executionPayloadHeader: ContainerType<{
|
|
643
643
|
transactionsRoot: ByteVectorType;
|
|
644
644
|
parentHash: ByteVectorType;
|
|
645
|
-
feeRecipient: import("../index.
|
|
645
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
646
646
|
stateRoot: ByteVectorType;
|
|
647
647
|
receiptsRoot: ByteVectorType;
|
|
648
648
|
logsBloom: ByteVectorType;
|
|
@@ -769,7 +769,7 @@ export declare const SignedBlindedBeaconBlock: ContainerType<{
|
|
|
769
769
|
executionPayloadHeader: ContainerType<{
|
|
770
770
|
transactionsRoot: ByteVectorType;
|
|
771
771
|
parentHash: ByteVectorType;
|
|
772
|
-
feeRecipient: import("../index.
|
|
772
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
773
773
|
stateRoot: ByteVectorType;
|
|
774
774
|
receiptsRoot: ByteVectorType;
|
|
775
775
|
logsBloom: ByteVectorType;
|
|
@@ -889,14 +889,14 @@ export declare const SignedBlindedBeaconBlock: ContainerType<{
|
|
|
889
889
|
signature: ByteVectorType;
|
|
890
890
|
}>;
|
|
891
891
|
export declare const ValidatorRegistrationV1: ContainerType<{
|
|
892
|
-
feeRecipient: import("../index.
|
|
892
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
893
893
|
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
894
894
|
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
895
895
|
pubkey: ByteVectorType;
|
|
896
896
|
}>;
|
|
897
897
|
export declare const SignedValidatorRegistrationV1: ContainerType<{
|
|
898
898
|
message: ContainerType<{
|
|
899
|
-
feeRecipient: import("../index.
|
|
899
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
900
900
|
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
901
901
|
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
902
902
|
pubkey: ByteVectorType;
|
|
@@ -907,7 +907,7 @@ export declare const BuilderBid: ContainerType<{
|
|
|
907
907
|
header: ContainerType<{
|
|
908
908
|
transactionsRoot: ByteVectorType;
|
|
909
909
|
parentHash: ByteVectorType;
|
|
910
|
-
feeRecipient: import("../index.
|
|
910
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
911
911
|
stateRoot: ByteVectorType;
|
|
912
912
|
receiptsRoot: ByteVectorType;
|
|
913
913
|
logsBloom: ByteVectorType;
|
|
@@ -928,7 +928,7 @@ export declare const SignedBuilderBid: ContainerType<{
|
|
|
928
928
|
header: ContainerType<{
|
|
929
929
|
transactionsRoot: ByteVectorType;
|
|
930
930
|
parentHash: ByteVectorType;
|
|
931
|
-
feeRecipient: import("../index.
|
|
931
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
932
932
|
stateRoot: ByteVectorType;
|
|
933
933
|
receiptsRoot: ByteVectorType;
|
|
934
934
|
logsBloom: ByteVectorType;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"sszTypes.d.ts","sourceRoot":"","sources":["../../src/bellatrix/sszTypes.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,YAAY,EAAE,cAAc,EAAE,aAAa,EAAE,iBAAiB,EAAC,MAAM,gBAAgB,CAAC;AAyB9F;;;;GAIG;AACH,eAAO,MAAM,WAAW,cAA8C,CAAC;AAEvE;;;;GAIG;AACH,eAAO,MAAM,YAAY,iCAAmE,CAAC;AAE7F,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;EAerC,CAAC;AAEH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;EAM5B,CAAC;AAEF,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;EAMlC,CAAC;AAEF,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAM3B,CAAC;AAEF,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAUvB,CAAC;AAEF,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAM7B,CAAC;AAEF,eAAO,MAAM,QAAQ;;;;EAOpB,CAAC;AAIF,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAsCvB,CAAC;AAEF,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAMlC,CAAC;AAEF,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAU9B,CAAC;AAEF,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAMpC,CAAC;AAEF,eAAO,MAAM,uBAAuB;;;;;EAQnC,CAAC;AAEF,eAAO,MAAM,6BAA6B;;;;;;;;EAMzC,CAAC;AAEF,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;EAOtB,CAAC;AAEF,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;EAM5B,CAAC;AAGF,eAAO,MAAM,iBAAiB;;;;EAG7B,CAAC;AAEF,eAAO,MAAM,0BAA0B;;;;;;EAStC,CAAC;AAEF,eAAO,MAAM,oBAAoB;;;;;;;;;;;EAMhC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/bellatrix/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,OAAO,EAAC,MAAM,gBAAgB,CAAC;AACvC,OAAO,KAAK,GAAG,MAAM,eAAe,CAAC;AAErC,MAAM,MAAM,WAAW,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,WAAW,CAAC,CAAC;AAC1D,MAAM,MAAM,YAAY,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,YAAY,CAAC,CAAC;AAC5D,MAAM,MAAM,gBAAgB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,gBAAgB,CAAC,CAAC;AACpE,MAAM,MAAM,sBAAsB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,sBAAsB,CAAC,CAAC;AAChF,MAAM,MAAM,eAAe,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,eAAe,CAAC,CAAC;AAClE,MAAM,MAAM,WAAW,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,WAAW,CAAC,CAAC;AAC1D,MAAM,MAAM,iBAAiB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,iBAAiB,CAAC,CAAC;AACtE,MAAM,MAAM,WAAW,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,WAAW,CAAC,CAAC;AAC1D,MAAM,MAAM,QAAQ,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,QAAQ,CAAC,CAAC;AAEpD,MAAM,MAAM,sBAAsB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,sBAAsB,CAAC,CAAC;AAChF,MAAM,MAAM,kBAAkB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,kBAAkB,CAAC,CAAC;AACxE,MAAM,MAAM,wBAAwB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,wBAAwB,CAAC,CAAC;AAEpF,MAAM,MAAM,uBAAuB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,uBAAuB,CAAC,CAAC;AAClF,MAAM,MAAM,6BAA6B,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,6BAA6B,CAAC,CAAC;AAC9F,MAAM,MAAM,UAAU,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,UAAU,CAAC,CAAC;AACxD,MAAM,MAAM,gBAAgB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,gBAAgB,CAAC,CAAC;AACpE,MAAM,MAAM,oBAAoB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,oBAAoB,CAAC,CAAC;AAE5E,MAAM,MAAM,6BAA6B,GAAG,gBAAgB,GAAG,sBAAsB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/capella/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAE3B,OAAO,KAAK,GAAG,MAAM,eAAe,CAAC;AACrC,OAAO,KAAK,EAAE,MAAM,YAAY,CAAC;AACjC,OAAO,EAAC,EAAE,EAAE,GAAG,EAAC,CAAC"}
|
package/lib/capella/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/capella/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/capella/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAE3B,OAAO,KAAK,GAAG,MAAM,eAAe,CAAC;AACrC,OAAO,KAAK,EAAE,MAAM,YAAY,CAAC;AACjC,OAAO,EAAC,EAAE,EAAE,GAAG,EAAC,CAAC"}
|
|
@@ -3,38 +3,38 @@ export declare const ExecutionBranch: VectorCompositeType<import("@chainsafe/ssz
|
|
|
3
3
|
export declare const Withdrawal: ContainerType<{
|
|
4
4
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
5
5
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
6
|
-
address: import("../index.
|
|
6
|
+
address: import("../index.ts").ExecutionAddressType;
|
|
7
7
|
amount: import("@chainsafe/ssz").UintBigintType;
|
|
8
8
|
}>;
|
|
9
9
|
export declare const BLSToExecutionChange: ContainerType<{
|
|
10
10
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
11
11
|
fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
12
|
-
toExecutionAddress: import("../index.
|
|
12
|
+
toExecutionAddress: import("../index.ts").ExecutionAddressType;
|
|
13
13
|
}>;
|
|
14
14
|
export declare const SignedBLSToExecutionChange: ContainerType<{
|
|
15
15
|
message: ContainerType<{
|
|
16
16
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
17
17
|
fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
18
|
-
toExecutionAddress: import("../index.
|
|
18
|
+
toExecutionAddress: import("../index.ts").ExecutionAddressType;
|
|
19
19
|
}>;
|
|
20
20
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
21
21
|
}>;
|
|
22
22
|
export declare const Withdrawals: ListCompositeType<ContainerType<{
|
|
23
23
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
24
24
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
25
|
-
address: import("../index.
|
|
25
|
+
address: import("../index.ts").ExecutionAddressType;
|
|
26
26
|
amount: import("@chainsafe/ssz").UintBigintType;
|
|
27
27
|
}>>;
|
|
28
28
|
export declare const ExecutionPayload: ContainerType<{
|
|
29
29
|
withdrawals: ListCompositeType<ContainerType<{
|
|
30
30
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
31
31
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
32
|
-
address: import("../index.
|
|
32
|
+
address: import("../index.ts").ExecutionAddressType;
|
|
33
33
|
amount: import("@chainsafe/ssz").UintBigintType;
|
|
34
34
|
}>>;
|
|
35
35
|
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
36
36
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
37
|
-
feeRecipient: import("../index.
|
|
37
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
38
38
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
39
39
|
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
40
40
|
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -51,7 +51,7 @@ export declare const ExecutionPayloadHeader: ContainerType<{
|
|
|
51
51
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
52
52
|
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
53
53
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
54
|
-
feeRecipient: import("../index.
|
|
54
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
55
55
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
56
56
|
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
57
57
|
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -68,7 +68,7 @@ export declare const BLSToExecutionChanges: ListCompositeType<ContainerType<{
|
|
|
68
68
|
message: ContainerType<{
|
|
69
69
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
70
70
|
fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
71
|
-
toExecutionAddress: import("../index.
|
|
71
|
+
toExecutionAddress: import("../index.ts").ExecutionAddressType;
|
|
72
72
|
}>;
|
|
73
73
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
74
74
|
}>>;
|
|
@@ -77,12 +77,12 @@ export declare const BeaconBlockBody: ContainerType<{
|
|
|
77
77
|
withdrawals: ListCompositeType<ContainerType<{
|
|
78
78
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
79
79
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
80
|
-
address: import("../index.
|
|
80
|
+
address: import("../index.ts").ExecutionAddressType;
|
|
81
81
|
amount: import("@chainsafe/ssz").UintBigintType;
|
|
82
82
|
}>>;
|
|
83
83
|
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
84
84
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
85
|
-
feeRecipient: import("../index.
|
|
85
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
86
86
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
87
87
|
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
88
88
|
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -99,7 +99,7 @@ export declare const BeaconBlockBody: ContainerType<{
|
|
|
99
99
|
message: ContainerType<{
|
|
100
100
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
101
101
|
fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
102
|
-
toExecutionAddress: import("../index.
|
|
102
|
+
toExecutionAddress: import("../index.ts").ExecutionAddressType;
|
|
103
103
|
}>;
|
|
104
104
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
105
105
|
}>>;
|
|
@@ -216,12 +216,12 @@ export declare const BeaconBlock: ContainerType<{
|
|
|
216
216
|
withdrawals: ListCompositeType<ContainerType<{
|
|
217
217
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
218
218
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
219
|
-
address: import("../index.
|
|
219
|
+
address: import("../index.ts").ExecutionAddressType;
|
|
220
220
|
amount: import("@chainsafe/ssz").UintBigintType;
|
|
221
221
|
}>>;
|
|
222
222
|
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
223
223
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
224
|
-
feeRecipient: import("../index.
|
|
224
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
225
225
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
226
226
|
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
227
227
|
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -238,7 +238,7 @@ export declare const BeaconBlock: ContainerType<{
|
|
|
238
238
|
message: ContainerType<{
|
|
239
239
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
240
240
|
fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
241
|
-
toExecutionAddress: import("../index.
|
|
241
|
+
toExecutionAddress: import("../index.ts").ExecutionAddressType;
|
|
242
242
|
}>;
|
|
243
243
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
244
244
|
}>>;
|
|
@@ -357,12 +357,12 @@ export declare const SignedBeaconBlock: ContainerType<{
|
|
|
357
357
|
withdrawals: ListCompositeType<ContainerType<{
|
|
358
358
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
359
359
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
360
|
-
address: import("../index.
|
|
360
|
+
address: import("../index.ts").ExecutionAddressType;
|
|
361
361
|
amount: import("@chainsafe/ssz").UintBigintType;
|
|
362
362
|
}>>;
|
|
363
363
|
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
364
364
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
365
|
-
feeRecipient: import("../index.
|
|
365
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
366
366
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
367
367
|
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
368
368
|
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -379,7 +379,7 @@ export declare const SignedBeaconBlock: ContainerType<{
|
|
|
379
379
|
message: ContainerType<{
|
|
380
380
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
381
381
|
fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
382
|
-
toExecutionAddress: import("../index.
|
|
382
|
+
toExecutionAddress: import("../index.ts").ExecutionAddressType;
|
|
383
383
|
}>;
|
|
384
384
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
385
385
|
}>>;
|
|
@@ -494,7 +494,7 @@ export declare const BuilderBid: ContainerType<{
|
|
|
494
494
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
495
495
|
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
496
496
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
497
|
-
feeRecipient: import("../index.
|
|
497
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
498
498
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
499
499
|
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
500
500
|
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -516,7 +516,7 @@ export declare const SignedBuilderBid: ContainerType<{
|
|
|
516
516
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
517
517
|
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
518
518
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
519
|
-
feeRecipient: import("../index.
|
|
519
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
520
520
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
521
521
|
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
522
522
|
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -572,7 +572,7 @@ export declare const BeaconState: ContainerType<{
|
|
|
572
572
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
573
573
|
}>>;
|
|
574
574
|
eth1DepositIndex: import("@chainsafe/ssz").UintNumberType;
|
|
575
|
-
validators: ListCompositeType<import("../phase0/validator.
|
|
575
|
+
validators: ListCompositeType<import("../phase0/validator.ts").ValidatorNodeStructType>;
|
|
576
576
|
balances: import("@chainsafe/ssz").ListUintNum64Type;
|
|
577
577
|
randaoMixes: VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
578
578
|
slashings: import("@chainsafe/ssz").VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
@@ -604,7 +604,7 @@ export declare const BeaconState: ContainerType<{
|
|
|
604
604
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
605
605
|
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
606
606
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
607
|
-
feeRecipient: import("../index.
|
|
607
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
608
608
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
609
609
|
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
610
610
|
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -629,7 +629,7 @@ export declare const BlindedBeaconBlockBody: ContainerType<{
|
|
|
629
629
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
630
630
|
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
631
631
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
632
|
-
feeRecipient: import("../index.
|
|
632
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
633
633
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
634
634
|
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
635
635
|
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -646,7 +646,7 @@ export declare const BlindedBeaconBlockBody: ContainerType<{
|
|
|
646
646
|
message: ContainerType<{
|
|
647
647
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
648
648
|
fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
649
|
-
toExecutionAddress: import("../index.
|
|
649
|
+
toExecutionAddress: import("../index.ts").ExecutionAddressType;
|
|
650
650
|
}>;
|
|
651
651
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
652
652
|
}>>;
|
|
@@ -759,7 +759,7 @@ export declare const BlindedBeaconBlock: ContainerType<{
|
|
|
759
759
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
760
760
|
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
761
761
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
762
|
-
feeRecipient: import("../index.
|
|
762
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
763
763
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
764
764
|
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
765
765
|
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -776,7 +776,7 @@ export declare const BlindedBeaconBlock: ContainerType<{
|
|
|
776
776
|
message: ContainerType<{
|
|
777
777
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
778
778
|
fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
779
|
-
toExecutionAddress: import("../index.
|
|
779
|
+
toExecutionAddress: import("../index.ts").ExecutionAddressType;
|
|
780
780
|
}>;
|
|
781
781
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
782
782
|
}>>;
|
|
@@ -895,7 +895,7 @@ export declare const SignedBlindedBeaconBlock: ContainerType<{
|
|
|
895
895
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
896
896
|
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
897
897
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
898
|
-
feeRecipient: import("../index.
|
|
898
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
899
899
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
900
900
|
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
901
901
|
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -912,7 +912,7 @@ export declare const SignedBlindedBeaconBlock: ContainerType<{
|
|
|
912
912
|
message: ContainerType<{
|
|
913
913
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
914
914
|
fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
915
|
-
toExecutionAddress: import("../index.
|
|
915
|
+
toExecutionAddress: import("../index.ts").ExecutionAddressType;
|
|
916
916
|
}>;
|
|
917
917
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
918
918
|
}>>;
|
|
@@ -1038,7 +1038,7 @@ export declare const LightClientHeader: ContainerType<{
|
|
|
1038
1038
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1039
1039
|
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1040
1040
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1041
|
-
feeRecipient: import("../index.
|
|
1041
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
1042
1042
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1043
1043
|
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1044
1044
|
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1066,7 +1066,7 @@ export declare const LightClientBootstrap: ContainerType<{
|
|
|
1066
1066
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1067
1067
|
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1068
1068
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1069
|
-
feeRecipient: import("../index.
|
|
1069
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
1070
1070
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1071
1071
|
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1072
1072
|
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1100,7 +1100,7 @@ export declare const LightClientUpdate: ContainerType<{
|
|
|
1100
1100
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1101
1101
|
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1102
1102
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1103
|
-
feeRecipient: import("../index.
|
|
1103
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
1104
1104
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1105
1105
|
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1106
1106
|
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1132,7 +1132,7 @@ export declare const LightClientUpdate: ContainerType<{
|
|
|
1132
1132
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1133
1133
|
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1134
1134
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1135
|
-
feeRecipient: import("../index.
|
|
1135
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
1136
1136
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1137
1137
|
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1138
1138
|
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1167,7 +1167,7 @@ export declare const LightClientFinalityUpdate: ContainerType<{
|
|
|
1167
1167
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1168
1168
|
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1169
1169
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1170
|
-
feeRecipient: import("../index.
|
|
1170
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
1171
1171
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1172
1172
|
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1173
1173
|
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1194,7 +1194,7 @@ export declare const LightClientFinalityUpdate: ContainerType<{
|
|
|
1194
1194
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1195
1195
|
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1196
1196
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1197
|
-
feeRecipient: import("../index.
|
|
1197
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
1198
1198
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1199
1199
|
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1200
1200
|
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1229,7 +1229,7 @@ export declare const LightClientOptimisticUpdate: ContainerType<{
|
|
|
1229
1229
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1230
1230
|
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1231
1231
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1232
|
-
feeRecipient: import("../index.
|
|
1232
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
1233
1233
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1234
1234
|
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1235
1235
|
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1264,7 +1264,7 @@ export declare const LightClientStore: ContainerType<{
|
|
|
1264
1264
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1265
1265
|
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1266
1266
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1267
|
-
feeRecipient: import("../index.
|
|
1267
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
1268
1268
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1269
1269
|
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1270
1270
|
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1298,7 +1298,7 @@ export declare const LightClientStore: ContainerType<{
|
|
|
1298
1298
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1299
1299
|
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1300
1300
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1301
|
-
feeRecipient: import("../index.
|
|
1301
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
1302
1302
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1303
1303
|
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1304
1304
|
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1330,7 +1330,7 @@ export declare const LightClientStore: ContainerType<{
|
|
|
1330
1330
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1331
1331
|
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1332
1332
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1333
|
-
feeRecipient: import("../index.
|
|
1333
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
1334
1334
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1335
1335
|
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1336
1336
|
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1357,24 +1357,24 @@ export declare const PayloadAttributes: ContainerType<{
|
|
|
1357
1357
|
withdrawals: ListCompositeType<ContainerType<{
|
|
1358
1358
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
1359
1359
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1360
|
-
address: import("../index.
|
|
1360
|
+
address: import("../index.ts").ExecutionAddressType;
|
|
1361
1361
|
amount: import("@chainsafe/ssz").UintBigintType;
|
|
1362
1362
|
}>>;
|
|
1363
1363
|
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
1364
1364
|
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
1365
|
-
suggestedFeeRecipient: import("../index.
|
|
1365
|
+
suggestedFeeRecipient: import("../index.ts").StringType<string>;
|
|
1366
1366
|
}>;
|
|
1367
1367
|
export declare const SSEPayloadAttributes: ContainerType<{
|
|
1368
1368
|
payloadAttributes: ContainerType<{
|
|
1369
1369
|
withdrawals: ListCompositeType<ContainerType<{
|
|
1370
1370
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
1371
1371
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1372
|
-
address: import("../index.
|
|
1372
|
+
address: import("../index.ts").ExecutionAddressType;
|
|
1373
1373
|
amount: import("@chainsafe/ssz").UintBigintType;
|
|
1374
1374
|
}>>;
|
|
1375
1375
|
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
1376
1376
|
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
1377
|
-
suggestedFeeRecipient: import("../index.
|
|
1377
|
+
suggestedFeeRecipient: import("../index.ts").StringType<string>;
|
|
1378
1378
|
}>;
|
|
1379
1379
|
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1380
1380
|
proposalSlot: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"sszTypes.d.ts","sourceRoot":"","sources":["../../src/capella/sszTypes.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/capella/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,OAAO,EAAC,MAAM,gBAAgB,CAAC;AACvC,OAAO,KAAK,GAAG,MAAM,eAAe,CAAC;AAErC,MAAM,MAAM,UAAU,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,UAAU,CAAC,CAAC;AACxD,MAAM,MAAM,WAAW,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,WAAW,CAAC,CAAC;AAC1D,MAAM,MAAM,oBAAoB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,oBAAoB,CAAC,CAAC;AAC5E,MAAM,MAAM,qBAAqB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,qBAAqB,CAAC,CAAC;AAC9E,MAAM,MAAM,0BAA0B,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,0BAA0B,CAAC,CAAC;AAExF,MAAM,MAAM,gBAAgB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,gBAAgB,CAAC,CAAC;AACpE,MAAM,MAAM,sBAAsB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,sBAAsB,CAAC,CAAC;AAEhF,MAAM,MAAM,eAAe,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,eAAe,CAAC,CAAC;AAClE,MAAM,MAAM,WAAW,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,WAAW,CAAC,CAAC;AAC1D,MAAM,MAAM,iBAAiB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,iBAAiB,CAAC,CAAC;AACtE,MAAM,MAAM,WAAW,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,WAAW,CAAC,CAAC;AAE1D,MAAM,MAAM,sBAAsB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,sBAAsB,CAAC,CAAC;AAChF,MAAM,MAAM,kBAAkB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,kBAAkB,CAAC,CAAC;AACxE,MAAM,MAAM,wBAAwB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,wBAAwB,CAAC,CAAC;AAEpF,MAAM,MAAM,6BAA6B,GAAG,gBAAgB,GAAG,sBAAsB,CAAC;AAEtF,MAAM,MAAM,UAAU,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,UAAU,CAAC,CAAC;AACxD,MAAM,MAAM,gBAAgB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,gBAAgB,CAAC,CAAC;AACpE,MAAM,MAAM,oBAAoB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,oBAAoB,CAAC,CAAC;AAE5E,MAAM,MAAM,iBAAiB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,iBAAiB,CAAC,CAAC;AACtE,MAAM,MAAM,oBAAoB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,oBAAoB,CAAC,CAAC;AAC5E,MAAM,MAAM,iBAAiB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,iBAAiB,CAAC,CAAC;AACtE,MAAM,MAAM,yBAAyB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,yBAAyB,CAAC,CAAC;AACtF,MAAM,MAAM,2BAA2B,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,2BAA2B,CAAC,CAAC;AAC1F,MAAM,MAAM,gBAAgB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,gBAAgB,CAAC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/deneb/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAE3B,OAAO,KAAK,GAAG,MAAM,eAAe,CAAC;AACrC,OAAO,KAAK,EAAE,MAAM,YAAY,CAAC;AACjC,OAAO,EAAC,EAAE,EAAE,GAAG,EAAC,CAAC"}
|
package/lib/deneb/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/deneb/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/deneb/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAE3B,OAAO,KAAK,GAAG,MAAM,eAAe,CAAC;AACrC,OAAO,KAAK,EAAE,MAAM,YAAY,CAAC;AACjC,OAAO,EAAC,EAAE,EAAE,GAAG,EAAC,CAAC"}
|