@lodestar/types 1.46.0-dev.82546f11da → 1.46.0-dev.92d84f9b7f
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/sszTypes.d.ts +5 -5
- package/lib/bellatrix/sszTypes.d.ts +8 -8
- package/lib/capella/sszTypes.d.ts +8 -8
- package/lib/deneb/sszTypes.d.ts +10 -10
- package/lib/electra/sszTypes.d.ts +10 -10
- package/lib/fulu/sszTypes.d.ts +6 -6
- package/lib/gloas/sszTypes.d.ts +24 -24
- package/lib/gloas/sszTypes.d.ts.map +1 -1
- package/lib/gloas/sszTypes.js +12 -4
- package/lib/gloas/sszTypes.js.map +1 -1
- package/lib/phase0/sszTypes.d.ts +7 -7
- package/lib/phase0/sszTypes.d.ts.map +1 -1
- package/lib/phase0/sszTypes.js +2 -1
- package/lib/phase0/sszTypes.js.map +1 -1
- package/lib/phase0/validator.d.ts.map +1 -1
- package/lib/phase0/validator.js.map +1 -1
- package/lib/sszTypes.d.ts +200 -200
- package/lib/sszTypes.js.map +1 -1
- package/lib/types.js +1 -2
- package/lib/types.js.map +1 -1
- package/lib/utils/array.js.map +1 -1
- package/lib/utils/container.js.map +1 -1
- package/lib/utils/executionAddress.js.map +1 -1
- package/lib/utils/stringType.js.map +1 -1
- package/lib/utils/typeguards.js.map +1 -1
- package/lib/utils/validatorStatus.js.map +1 -1
- package/package.json +14 -14
- package/src/gloas/sszTypes.ts +12 -4
- package/src/phase0/sszTypes.ts +2 -1
package/lib/sszTypes.d.ts
CHANGED
|
@@ -76,12 +76,12 @@ declare const typesByFork: {
|
|
|
76
76
|
}>;
|
|
77
77
|
Eth1Data: ContainerType<{
|
|
78
78
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
79
|
-
depositCount: import("@chainsafe/ssz").
|
|
79
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
80
80
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
81
81
|
}>;
|
|
82
82
|
Eth1DataVotes: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
83
83
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
84
|
-
depositCount: import("@chainsafe/ssz").
|
|
84
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
85
85
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
86
86
|
}>>;
|
|
87
87
|
Eth1DataOrdered: ContainerType<{
|
|
@@ -323,7 +323,7 @@ declare const typesByFork: {
|
|
|
323
323
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
324
324
|
eth1Data: ContainerType<{
|
|
325
325
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
326
|
-
depositCount: import("@chainsafe/ssz").
|
|
326
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
327
327
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
328
328
|
}>;
|
|
329
329
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -428,7 +428,7 @@ declare const typesByFork: {
|
|
|
428
428
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
429
429
|
eth1Data: ContainerType<{
|
|
430
430
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
431
|
-
depositCount: import("@chainsafe/ssz").
|
|
431
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
432
432
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
433
433
|
}>;
|
|
434
434
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -535,7 +535,7 @@ declare const typesByFork: {
|
|
|
535
535
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
536
536
|
eth1Data: ContainerType<{
|
|
537
537
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
538
|
-
depositCount: import("@chainsafe/ssz").
|
|
538
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
539
539
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
540
540
|
}>;
|
|
541
541
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -673,12 +673,12 @@ declare const typesByFork: {
|
|
|
673
673
|
historicalRoots: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
674
674
|
eth1Data: ContainerType<{
|
|
675
675
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
676
|
-
depositCount: import("@chainsafe/ssz").
|
|
676
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
677
677
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
678
678
|
}>;
|
|
679
679
|
eth1DataVotes: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
680
680
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
681
|
-
depositCount: import("@chainsafe/ssz").
|
|
681
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
682
682
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
683
683
|
}>>;
|
|
684
684
|
eth1DepositIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -880,12 +880,12 @@ declare const typesByFork: {
|
|
|
880
880
|
}>;
|
|
881
881
|
Eth1Data: ContainerType<{
|
|
882
882
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
883
|
-
depositCount: import("@chainsafe/ssz").
|
|
883
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
884
884
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
885
885
|
}>;
|
|
886
886
|
Eth1DataVotes: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
887
887
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
888
|
-
depositCount: import("@chainsafe/ssz").
|
|
888
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
889
889
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
890
890
|
}>>;
|
|
891
891
|
Eth1DataOrdered: ContainerType<{
|
|
@@ -1274,7 +1274,7 @@ declare const typesByFork: {
|
|
|
1274
1274
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
1275
1275
|
eth1Data: ContainerType<{
|
|
1276
1276
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1277
|
-
depositCount: import("@chainsafe/ssz").
|
|
1277
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
1278
1278
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1279
1279
|
}>;
|
|
1280
1280
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1383,7 +1383,7 @@ declare const typesByFork: {
|
|
|
1383
1383
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
1384
1384
|
eth1Data: ContainerType<{
|
|
1385
1385
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1386
|
-
depositCount: import("@chainsafe/ssz").
|
|
1386
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
1387
1387
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1388
1388
|
}>;
|
|
1389
1389
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1494,7 +1494,7 @@ declare const typesByFork: {
|
|
|
1494
1494
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
1495
1495
|
eth1Data: ContainerType<{
|
|
1496
1496
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1497
|
-
depositCount: import("@chainsafe/ssz").
|
|
1497
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
1498
1498
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1499
1499
|
}>;
|
|
1500
1500
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1620,12 +1620,12 @@ declare const typesByFork: {
|
|
|
1620
1620
|
historicalRoots: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
1621
1621
|
eth1Data: ContainerType<{
|
|
1622
1622
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1623
|
-
depositCount: import("@chainsafe/ssz").
|
|
1623
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
1624
1624
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1625
1625
|
}>;
|
|
1626
1626
|
eth1DataVotes: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
1627
1627
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1628
|
-
depositCount: import("@chainsafe/ssz").
|
|
1628
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
1629
1629
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1630
1630
|
}>>;
|
|
1631
1631
|
eth1DepositIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -1880,12 +1880,12 @@ declare const typesByFork: {
|
|
|
1880
1880
|
}>;
|
|
1881
1881
|
Eth1Data: ContainerType<{
|
|
1882
1882
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1883
|
-
depositCount: import("@chainsafe/ssz").
|
|
1883
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
1884
1884
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1885
1885
|
}>;
|
|
1886
1886
|
Eth1DataVotes: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
1887
1887
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1888
|
-
depositCount: import("@chainsafe/ssz").
|
|
1888
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
1889
1889
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1890
1890
|
}>>;
|
|
1891
1891
|
Eth1DataOrdered: ContainerType<{
|
|
@@ -2476,7 +2476,7 @@ declare const typesByFork: {
|
|
|
2476
2476
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
2477
2477
|
eth1Data: ContainerType<{
|
|
2478
2478
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2479
|
-
depositCount: import("@chainsafe/ssz").
|
|
2479
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
2480
2480
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
2481
2481
|
}>;
|
|
2482
2482
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -2601,7 +2601,7 @@ declare const typesByFork: {
|
|
|
2601
2601
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
2602
2602
|
eth1Data: ContainerType<{
|
|
2603
2603
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2604
|
-
depositCount: import("@chainsafe/ssz").
|
|
2604
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
2605
2605
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
2606
2606
|
}>;
|
|
2607
2607
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -2728,7 +2728,7 @@ declare const typesByFork: {
|
|
|
2728
2728
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
2729
2729
|
eth1Data: ContainerType<{
|
|
2730
2730
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2731
|
-
depositCount: import("@chainsafe/ssz").
|
|
2731
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
2732
2732
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
2733
2733
|
}>;
|
|
2734
2734
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -2873,12 +2873,12 @@ declare const typesByFork: {
|
|
|
2873
2873
|
historicalRoots: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
2874
2874
|
eth1Data: ContainerType<{
|
|
2875
2875
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2876
|
-
depositCount: import("@chainsafe/ssz").
|
|
2876
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
2877
2877
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
2878
2878
|
}>;
|
|
2879
2879
|
eth1DataVotes: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
2880
2880
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2881
|
-
depositCount: import("@chainsafe/ssz").
|
|
2881
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
2882
2882
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
2883
2883
|
}>>;
|
|
2884
2884
|
eth1DepositIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -2931,7 +2931,7 @@ declare const typesByFork: {
|
|
|
2931
2931
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
2932
2932
|
eth1Data: ContainerType<{
|
|
2933
2933
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2934
|
-
depositCount: import("@chainsafe/ssz").
|
|
2934
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
2935
2935
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
2936
2936
|
}>;
|
|
2937
2937
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -3056,7 +3056,7 @@ declare const typesByFork: {
|
|
|
3056
3056
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
3057
3057
|
eth1Data: ContainerType<{
|
|
3058
3058
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
3059
|
-
depositCount: import("@chainsafe/ssz").
|
|
3059
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
3060
3060
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
3061
3061
|
}>;
|
|
3062
3062
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -3183,7 +3183,7 @@ declare const typesByFork: {
|
|
|
3183
3183
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
3184
3184
|
eth1Data: ContainerType<{
|
|
3185
3185
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
3186
|
-
depositCount: import("@chainsafe/ssz").
|
|
3186
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
3187
3187
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
3188
3188
|
}>;
|
|
3189
3189
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -3455,12 +3455,12 @@ declare const typesByFork: {
|
|
|
3455
3455
|
}>;
|
|
3456
3456
|
Eth1Data: ContainerType<{
|
|
3457
3457
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
3458
|
-
depositCount: import("@chainsafe/ssz").
|
|
3458
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
3459
3459
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
3460
3460
|
}>;
|
|
3461
3461
|
Eth1DataVotes: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
3462
3462
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
3463
|
-
depositCount: import("@chainsafe/ssz").
|
|
3463
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
3464
3464
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
3465
3465
|
}>>;
|
|
3466
3466
|
Eth1DataOrdered: ContainerType<{
|
|
@@ -3972,7 +3972,7 @@ declare const typesByFork: {
|
|
|
3972
3972
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
3973
3973
|
eth1Data: ContainerType<{
|
|
3974
3974
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
3975
|
-
depositCount: import("@chainsafe/ssz").
|
|
3975
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
3976
3976
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
3977
3977
|
}>;
|
|
3978
3978
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -4111,7 +4111,7 @@ declare const typesByFork: {
|
|
|
4111
4111
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
4112
4112
|
eth1Data: ContainerType<{
|
|
4113
4113
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
4114
|
-
depositCount: import("@chainsafe/ssz").
|
|
4114
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
4115
4115
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
4116
4116
|
}>;
|
|
4117
4117
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -4252,7 +4252,7 @@ declare const typesByFork: {
|
|
|
4252
4252
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
4253
4253
|
eth1Data: ContainerType<{
|
|
4254
4254
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
4255
|
-
depositCount: import("@chainsafe/ssz").
|
|
4255
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
4256
4256
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
4257
4257
|
}>;
|
|
4258
4258
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -4459,12 +4459,12 @@ declare const typesByFork: {
|
|
|
4459
4459
|
historicalRoots: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
4460
4460
|
eth1Data: ContainerType<{
|
|
4461
4461
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
4462
|
-
depositCount: import("@chainsafe/ssz").
|
|
4462
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
4463
4463
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
4464
4464
|
}>;
|
|
4465
4465
|
eth1DataVotes: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
4466
4466
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
4467
|
-
depositCount: import("@chainsafe/ssz").
|
|
4467
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
4468
4468
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
4469
4469
|
}>>;
|
|
4470
4470
|
eth1DepositIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -4524,7 +4524,7 @@ declare const typesByFork: {
|
|
|
4524
4524
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
4525
4525
|
eth1Data: ContainerType<{
|
|
4526
4526
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
4527
|
-
depositCount: import("@chainsafe/ssz").
|
|
4527
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
4528
4528
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
4529
4529
|
}>;
|
|
4530
4530
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -4658,7 +4658,7 @@ declare const typesByFork: {
|
|
|
4658
4658
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
4659
4659
|
eth1Data: ContainerType<{
|
|
4660
4660
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
4661
|
-
depositCount: import("@chainsafe/ssz").
|
|
4661
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
4662
4662
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
4663
4663
|
}>;
|
|
4664
4664
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -4794,7 +4794,7 @@ declare const typesByFork: {
|
|
|
4794
4794
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
4795
4795
|
eth1Data: ContainerType<{
|
|
4796
4796
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
4797
|
-
depositCount: import("@chainsafe/ssz").
|
|
4797
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
4798
4798
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
4799
4799
|
}>;
|
|
4800
4800
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -5349,12 +5349,12 @@ declare const typesByFork: {
|
|
|
5349
5349
|
}>;
|
|
5350
5350
|
Eth1Data: ContainerType<{
|
|
5351
5351
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
5352
|
-
depositCount: import("@chainsafe/ssz").
|
|
5352
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
5353
5353
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
5354
5354
|
}>;
|
|
5355
5355
|
Eth1DataVotes: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
5356
5356
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
5357
|
-
depositCount: import("@chainsafe/ssz").
|
|
5357
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
5358
5358
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
5359
5359
|
}>>;
|
|
5360
5360
|
Eth1DataOrdered: ContainerType<{
|
|
@@ -5898,7 +5898,7 @@ declare const typesByFork: {
|
|
|
5898
5898
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
5899
5899
|
eth1Data: ContainerType<{
|
|
5900
5900
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
5901
|
-
depositCount: import("@chainsafe/ssz").
|
|
5901
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
5902
5902
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
5903
5903
|
}>;
|
|
5904
5904
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -6040,7 +6040,7 @@ declare const typesByFork: {
|
|
|
6040
6040
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
6041
6041
|
eth1Data: ContainerType<{
|
|
6042
6042
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
6043
|
-
depositCount: import("@chainsafe/ssz").
|
|
6043
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
6044
6044
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
6045
6045
|
}>;
|
|
6046
6046
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -6184,7 +6184,7 @@ declare const typesByFork: {
|
|
|
6184
6184
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
6185
6185
|
eth1Data: ContainerType<{
|
|
6186
6186
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
6187
|
-
depositCount: import("@chainsafe/ssz").
|
|
6187
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
6188
6188
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
6189
6189
|
}>;
|
|
6190
6190
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -6364,7 +6364,7 @@ declare const typesByFork: {
|
|
|
6364
6364
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
6365
6365
|
eth1Data: ContainerType<{
|
|
6366
6366
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
6367
|
-
depositCount: import("@chainsafe/ssz").
|
|
6367
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
6368
6368
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
6369
6369
|
}>;
|
|
6370
6370
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -6501,7 +6501,7 @@ declare const typesByFork: {
|
|
|
6501
6501
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
6502
6502
|
eth1Data: ContainerType<{
|
|
6503
6503
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
6504
|
-
depositCount: import("@chainsafe/ssz").
|
|
6504
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
6505
6505
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
6506
6506
|
}>;
|
|
6507
6507
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -6640,7 +6640,7 @@ declare const typesByFork: {
|
|
|
6640
6640
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
6641
6641
|
eth1Data: ContainerType<{
|
|
6642
6642
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
6643
|
-
depositCount: import("@chainsafe/ssz").
|
|
6643
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
6644
6644
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
6645
6645
|
}>;
|
|
6646
6646
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -6874,12 +6874,12 @@ declare const typesByFork: {
|
|
|
6874
6874
|
historicalRoots: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
6875
6875
|
eth1Data: ContainerType<{
|
|
6876
6876
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
6877
|
-
depositCount: import("@chainsafe/ssz").
|
|
6877
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
6878
6878
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
6879
6879
|
}>;
|
|
6880
6880
|
eth1DataVotes: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
6881
6881
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
6882
|
-
depositCount: import("@chainsafe/ssz").
|
|
6882
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
6883
6883
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
6884
6884
|
}>>;
|
|
6885
6885
|
eth1DepositIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -7325,7 +7325,7 @@ declare const typesByFork: {
|
|
|
7325
7325
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
7326
7326
|
eth1Data: ContainerType<{
|
|
7327
7327
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
7328
|
-
depositCount: import("@chainsafe/ssz").
|
|
7328
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
7329
7329
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
7330
7330
|
}>;
|
|
7331
7331
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -7473,7 +7473,7 @@ declare const typesByFork: {
|
|
|
7473
7473
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
7474
7474
|
eth1Data: ContainerType<{
|
|
7475
7475
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
7476
|
-
depositCount: import("@chainsafe/ssz").
|
|
7476
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
7477
7477
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
7478
7478
|
}>;
|
|
7479
7479
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -7682,12 +7682,12 @@ declare const typesByFork: {
|
|
|
7682
7682
|
}>;
|
|
7683
7683
|
Eth1Data: ContainerType<{
|
|
7684
7684
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
7685
|
-
depositCount: import("@chainsafe/ssz").
|
|
7685
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
7686
7686
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
7687
7687
|
}>;
|
|
7688
7688
|
Eth1DataVotes: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
7689
7689
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
7690
|
-
depositCount: import("@chainsafe/ssz").
|
|
7690
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
7691
7691
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
7692
7692
|
}>>;
|
|
7693
7693
|
Eth1DataOrdered: ContainerType<{
|
|
@@ -8391,7 +8391,7 @@ declare const typesByFork: {
|
|
|
8391
8391
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
8392
8392
|
eth1Data: ContainerType<{
|
|
8393
8393
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8394
|
-
depositCount: import("@chainsafe/ssz").
|
|
8394
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
8395
8395
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
8396
8396
|
}>;
|
|
8397
8397
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -8553,7 +8553,7 @@ declare const typesByFork: {
|
|
|
8553
8553
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
8554
8554
|
eth1Data: ContainerType<{
|
|
8555
8555
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8556
|
-
depositCount: import("@chainsafe/ssz").
|
|
8556
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
8557
8557
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
8558
8558
|
}>;
|
|
8559
8559
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -8717,7 +8717,7 @@ declare const typesByFork: {
|
|
|
8717
8717
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
8718
8718
|
eth1Data: ContainerType<{
|
|
8719
8719
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8720
|
-
depositCount: import("@chainsafe/ssz").
|
|
8720
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
8721
8721
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
8722
8722
|
}>;
|
|
8723
8723
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -8877,7 +8877,7 @@ declare const typesByFork: {
|
|
|
8877
8877
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
8878
8878
|
eth1Data: ContainerType<{
|
|
8879
8879
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8880
|
-
depositCount: import("@chainsafe/ssz").
|
|
8880
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
8881
8881
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
8882
8882
|
}>;
|
|
8883
8883
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -9034,7 +9034,7 @@ declare const typesByFork: {
|
|
|
9034
9034
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
9035
9035
|
eth1Data: ContainerType<{
|
|
9036
9036
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9037
|
-
depositCount: import("@chainsafe/ssz").
|
|
9037
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
9038
9038
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
9039
9039
|
}>;
|
|
9040
9040
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -9193,7 +9193,7 @@ declare const typesByFork: {
|
|
|
9193
9193
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
9194
9194
|
eth1Data: ContainerType<{
|
|
9195
9195
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9196
|
-
depositCount: import("@chainsafe/ssz").
|
|
9196
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
9197
9197
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
9198
9198
|
}>;
|
|
9199
9199
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -9486,12 +9486,12 @@ declare const typesByFork: {
|
|
|
9486
9486
|
historicalRoots: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
9487
9487
|
eth1Data: ContainerType<{
|
|
9488
9488
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9489
|
-
depositCount: import("@chainsafe/ssz").
|
|
9489
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
9490
9490
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
9491
9491
|
}>;
|
|
9492
9492
|
eth1DataVotes: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
9493
9493
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9494
|
-
depositCount: import("@chainsafe/ssz").
|
|
9494
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
9495
9495
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
9496
9496
|
}>>;
|
|
9497
9497
|
eth1DepositIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -9930,7 +9930,7 @@ declare const typesByFork: {
|
|
|
9930
9930
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
9931
9931
|
eth1Data: ContainerType<{
|
|
9932
9932
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9933
|
-
depositCount: import("@chainsafe/ssz").
|
|
9933
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
9934
9934
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
9935
9935
|
}>;
|
|
9936
9936
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -10098,7 +10098,7 @@ declare const typesByFork: {
|
|
|
10098
10098
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
10099
10099
|
eth1Data: ContainerType<{
|
|
10100
10100
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10101
|
-
depositCount: import("@chainsafe/ssz").
|
|
10101
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
10102
10102
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
10103
10103
|
}>;
|
|
10104
10104
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -10327,12 +10327,12 @@ declare const typesByFork: {
|
|
|
10327
10327
|
}>;
|
|
10328
10328
|
Eth1Data: ContainerType<{
|
|
10329
10329
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10330
|
-
depositCount: import("@chainsafe/ssz").
|
|
10330
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
10331
10331
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
10332
10332
|
}>;
|
|
10333
10333
|
Eth1DataVotes: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
10334
10334
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10335
|
-
depositCount: import("@chainsafe/ssz").
|
|
10335
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
10336
10336
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
10337
10337
|
}>>;
|
|
10338
10338
|
Eth1DataOrdered: ContainerType<{
|
|
@@ -10985,7 +10985,7 @@ declare const typesByFork: {
|
|
|
10985
10985
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
10986
10986
|
eth1Data: ContainerType<{
|
|
10987
10987
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10988
|
-
depositCount: import("@chainsafe/ssz").
|
|
10988
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
10989
10989
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
10990
10990
|
}>;
|
|
10991
10991
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -11142,7 +11142,7 @@ declare const typesByFork: {
|
|
|
11142
11142
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
11143
11143
|
eth1Data: ContainerType<{
|
|
11144
11144
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
11145
|
-
depositCount: import("@chainsafe/ssz").
|
|
11145
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
11146
11146
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
11147
11147
|
}>;
|
|
11148
11148
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -11299,7 +11299,7 @@ declare const typesByFork: {
|
|
|
11299
11299
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
11300
11300
|
eth1Data: ContainerType<{
|
|
11301
11301
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
11302
|
-
depositCount: import("@chainsafe/ssz").
|
|
11302
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
11303
11303
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
11304
11304
|
}>;
|
|
11305
11305
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -11458,7 +11458,7 @@ declare const typesByFork: {
|
|
|
11458
11458
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
11459
11459
|
eth1Data: ContainerType<{
|
|
11460
11460
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
11461
|
-
depositCount: import("@chainsafe/ssz").
|
|
11461
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
11462
11462
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
11463
11463
|
}>;
|
|
11464
11464
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -12164,7 +12164,7 @@ declare const typesByFork: {
|
|
|
12164
12164
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
12165
12165
|
eth1Data: ContainerType<{
|
|
12166
12166
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12167
|
-
depositCount: import("@chainsafe/ssz").
|
|
12167
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
12168
12168
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
12169
12169
|
}>;
|
|
12170
12170
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -12328,7 +12328,7 @@ declare const typesByFork: {
|
|
|
12328
12328
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
12329
12329
|
eth1Data: ContainerType<{
|
|
12330
12330
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12331
|
-
depositCount: import("@chainsafe/ssz").
|
|
12331
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
12332
12332
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
12333
12333
|
}>;
|
|
12334
12334
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -12541,12 +12541,12 @@ declare const typesByFork: {
|
|
|
12541
12541
|
historicalRoots: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12542
12542
|
eth1Data: ContainerType<{
|
|
12543
12543
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12544
|
-
depositCount: import("@chainsafe/ssz").
|
|
12544
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
12545
12545
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
12546
12546
|
}>;
|
|
12547
12547
|
eth1DataVotes: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
12548
12548
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12549
|
-
depositCount: import("@chainsafe/ssz").
|
|
12549
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
12550
12550
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
12551
12551
|
}>>;
|
|
12552
12552
|
eth1DepositIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -12637,7 +12637,7 @@ declare const typesByFork: {
|
|
|
12637
12637
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
12638
12638
|
eth1Data: ContainerType<{
|
|
12639
12639
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12640
|
-
depositCount: import("@chainsafe/ssz").
|
|
12640
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
12641
12641
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
12642
12642
|
}>;
|
|
12643
12643
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -12805,7 +12805,7 @@ declare const typesByFork: {
|
|
|
12805
12805
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
12806
12806
|
eth1Data: ContainerType<{
|
|
12807
12807
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12808
|
-
depositCount: import("@chainsafe/ssz").
|
|
12808
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
12809
12809
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
12810
12810
|
}>;
|
|
12811
12811
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -13034,12 +13034,12 @@ declare const typesByFork: {
|
|
|
13034
13034
|
}>;
|
|
13035
13035
|
Eth1Data: ContainerType<{
|
|
13036
13036
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13037
|
-
depositCount: import("@chainsafe/ssz").
|
|
13037
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
13038
13038
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
13039
13039
|
}>;
|
|
13040
13040
|
Eth1DataVotes: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
13041
13041
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13042
|
-
depositCount: import("@chainsafe/ssz").
|
|
13042
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
13043
13043
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
13044
13044
|
}>>;
|
|
13045
13045
|
Eth1DataOrdered: ContainerType<{
|
|
@@ -13432,7 +13432,7 @@ declare const typesByFork: {
|
|
|
13432
13432
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
13433
13433
|
eth1Data: ContainerType<{
|
|
13434
13434
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13435
|
-
depositCount: import("@chainsafe/ssz").
|
|
13435
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
13436
13436
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
13437
13437
|
}>;
|
|
13438
13438
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -13589,7 +13589,7 @@ declare const typesByFork: {
|
|
|
13589
13589
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
13590
13590
|
eth1Data: ContainerType<{
|
|
13591
13591
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13592
|
-
depositCount: import("@chainsafe/ssz").
|
|
13592
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
13593
13593
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
13594
13594
|
}>;
|
|
13595
13595
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -13748,7 +13748,7 @@ declare const typesByFork: {
|
|
|
13748
13748
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
13749
13749
|
eth1Data: ContainerType<{
|
|
13750
13750
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13751
|
-
depositCount: import("@chainsafe/ssz").
|
|
13751
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
13752
13752
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
13753
13753
|
}>;
|
|
13754
13754
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -14091,7 +14091,7 @@ declare const typesByFork: {
|
|
|
14091
14091
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
14092
14092
|
eth1Data: ContainerType<{
|
|
14093
14093
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
14094
|
-
depositCount: import("@chainsafe/ssz").
|
|
14094
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
14095
14095
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
14096
14096
|
}>;
|
|
14097
14097
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -14693,7 +14693,7 @@ declare const typesByFork: {
|
|
|
14693
14693
|
proposalSlot: import("@chainsafe/ssz").UintNumberType;
|
|
14694
14694
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
14695
14695
|
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
14696
|
-
targetGasLimit: import("@chainsafe/ssz").
|
|
14696
|
+
targetGasLimit: import("@chainsafe/ssz").UintBigintType;
|
|
14697
14697
|
}>;
|
|
14698
14698
|
SignedProposerPreferences: ContainerType<{
|
|
14699
14699
|
message: ContainerType<{
|
|
@@ -14701,7 +14701,7 @@ declare const typesByFork: {
|
|
|
14701
14701
|
proposalSlot: import("@chainsafe/ssz").UintNumberType;
|
|
14702
14702
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
14703
14703
|
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
14704
|
-
targetGasLimit: import("@chainsafe/ssz").
|
|
14704
|
+
targetGasLimit: import("@chainsafe/ssz").UintBigintType;
|
|
14705
14705
|
}>;
|
|
14706
14706
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
14707
14707
|
}>;
|
|
@@ -14711,11 +14711,11 @@ declare const typesByFork: {
|
|
|
14711
14711
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
14712
14712
|
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
14713
14713
|
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
14714
|
-
gasLimit: import("@chainsafe/ssz").
|
|
14714
|
+
gasLimit: import("@chainsafe/ssz").UintBigintType;
|
|
14715
14715
|
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
14716
14716
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
14717
14717
|
value: import("@chainsafe/ssz").UintNumberType;
|
|
14718
|
-
executionPayment: import("@chainsafe/ssz").
|
|
14718
|
+
executionPayment: import("@chainsafe/ssz").UintBigintType;
|
|
14719
14719
|
blobKzgCommitments: import("@chainsafe/ssz").ProgressiveListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
14720
14720
|
executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
14721
14721
|
}>;
|
|
@@ -14726,11 +14726,11 @@ declare const typesByFork: {
|
|
|
14726
14726
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
14727
14727
|
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
14728
14728
|
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
14729
|
-
gasLimit: import("@chainsafe/ssz").
|
|
14729
|
+
gasLimit: import("@chainsafe/ssz").UintBigintType;
|
|
14730
14730
|
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
14731
14731
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
14732
14732
|
value: import("@chainsafe/ssz").UintNumberType;
|
|
14733
|
-
executionPayment: import("@chainsafe/ssz").
|
|
14733
|
+
executionPayment: import("@chainsafe/ssz").UintBigintType;
|
|
14734
14734
|
blobKzgCommitments: import("@chainsafe/ssz").ProgressiveListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
14735
14735
|
executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
14736
14736
|
}>;
|
|
@@ -14957,7 +14957,7 @@ declare const typesByFork: {
|
|
|
14957
14957
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
14958
14958
|
eth1Data: ContainerType<{
|
|
14959
14959
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
14960
|
-
depositCount: import("@chainsafe/ssz").
|
|
14960
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
14961
14961
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
14962
14962
|
}>;
|
|
14963
14963
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -15072,11 +15072,11 @@ declare const typesByFork: {
|
|
|
15072
15072
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
15073
15073
|
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
15074
15074
|
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
15075
|
-
gasLimit: import("@chainsafe/ssz").
|
|
15075
|
+
gasLimit: import("@chainsafe/ssz").UintBigintType;
|
|
15076
15076
|
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
15077
15077
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
15078
15078
|
value: import("@chainsafe/ssz").UintNumberType;
|
|
15079
|
-
executionPayment: import("@chainsafe/ssz").
|
|
15079
|
+
executionPayment: import("@chainsafe/ssz").UintBigintType;
|
|
15080
15080
|
blobKzgCommitments: import("@chainsafe/ssz").ProgressiveListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
15081
15081
|
executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
15082
15082
|
}>;
|
|
@@ -15131,7 +15131,7 @@ declare const typesByFork: {
|
|
|
15131
15131
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
15132
15132
|
eth1Data: ContainerType<{
|
|
15133
15133
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
15134
|
-
depositCount: import("@chainsafe/ssz").
|
|
15134
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
15135
15135
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
15136
15136
|
}>;
|
|
15137
15137
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -15246,11 +15246,11 @@ declare const typesByFork: {
|
|
|
15246
15246
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
15247
15247
|
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
15248
15248
|
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
15249
|
-
gasLimit: import("@chainsafe/ssz").
|
|
15249
|
+
gasLimit: import("@chainsafe/ssz").UintBigintType;
|
|
15250
15250
|
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
15251
15251
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
15252
15252
|
value: import("@chainsafe/ssz").UintNumberType;
|
|
15253
|
-
executionPayment: import("@chainsafe/ssz").
|
|
15253
|
+
executionPayment: import("@chainsafe/ssz").UintBigintType;
|
|
15254
15254
|
blobKzgCommitments: import("@chainsafe/ssz").ProgressiveListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
15255
15255
|
executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
15256
15256
|
}>;
|
|
@@ -15307,7 +15307,7 @@ declare const typesByFork: {
|
|
|
15307
15307
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
15308
15308
|
eth1Data: ContainerType<{
|
|
15309
15309
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
15310
|
-
depositCount: import("@chainsafe/ssz").
|
|
15310
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
15311
15311
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
15312
15312
|
}>;
|
|
15313
15313
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -15422,11 +15422,11 @@ declare const typesByFork: {
|
|
|
15422
15422
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
15423
15423
|
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
15424
15424
|
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
15425
|
-
gasLimit: import("@chainsafe/ssz").
|
|
15425
|
+
gasLimit: import("@chainsafe/ssz").UintBigintType;
|
|
15426
15426
|
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
15427
15427
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
15428
15428
|
value: import("@chainsafe/ssz").UintNumberType;
|
|
15429
|
-
executionPayment: import("@chainsafe/ssz").
|
|
15429
|
+
executionPayment: import("@chainsafe/ssz").UintBigintType;
|
|
15430
15430
|
blobKzgCommitments: import("@chainsafe/ssz").ProgressiveListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
15431
15431
|
executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
15432
15432
|
}>;
|
|
@@ -15485,7 +15485,7 @@ declare const typesByFork: {
|
|
|
15485
15485
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
15486
15486
|
eth1Data: ContainerType<{
|
|
15487
15487
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
15488
|
-
depositCount: import("@chainsafe/ssz").
|
|
15488
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
15489
15489
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
15490
15490
|
}>;
|
|
15491
15491
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -15600,11 +15600,11 @@ declare const typesByFork: {
|
|
|
15600
15600
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
15601
15601
|
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
15602
15602
|
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
15603
|
-
gasLimit: import("@chainsafe/ssz").
|
|
15603
|
+
gasLimit: import("@chainsafe/ssz").UintBigintType;
|
|
15604
15604
|
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
15605
15605
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
15606
15606
|
value: import("@chainsafe/ssz").UintNumberType;
|
|
15607
|
-
executionPayment: import("@chainsafe/ssz").
|
|
15607
|
+
executionPayment: import("@chainsafe/ssz").UintBigintType;
|
|
15608
15608
|
blobKzgCommitments: import("@chainsafe/ssz").ProgressiveListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
15609
15609
|
executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
15610
15610
|
}>;
|
|
@@ -15902,12 +15902,12 @@ declare const typesByFork: {
|
|
|
15902
15902
|
historicalRoots: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
15903
15903
|
eth1Data: ContainerType<{
|
|
15904
15904
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
15905
|
-
depositCount: import("@chainsafe/ssz").
|
|
15905
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
15906
15906
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
15907
15907
|
}>;
|
|
15908
15908
|
eth1DataVotes: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
15909
15909
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
15910
|
-
depositCount: import("@chainsafe/ssz").
|
|
15910
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
15911
15911
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
15912
15912
|
}>>;
|
|
15913
15913
|
eth1DepositIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -15999,11 +15999,11 @@ declare const typesByFork: {
|
|
|
15999
15999
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
16000
16000
|
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
16001
16001
|
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
16002
|
-
gasLimit: import("@chainsafe/ssz").
|
|
16002
|
+
gasLimit: import("@chainsafe/ssz").UintBigintType;
|
|
16003
16003
|
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
16004
16004
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
16005
16005
|
value: import("@chainsafe/ssz").UintNumberType;
|
|
16006
|
-
executionPayment: import("@chainsafe/ssz").
|
|
16006
|
+
executionPayment: import("@chainsafe/ssz").UintBigintType;
|
|
16007
16007
|
blobKzgCommitments: import("@chainsafe/ssz").ProgressiveListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
16008
16008
|
executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
16009
16009
|
}>;
|
|
@@ -16045,7 +16045,7 @@ declare const typesByFork: {
|
|
|
16045
16045
|
}>>;
|
|
16046
16046
|
parentBeaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
16047
16047
|
slotNumber: import("@chainsafe/ssz").UintNumberType;
|
|
16048
|
-
targetGasLimit: import("@chainsafe/ssz").
|
|
16048
|
+
targetGasLimit: import("@chainsafe/ssz").UintBigintType;
|
|
16049
16049
|
}>;
|
|
16050
16050
|
SSEPayloadAttributes: ContainerType<{
|
|
16051
16051
|
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -16064,7 +16064,7 @@ declare const typesByFork: {
|
|
|
16064
16064
|
}>>;
|
|
16065
16065
|
parentBeaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
16066
16066
|
slotNumber: import("@chainsafe/ssz").UintNumberType;
|
|
16067
|
-
targetGasLimit: import("@chainsafe/ssz").
|
|
16067
|
+
targetGasLimit: import("@chainsafe/ssz").UintBigintType;
|
|
16068
16068
|
}>;
|
|
16069
16069
|
}>;
|
|
16070
16070
|
};
|
|
@@ -16139,12 +16139,12 @@ export declare const phase0: {
|
|
|
16139
16139
|
}>;
|
|
16140
16140
|
Eth1Data: ContainerType<{
|
|
16141
16141
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
16142
|
-
depositCount: import("@chainsafe/ssz").
|
|
16142
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
16143
16143
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
16144
16144
|
}>;
|
|
16145
16145
|
Eth1DataVotes: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
16146
16146
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
16147
|
-
depositCount: import("@chainsafe/ssz").
|
|
16147
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
16148
16148
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
16149
16149
|
}>>;
|
|
16150
16150
|
Eth1DataOrdered: ContainerType<{
|
|
@@ -16386,7 +16386,7 @@ export declare const phase0: {
|
|
|
16386
16386
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
16387
16387
|
eth1Data: ContainerType<{
|
|
16388
16388
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
16389
|
-
depositCount: import("@chainsafe/ssz").
|
|
16389
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
16390
16390
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
16391
16391
|
}>;
|
|
16392
16392
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -16491,7 +16491,7 @@ export declare const phase0: {
|
|
|
16491
16491
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
16492
16492
|
eth1Data: ContainerType<{
|
|
16493
16493
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
16494
|
-
depositCount: import("@chainsafe/ssz").
|
|
16494
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
16495
16495
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
16496
16496
|
}>;
|
|
16497
16497
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -16598,7 +16598,7 @@ export declare const phase0: {
|
|
|
16598
16598
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
16599
16599
|
eth1Data: ContainerType<{
|
|
16600
16600
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
16601
|
-
depositCount: import("@chainsafe/ssz").
|
|
16601
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
16602
16602
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
16603
16603
|
}>;
|
|
16604
16604
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -16736,12 +16736,12 @@ export declare const phase0: {
|
|
|
16736
16736
|
historicalRoots: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
16737
16737
|
eth1Data: ContainerType<{
|
|
16738
16738
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
16739
|
-
depositCount: import("@chainsafe/ssz").
|
|
16739
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
16740
16740
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
16741
16741
|
}>;
|
|
16742
16742
|
eth1DataVotes: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
16743
16743
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
16744
|
-
depositCount: import("@chainsafe/ssz").
|
|
16744
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
16745
16745
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
16746
16746
|
}>>;
|
|
16747
16747
|
eth1DepositIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -16943,12 +16943,12 @@ export declare const altair: {
|
|
|
16943
16943
|
}>;
|
|
16944
16944
|
Eth1Data: ContainerType<{
|
|
16945
16945
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
16946
|
-
depositCount: import("@chainsafe/ssz").
|
|
16946
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
16947
16947
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
16948
16948
|
}>;
|
|
16949
16949
|
Eth1DataVotes: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
16950
16950
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
16951
|
-
depositCount: import("@chainsafe/ssz").
|
|
16951
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
16952
16952
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
16953
16953
|
}>>;
|
|
16954
16954
|
Eth1DataOrdered: ContainerType<{
|
|
@@ -17337,7 +17337,7 @@ export declare const altair: {
|
|
|
17337
17337
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
17338
17338
|
eth1Data: ContainerType<{
|
|
17339
17339
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
17340
|
-
depositCount: import("@chainsafe/ssz").
|
|
17340
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
17341
17341
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
17342
17342
|
}>;
|
|
17343
17343
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -17446,7 +17446,7 @@ export declare const altair: {
|
|
|
17446
17446
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
17447
17447
|
eth1Data: ContainerType<{
|
|
17448
17448
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
17449
|
-
depositCount: import("@chainsafe/ssz").
|
|
17449
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
17450
17450
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
17451
17451
|
}>;
|
|
17452
17452
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -17557,7 +17557,7 @@ export declare const altair: {
|
|
|
17557
17557
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
17558
17558
|
eth1Data: ContainerType<{
|
|
17559
17559
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
17560
|
-
depositCount: import("@chainsafe/ssz").
|
|
17560
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
17561
17561
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
17562
17562
|
}>;
|
|
17563
17563
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -17683,12 +17683,12 @@ export declare const altair: {
|
|
|
17683
17683
|
historicalRoots: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
17684
17684
|
eth1Data: ContainerType<{
|
|
17685
17685
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
17686
|
-
depositCount: import("@chainsafe/ssz").
|
|
17686
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
17687
17687
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
17688
17688
|
}>;
|
|
17689
17689
|
eth1DataVotes: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
17690
17690
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
17691
|
-
depositCount: import("@chainsafe/ssz").
|
|
17691
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
17692
17692
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
17693
17693
|
}>>;
|
|
17694
17694
|
eth1DepositIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -17943,12 +17943,12 @@ export declare const bellatrix: {
|
|
|
17943
17943
|
}>;
|
|
17944
17944
|
Eth1Data: ContainerType<{
|
|
17945
17945
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
17946
|
-
depositCount: import("@chainsafe/ssz").
|
|
17946
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
17947
17947
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
17948
17948
|
}>;
|
|
17949
17949
|
Eth1DataVotes: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
17950
17950
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
17951
|
-
depositCount: import("@chainsafe/ssz").
|
|
17951
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
17952
17952
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
17953
17953
|
}>>;
|
|
17954
17954
|
Eth1DataOrdered: ContainerType<{
|
|
@@ -18539,7 +18539,7 @@ export declare const bellatrix: {
|
|
|
18539
18539
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
18540
18540
|
eth1Data: ContainerType<{
|
|
18541
18541
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
18542
|
-
depositCount: import("@chainsafe/ssz").
|
|
18542
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
18543
18543
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
18544
18544
|
}>;
|
|
18545
18545
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -18664,7 +18664,7 @@ export declare const bellatrix: {
|
|
|
18664
18664
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
18665
18665
|
eth1Data: ContainerType<{
|
|
18666
18666
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
18667
|
-
depositCount: import("@chainsafe/ssz").
|
|
18667
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
18668
18668
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
18669
18669
|
}>;
|
|
18670
18670
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -18791,7 +18791,7 @@ export declare const bellatrix: {
|
|
|
18791
18791
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
18792
18792
|
eth1Data: ContainerType<{
|
|
18793
18793
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
18794
|
-
depositCount: import("@chainsafe/ssz").
|
|
18794
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
18795
18795
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
18796
18796
|
}>;
|
|
18797
18797
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -18936,12 +18936,12 @@ export declare const bellatrix: {
|
|
|
18936
18936
|
historicalRoots: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
18937
18937
|
eth1Data: ContainerType<{
|
|
18938
18938
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
18939
|
-
depositCount: import("@chainsafe/ssz").
|
|
18939
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
18940
18940
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
18941
18941
|
}>;
|
|
18942
18942
|
eth1DataVotes: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
18943
18943
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
18944
|
-
depositCount: import("@chainsafe/ssz").
|
|
18944
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
18945
18945
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
18946
18946
|
}>>;
|
|
18947
18947
|
eth1DepositIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -18994,7 +18994,7 @@ export declare const bellatrix: {
|
|
|
18994
18994
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
18995
18995
|
eth1Data: ContainerType<{
|
|
18996
18996
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
18997
|
-
depositCount: import("@chainsafe/ssz").
|
|
18997
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
18998
18998
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
18999
18999
|
}>;
|
|
19000
19000
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -19119,7 +19119,7 @@ export declare const bellatrix: {
|
|
|
19119
19119
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
19120
19120
|
eth1Data: ContainerType<{
|
|
19121
19121
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
19122
|
-
depositCount: import("@chainsafe/ssz").
|
|
19122
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
19123
19123
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
19124
19124
|
}>;
|
|
19125
19125
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -19246,7 +19246,7 @@ export declare const bellatrix: {
|
|
|
19246
19246
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
19247
19247
|
eth1Data: ContainerType<{
|
|
19248
19248
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
19249
|
-
depositCount: import("@chainsafe/ssz").
|
|
19249
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
19250
19250
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
19251
19251
|
}>;
|
|
19252
19252
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -19518,12 +19518,12 @@ export declare const capella: {
|
|
|
19518
19518
|
}>;
|
|
19519
19519
|
Eth1Data: ContainerType<{
|
|
19520
19520
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
19521
|
-
depositCount: import("@chainsafe/ssz").
|
|
19521
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
19522
19522
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
19523
19523
|
}>;
|
|
19524
19524
|
Eth1DataVotes: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
19525
19525
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
19526
|
-
depositCount: import("@chainsafe/ssz").
|
|
19526
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
19527
19527
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
19528
19528
|
}>>;
|
|
19529
19529
|
Eth1DataOrdered: ContainerType<{
|
|
@@ -20035,7 +20035,7 @@ export declare const capella: {
|
|
|
20035
20035
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
20036
20036
|
eth1Data: ContainerType<{
|
|
20037
20037
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
20038
|
-
depositCount: import("@chainsafe/ssz").
|
|
20038
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
20039
20039
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
20040
20040
|
}>;
|
|
20041
20041
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -20174,7 +20174,7 @@ export declare const capella: {
|
|
|
20174
20174
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
20175
20175
|
eth1Data: ContainerType<{
|
|
20176
20176
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
20177
|
-
depositCount: import("@chainsafe/ssz").
|
|
20177
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
20178
20178
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
20179
20179
|
}>;
|
|
20180
20180
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -20315,7 +20315,7 @@ export declare const capella: {
|
|
|
20315
20315
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
20316
20316
|
eth1Data: ContainerType<{
|
|
20317
20317
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
20318
|
-
depositCount: import("@chainsafe/ssz").
|
|
20318
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
20319
20319
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
20320
20320
|
}>;
|
|
20321
20321
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -20522,12 +20522,12 @@ export declare const capella: {
|
|
|
20522
20522
|
historicalRoots: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
20523
20523
|
eth1Data: ContainerType<{
|
|
20524
20524
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
20525
|
-
depositCount: import("@chainsafe/ssz").
|
|
20525
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
20526
20526
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
20527
20527
|
}>;
|
|
20528
20528
|
eth1DataVotes: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
20529
20529
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
20530
|
-
depositCount: import("@chainsafe/ssz").
|
|
20530
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
20531
20531
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
20532
20532
|
}>>;
|
|
20533
20533
|
eth1DepositIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -20587,7 +20587,7 @@ export declare const capella: {
|
|
|
20587
20587
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
20588
20588
|
eth1Data: ContainerType<{
|
|
20589
20589
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
20590
|
-
depositCount: import("@chainsafe/ssz").
|
|
20590
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
20591
20591
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
20592
20592
|
}>;
|
|
20593
20593
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -20721,7 +20721,7 @@ export declare const capella: {
|
|
|
20721
20721
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
20722
20722
|
eth1Data: ContainerType<{
|
|
20723
20723
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
20724
|
-
depositCount: import("@chainsafe/ssz").
|
|
20724
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
20725
20725
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
20726
20726
|
}>;
|
|
20727
20727
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -20857,7 +20857,7 @@ export declare const capella: {
|
|
|
20857
20857
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
20858
20858
|
eth1Data: ContainerType<{
|
|
20859
20859
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
20860
|
-
depositCount: import("@chainsafe/ssz").
|
|
20860
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
20861
20861
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
20862
20862
|
}>;
|
|
20863
20863
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -21412,12 +21412,12 @@ export declare const deneb: {
|
|
|
21412
21412
|
}>;
|
|
21413
21413
|
Eth1Data: ContainerType<{
|
|
21414
21414
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
21415
|
-
depositCount: import("@chainsafe/ssz").
|
|
21415
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
21416
21416
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
21417
21417
|
}>;
|
|
21418
21418
|
Eth1DataVotes: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
21419
21419
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
21420
|
-
depositCount: import("@chainsafe/ssz").
|
|
21420
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
21421
21421
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
21422
21422
|
}>>;
|
|
21423
21423
|
Eth1DataOrdered: ContainerType<{
|
|
@@ -21961,7 +21961,7 @@ export declare const deneb: {
|
|
|
21961
21961
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
21962
21962
|
eth1Data: ContainerType<{
|
|
21963
21963
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
21964
|
-
depositCount: import("@chainsafe/ssz").
|
|
21964
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
21965
21965
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
21966
21966
|
}>;
|
|
21967
21967
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -22103,7 +22103,7 @@ export declare const deneb: {
|
|
|
22103
22103
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
22104
22104
|
eth1Data: ContainerType<{
|
|
22105
22105
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
22106
|
-
depositCount: import("@chainsafe/ssz").
|
|
22106
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
22107
22107
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
22108
22108
|
}>;
|
|
22109
22109
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -22247,7 +22247,7 @@ export declare const deneb: {
|
|
|
22247
22247
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
22248
22248
|
eth1Data: ContainerType<{
|
|
22249
22249
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
22250
|
-
depositCount: import("@chainsafe/ssz").
|
|
22250
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
22251
22251
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
22252
22252
|
}>;
|
|
22253
22253
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -22427,7 +22427,7 @@ export declare const deneb: {
|
|
|
22427
22427
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
22428
22428
|
eth1Data: ContainerType<{
|
|
22429
22429
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
22430
|
-
depositCount: import("@chainsafe/ssz").
|
|
22430
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
22431
22431
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
22432
22432
|
}>;
|
|
22433
22433
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -22564,7 +22564,7 @@ export declare const deneb: {
|
|
|
22564
22564
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
22565
22565
|
eth1Data: ContainerType<{
|
|
22566
22566
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
22567
|
-
depositCount: import("@chainsafe/ssz").
|
|
22567
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
22568
22568
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
22569
22569
|
}>;
|
|
22570
22570
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -22703,7 +22703,7 @@ export declare const deneb: {
|
|
|
22703
22703
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
22704
22704
|
eth1Data: ContainerType<{
|
|
22705
22705
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
22706
|
-
depositCount: import("@chainsafe/ssz").
|
|
22706
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
22707
22707
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
22708
22708
|
}>;
|
|
22709
22709
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -22937,12 +22937,12 @@ export declare const deneb: {
|
|
|
22937
22937
|
historicalRoots: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
22938
22938
|
eth1Data: ContainerType<{
|
|
22939
22939
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
22940
|
-
depositCount: import("@chainsafe/ssz").
|
|
22940
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
22941
22941
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
22942
22942
|
}>;
|
|
22943
22943
|
eth1DataVotes: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
22944
22944
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
22945
|
-
depositCount: import("@chainsafe/ssz").
|
|
22945
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
22946
22946
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
22947
22947
|
}>>;
|
|
22948
22948
|
eth1DepositIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -23388,7 +23388,7 @@ export declare const deneb: {
|
|
|
23388
23388
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
23389
23389
|
eth1Data: ContainerType<{
|
|
23390
23390
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23391
|
-
depositCount: import("@chainsafe/ssz").
|
|
23391
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
23392
23392
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
23393
23393
|
}>;
|
|
23394
23394
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -23536,7 +23536,7 @@ export declare const deneb: {
|
|
|
23536
23536
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
23537
23537
|
eth1Data: ContainerType<{
|
|
23538
23538
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23539
|
-
depositCount: import("@chainsafe/ssz").
|
|
23539
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
23540
23540
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
23541
23541
|
}>;
|
|
23542
23542
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -23745,12 +23745,12 @@ export declare const electra: {
|
|
|
23745
23745
|
}>;
|
|
23746
23746
|
Eth1Data: ContainerType<{
|
|
23747
23747
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23748
|
-
depositCount: import("@chainsafe/ssz").
|
|
23748
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
23749
23749
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
23750
23750
|
}>;
|
|
23751
23751
|
Eth1DataVotes: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
23752
23752
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23753
|
-
depositCount: import("@chainsafe/ssz").
|
|
23753
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
23754
23754
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
23755
23755
|
}>>;
|
|
23756
23756
|
Eth1DataOrdered: ContainerType<{
|
|
@@ -24454,7 +24454,7 @@ export declare const electra: {
|
|
|
24454
24454
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
24455
24455
|
eth1Data: ContainerType<{
|
|
24456
24456
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
24457
|
-
depositCount: import("@chainsafe/ssz").
|
|
24457
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
24458
24458
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
24459
24459
|
}>;
|
|
24460
24460
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -24616,7 +24616,7 @@ export declare const electra: {
|
|
|
24616
24616
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
24617
24617
|
eth1Data: ContainerType<{
|
|
24618
24618
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
24619
|
-
depositCount: import("@chainsafe/ssz").
|
|
24619
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
24620
24620
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
24621
24621
|
}>;
|
|
24622
24622
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -24780,7 +24780,7 @@ export declare const electra: {
|
|
|
24780
24780
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
24781
24781
|
eth1Data: ContainerType<{
|
|
24782
24782
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
24783
|
-
depositCount: import("@chainsafe/ssz").
|
|
24783
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
24784
24784
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
24785
24785
|
}>;
|
|
24786
24786
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -24940,7 +24940,7 @@ export declare const electra: {
|
|
|
24940
24940
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
24941
24941
|
eth1Data: ContainerType<{
|
|
24942
24942
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
24943
|
-
depositCount: import("@chainsafe/ssz").
|
|
24943
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
24944
24944
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
24945
24945
|
}>;
|
|
24946
24946
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -25097,7 +25097,7 @@ export declare const electra: {
|
|
|
25097
25097
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
25098
25098
|
eth1Data: ContainerType<{
|
|
25099
25099
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25100
|
-
depositCount: import("@chainsafe/ssz").
|
|
25100
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
25101
25101
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
25102
25102
|
}>;
|
|
25103
25103
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -25256,7 +25256,7 @@ export declare const electra: {
|
|
|
25256
25256
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
25257
25257
|
eth1Data: ContainerType<{
|
|
25258
25258
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25259
|
-
depositCount: import("@chainsafe/ssz").
|
|
25259
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
25260
25260
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
25261
25261
|
}>;
|
|
25262
25262
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -25549,12 +25549,12 @@ export declare const electra: {
|
|
|
25549
25549
|
historicalRoots: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
25550
25550
|
eth1Data: ContainerType<{
|
|
25551
25551
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25552
|
-
depositCount: import("@chainsafe/ssz").
|
|
25552
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
25553
25553
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
25554
25554
|
}>;
|
|
25555
25555
|
eth1DataVotes: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
25556
25556
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25557
|
-
depositCount: import("@chainsafe/ssz").
|
|
25557
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
25558
25558
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
25559
25559
|
}>>;
|
|
25560
25560
|
eth1DepositIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -25993,7 +25993,7 @@ export declare const electra: {
|
|
|
25993
25993
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
25994
25994
|
eth1Data: ContainerType<{
|
|
25995
25995
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25996
|
-
depositCount: import("@chainsafe/ssz").
|
|
25996
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
25997
25997
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
25998
25998
|
}>;
|
|
25999
25999
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -26161,7 +26161,7 @@ export declare const electra: {
|
|
|
26161
26161
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
26162
26162
|
eth1Data: ContainerType<{
|
|
26163
26163
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
26164
|
-
depositCount: import("@chainsafe/ssz").
|
|
26164
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
26165
26165
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
26166
26166
|
}>;
|
|
26167
26167
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -26390,12 +26390,12 @@ export declare const fulu: {
|
|
|
26390
26390
|
}>;
|
|
26391
26391
|
Eth1Data: ContainerType<{
|
|
26392
26392
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
26393
|
-
depositCount: import("@chainsafe/ssz").
|
|
26393
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
26394
26394
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
26395
26395
|
}>;
|
|
26396
26396
|
Eth1DataVotes: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
26397
26397
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
26398
|
-
depositCount: import("@chainsafe/ssz").
|
|
26398
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
26399
26399
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
26400
26400
|
}>>;
|
|
26401
26401
|
Eth1DataOrdered: ContainerType<{
|
|
@@ -27048,7 +27048,7 @@ export declare const fulu: {
|
|
|
27048
27048
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
27049
27049
|
eth1Data: ContainerType<{
|
|
27050
27050
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
27051
|
-
depositCount: import("@chainsafe/ssz").
|
|
27051
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
27052
27052
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
27053
27053
|
}>;
|
|
27054
27054
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -27205,7 +27205,7 @@ export declare const fulu: {
|
|
|
27205
27205
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
27206
27206
|
eth1Data: ContainerType<{
|
|
27207
27207
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
27208
|
-
depositCount: import("@chainsafe/ssz").
|
|
27208
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
27209
27209
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
27210
27210
|
}>;
|
|
27211
27211
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -27362,7 +27362,7 @@ export declare const fulu: {
|
|
|
27362
27362
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
27363
27363
|
eth1Data: ContainerType<{
|
|
27364
27364
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
27365
|
-
depositCount: import("@chainsafe/ssz").
|
|
27365
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
27366
27366
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
27367
27367
|
}>;
|
|
27368
27368
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -27521,7 +27521,7 @@ export declare const fulu: {
|
|
|
27521
27521
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
27522
27522
|
eth1Data: ContainerType<{
|
|
27523
27523
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
27524
|
-
depositCount: import("@chainsafe/ssz").
|
|
27524
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
27525
27525
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
27526
27526
|
}>;
|
|
27527
27527
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -28227,7 +28227,7 @@ export declare const fulu: {
|
|
|
28227
28227
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
28228
28228
|
eth1Data: ContainerType<{
|
|
28229
28229
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28230
|
-
depositCount: import("@chainsafe/ssz").
|
|
28230
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
28231
28231
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
28232
28232
|
}>;
|
|
28233
28233
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -28391,7 +28391,7 @@ export declare const fulu: {
|
|
|
28391
28391
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
28392
28392
|
eth1Data: ContainerType<{
|
|
28393
28393
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28394
|
-
depositCount: import("@chainsafe/ssz").
|
|
28394
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
28395
28395
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
28396
28396
|
}>;
|
|
28397
28397
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -28604,12 +28604,12 @@ export declare const fulu: {
|
|
|
28604
28604
|
historicalRoots: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
28605
28605
|
eth1Data: ContainerType<{
|
|
28606
28606
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28607
|
-
depositCount: import("@chainsafe/ssz").
|
|
28607
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
28608
28608
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
28609
28609
|
}>;
|
|
28610
28610
|
eth1DataVotes: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
28611
28611
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28612
|
-
depositCount: import("@chainsafe/ssz").
|
|
28612
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
28613
28613
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
28614
28614
|
}>>;
|
|
28615
28615
|
eth1DepositIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -28700,7 +28700,7 @@ export declare const fulu: {
|
|
|
28700
28700
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
28701
28701
|
eth1Data: ContainerType<{
|
|
28702
28702
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28703
|
-
depositCount: import("@chainsafe/ssz").
|
|
28703
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
28704
28704
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
28705
28705
|
}>;
|
|
28706
28706
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -28868,7 +28868,7 @@ export declare const fulu: {
|
|
|
28868
28868
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
28869
28869
|
eth1Data: ContainerType<{
|
|
28870
28870
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28871
|
-
depositCount: import("@chainsafe/ssz").
|
|
28871
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
28872
28872
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
28873
28873
|
}>;
|
|
28874
28874
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -29097,12 +29097,12 @@ export declare const gloas: {
|
|
|
29097
29097
|
}>;
|
|
29098
29098
|
Eth1Data: ContainerType<{
|
|
29099
29099
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
29100
|
-
depositCount: import("@chainsafe/ssz").
|
|
29100
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
29101
29101
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
29102
29102
|
}>;
|
|
29103
29103
|
Eth1DataVotes: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
29104
29104
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
29105
|
-
depositCount: import("@chainsafe/ssz").
|
|
29105
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
29106
29106
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
29107
29107
|
}>>;
|
|
29108
29108
|
Eth1DataOrdered: ContainerType<{
|
|
@@ -29495,7 +29495,7 @@ export declare const gloas: {
|
|
|
29495
29495
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
29496
29496
|
eth1Data: ContainerType<{
|
|
29497
29497
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
29498
|
-
depositCount: import("@chainsafe/ssz").
|
|
29498
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
29499
29499
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
29500
29500
|
}>;
|
|
29501
29501
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -29652,7 +29652,7 @@ export declare const gloas: {
|
|
|
29652
29652
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
29653
29653
|
eth1Data: ContainerType<{
|
|
29654
29654
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
29655
|
-
depositCount: import("@chainsafe/ssz").
|
|
29655
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
29656
29656
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
29657
29657
|
}>;
|
|
29658
29658
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -29811,7 +29811,7 @@ export declare const gloas: {
|
|
|
29811
29811
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
29812
29812
|
eth1Data: ContainerType<{
|
|
29813
29813
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
29814
|
-
depositCount: import("@chainsafe/ssz").
|
|
29814
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
29815
29815
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
29816
29816
|
}>;
|
|
29817
29817
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -30154,7 +30154,7 @@ export declare const gloas: {
|
|
|
30154
30154
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
30155
30155
|
eth1Data: ContainerType<{
|
|
30156
30156
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
30157
|
-
depositCount: import("@chainsafe/ssz").
|
|
30157
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
30158
30158
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
30159
30159
|
}>;
|
|
30160
30160
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -30756,7 +30756,7 @@ export declare const gloas: {
|
|
|
30756
30756
|
proposalSlot: import("@chainsafe/ssz").UintNumberType;
|
|
30757
30757
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
30758
30758
|
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
30759
|
-
targetGasLimit: import("@chainsafe/ssz").
|
|
30759
|
+
targetGasLimit: import("@chainsafe/ssz").UintBigintType;
|
|
30760
30760
|
}>;
|
|
30761
30761
|
SignedProposerPreferences: ContainerType<{
|
|
30762
30762
|
message: ContainerType<{
|
|
@@ -30764,7 +30764,7 @@ export declare const gloas: {
|
|
|
30764
30764
|
proposalSlot: import("@chainsafe/ssz").UintNumberType;
|
|
30765
30765
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
30766
30766
|
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
30767
|
-
targetGasLimit: import("@chainsafe/ssz").
|
|
30767
|
+
targetGasLimit: import("@chainsafe/ssz").UintBigintType;
|
|
30768
30768
|
}>;
|
|
30769
30769
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
30770
30770
|
}>;
|
|
@@ -30774,11 +30774,11 @@ export declare const gloas: {
|
|
|
30774
30774
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
30775
30775
|
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
30776
30776
|
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
30777
|
-
gasLimit: import("@chainsafe/ssz").
|
|
30777
|
+
gasLimit: import("@chainsafe/ssz").UintBigintType;
|
|
30778
30778
|
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
30779
30779
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
30780
30780
|
value: import("@chainsafe/ssz").UintNumberType;
|
|
30781
|
-
executionPayment: import("@chainsafe/ssz").
|
|
30781
|
+
executionPayment: import("@chainsafe/ssz").UintBigintType;
|
|
30782
30782
|
blobKzgCommitments: import("@chainsafe/ssz").ProgressiveListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
30783
30783
|
executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
30784
30784
|
}>;
|
|
@@ -30789,11 +30789,11 @@ export declare const gloas: {
|
|
|
30789
30789
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
30790
30790
|
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
30791
30791
|
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
30792
|
-
gasLimit: import("@chainsafe/ssz").
|
|
30792
|
+
gasLimit: import("@chainsafe/ssz").UintBigintType;
|
|
30793
30793
|
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
30794
30794
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
30795
30795
|
value: import("@chainsafe/ssz").UintNumberType;
|
|
30796
|
-
executionPayment: import("@chainsafe/ssz").
|
|
30796
|
+
executionPayment: import("@chainsafe/ssz").UintBigintType;
|
|
30797
30797
|
blobKzgCommitments: import("@chainsafe/ssz").ProgressiveListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
30798
30798
|
executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
30799
30799
|
}>;
|
|
@@ -31020,7 +31020,7 @@ export declare const gloas: {
|
|
|
31020
31020
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
31021
31021
|
eth1Data: ContainerType<{
|
|
31022
31022
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
31023
|
-
depositCount: import("@chainsafe/ssz").
|
|
31023
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
31024
31024
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
31025
31025
|
}>;
|
|
31026
31026
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -31135,11 +31135,11 @@ export declare const gloas: {
|
|
|
31135
31135
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
31136
31136
|
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
31137
31137
|
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
31138
|
-
gasLimit: import("@chainsafe/ssz").
|
|
31138
|
+
gasLimit: import("@chainsafe/ssz").UintBigintType;
|
|
31139
31139
|
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
31140
31140
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
31141
31141
|
value: import("@chainsafe/ssz").UintNumberType;
|
|
31142
|
-
executionPayment: import("@chainsafe/ssz").
|
|
31142
|
+
executionPayment: import("@chainsafe/ssz").UintBigintType;
|
|
31143
31143
|
blobKzgCommitments: import("@chainsafe/ssz").ProgressiveListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
31144
31144
|
executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
31145
31145
|
}>;
|
|
@@ -31194,7 +31194,7 @@ export declare const gloas: {
|
|
|
31194
31194
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
31195
31195
|
eth1Data: ContainerType<{
|
|
31196
31196
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
31197
|
-
depositCount: import("@chainsafe/ssz").
|
|
31197
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
31198
31198
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
31199
31199
|
}>;
|
|
31200
31200
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -31309,11 +31309,11 @@ export declare const gloas: {
|
|
|
31309
31309
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
31310
31310
|
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
31311
31311
|
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
31312
|
-
gasLimit: import("@chainsafe/ssz").
|
|
31312
|
+
gasLimit: import("@chainsafe/ssz").UintBigintType;
|
|
31313
31313
|
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
31314
31314
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
31315
31315
|
value: import("@chainsafe/ssz").UintNumberType;
|
|
31316
|
-
executionPayment: import("@chainsafe/ssz").
|
|
31316
|
+
executionPayment: import("@chainsafe/ssz").UintBigintType;
|
|
31317
31317
|
blobKzgCommitments: import("@chainsafe/ssz").ProgressiveListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
31318
31318
|
executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
31319
31319
|
}>;
|
|
@@ -31370,7 +31370,7 @@ export declare const gloas: {
|
|
|
31370
31370
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
31371
31371
|
eth1Data: ContainerType<{
|
|
31372
31372
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
31373
|
-
depositCount: import("@chainsafe/ssz").
|
|
31373
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
31374
31374
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
31375
31375
|
}>;
|
|
31376
31376
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -31485,11 +31485,11 @@ export declare const gloas: {
|
|
|
31485
31485
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
31486
31486
|
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
31487
31487
|
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
31488
|
-
gasLimit: import("@chainsafe/ssz").
|
|
31488
|
+
gasLimit: import("@chainsafe/ssz").UintBigintType;
|
|
31489
31489
|
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
31490
31490
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
31491
31491
|
value: import("@chainsafe/ssz").UintNumberType;
|
|
31492
|
-
executionPayment: import("@chainsafe/ssz").
|
|
31492
|
+
executionPayment: import("@chainsafe/ssz").UintBigintType;
|
|
31493
31493
|
blobKzgCommitments: import("@chainsafe/ssz").ProgressiveListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
31494
31494
|
executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
31495
31495
|
}>;
|
|
@@ -31548,7 +31548,7 @@ export declare const gloas: {
|
|
|
31548
31548
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
31549
31549
|
eth1Data: ContainerType<{
|
|
31550
31550
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
31551
|
-
depositCount: import("@chainsafe/ssz").
|
|
31551
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
31552
31552
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
31553
31553
|
}>;
|
|
31554
31554
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -31663,11 +31663,11 @@ export declare const gloas: {
|
|
|
31663
31663
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
31664
31664
|
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
31665
31665
|
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
31666
|
-
gasLimit: import("@chainsafe/ssz").
|
|
31666
|
+
gasLimit: import("@chainsafe/ssz").UintBigintType;
|
|
31667
31667
|
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
31668
31668
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
31669
31669
|
value: import("@chainsafe/ssz").UintNumberType;
|
|
31670
|
-
executionPayment: import("@chainsafe/ssz").
|
|
31670
|
+
executionPayment: import("@chainsafe/ssz").UintBigintType;
|
|
31671
31671
|
blobKzgCommitments: import("@chainsafe/ssz").ProgressiveListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
31672
31672
|
executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
31673
31673
|
}>;
|
|
@@ -31965,12 +31965,12 @@ export declare const gloas: {
|
|
|
31965
31965
|
historicalRoots: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
31966
31966
|
eth1Data: ContainerType<{
|
|
31967
31967
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
31968
|
-
depositCount: import("@chainsafe/ssz").
|
|
31968
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
31969
31969
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
31970
31970
|
}>;
|
|
31971
31971
|
eth1DataVotes: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
31972
31972
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
31973
|
-
depositCount: import("@chainsafe/ssz").
|
|
31973
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
31974
31974
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
31975
31975
|
}>>;
|
|
31976
31976
|
eth1DepositIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -32062,11 +32062,11 @@ export declare const gloas: {
|
|
|
32062
32062
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
32063
32063
|
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
32064
32064
|
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
32065
|
-
gasLimit: import("@chainsafe/ssz").
|
|
32065
|
+
gasLimit: import("@chainsafe/ssz").UintBigintType;
|
|
32066
32066
|
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
32067
32067
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
32068
32068
|
value: import("@chainsafe/ssz").UintNumberType;
|
|
32069
|
-
executionPayment: import("@chainsafe/ssz").
|
|
32069
|
+
executionPayment: import("@chainsafe/ssz").UintBigintType;
|
|
32070
32070
|
blobKzgCommitments: import("@chainsafe/ssz").ProgressiveListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
32071
32071
|
executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
32072
32072
|
}>;
|
|
@@ -32108,7 +32108,7 @@ export declare const gloas: {
|
|
|
32108
32108
|
}>>;
|
|
32109
32109
|
parentBeaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
32110
32110
|
slotNumber: import("@chainsafe/ssz").UintNumberType;
|
|
32111
|
-
targetGasLimit: import("@chainsafe/ssz").
|
|
32111
|
+
targetGasLimit: import("@chainsafe/ssz").UintBigintType;
|
|
32112
32112
|
}>;
|
|
32113
32113
|
SSEPayloadAttributes: ContainerType<{
|
|
32114
32114
|
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -32127,7 +32127,7 @@ export declare const gloas: {
|
|
|
32127
32127
|
}>>;
|
|
32128
32128
|
parentBeaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
32129
32129
|
slotNumber: import("@chainsafe/ssz").UintNumberType;
|
|
32130
|
-
targetGasLimit: import("@chainsafe/ssz").
|
|
32130
|
+
targetGasLimit: import("@chainsafe/ssz").UintBigintType;
|
|
32131
32131
|
}>;
|
|
32132
32132
|
}>;
|
|
32133
32133
|
};
|