@lodestar/types 1.21.0-dev.2f9275ec13 → 1.21.0-dev.30a13f91fa
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/deneb/sszTypes.d.ts +297 -0
- package/lib/deneb/sszTypes.js +10 -0
- package/lib/deneb/sszTypes.js.map +1 -1
- package/lib/deneb/types.d.ts +3 -3
- package/lib/sszTypes.d.ts +297 -0
- package/lib/types.d.ts +2 -10
- package/package.json +3 -3
package/lib/deneb/sszTypes.d.ts
CHANGED
|
@@ -1487,4 +1487,301 @@ export declare const SSEPayloadAttributes: ContainerType<{
|
|
|
1487
1487
|
parentBlockRoot: ByteVectorType;
|
|
1488
1488
|
parentBlockHash: ByteVectorType;
|
|
1489
1489
|
}>;
|
|
1490
|
+
export declare const BlockContents: ContainerType<{
|
|
1491
|
+
block: ContainerType<{
|
|
1492
|
+
body: ContainerType<{
|
|
1493
|
+
executionPayload: ContainerType<{
|
|
1494
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1495
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1496
|
+
withdrawals: ListCompositeType<ContainerType<{
|
|
1497
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
1498
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1499
|
+
address: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
1500
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
1501
|
+
}>>;
|
|
1502
|
+
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
1503
|
+
parentHash: ByteVectorType;
|
|
1504
|
+
feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
1505
|
+
stateRoot: ByteVectorType;
|
|
1506
|
+
receiptsRoot: ByteVectorType;
|
|
1507
|
+
logsBloom: ByteVectorType;
|
|
1508
|
+
prevRandao: ByteVectorType;
|
|
1509
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
1510
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
1511
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
1512
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
1513
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
1514
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
1515
|
+
blockHash: ByteVectorType;
|
|
1516
|
+
}>;
|
|
1517
|
+
blsToExecutionChanges: ListCompositeType<ContainerType<{
|
|
1518
|
+
message: ContainerType<{
|
|
1519
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1520
|
+
fromBlsPubkey: ByteVectorType;
|
|
1521
|
+
toExecutionAddress: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
1522
|
+
}>;
|
|
1523
|
+
signature: ByteVectorType;
|
|
1524
|
+
}>>;
|
|
1525
|
+
blobKzgCommitments: ListCompositeType<ByteVectorType>;
|
|
1526
|
+
syncAggregate: ContainerType<{
|
|
1527
|
+
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
1528
|
+
syncCommitteeSignature: ByteVectorType;
|
|
1529
|
+
}>;
|
|
1530
|
+
randaoReveal: ByteVectorType;
|
|
1531
|
+
eth1Data: ContainerType<{
|
|
1532
|
+
depositRoot: ByteVectorType;
|
|
1533
|
+
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
1534
|
+
blockHash: ByteVectorType;
|
|
1535
|
+
}>;
|
|
1536
|
+
graffiti: ByteVectorType;
|
|
1537
|
+
proposerSlashings: ListCompositeType<ContainerType<{
|
|
1538
|
+
signedHeader1: ContainerType<{
|
|
1539
|
+
message: ContainerType<{
|
|
1540
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
1541
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1542
|
+
parentRoot: ByteVectorType;
|
|
1543
|
+
stateRoot: ByteVectorType;
|
|
1544
|
+
bodyRoot: ByteVectorType;
|
|
1545
|
+
}>;
|
|
1546
|
+
signature: ByteVectorType;
|
|
1547
|
+
}>;
|
|
1548
|
+
signedHeader2: ContainerType<{
|
|
1549
|
+
message: ContainerType<{
|
|
1550
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
1551
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1552
|
+
parentRoot: ByteVectorType;
|
|
1553
|
+
stateRoot: ByteVectorType;
|
|
1554
|
+
bodyRoot: ByteVectorType;
|
|
1555
|
+
}>;
|
|
1556
|
+
signature: ByteVectorType;
|
|
1557
|
+
}>;
|
|
1558
|
+
}>>;
|
|
1559
|
+
attesterSlashings: ListCompositeType<ContainerType<{
|
|
1560
|
+
attestation1: ContainerType<{
|
|
1561
|
+
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
1562
|
+
data: ContainerType<{
|
|
1563
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
1564
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
1565
|
+
beaconBlockRoot: ByteVectorType;
|
|
1566
|
+
source: ContainerType<{
|
|
1567
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
1568
|
+
root: ByteVectorType;
|
|
1569
|
+
}>;
|
|
1570
|
+
target: ContainerType<{
|
|
1571
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
1572
|
+
root: ByteVectorType;
|
|
1573
|
+
}>;
|
|
1574
|
+
}>;
|
|
1575
|
+
signature: ByteVectorType;
|
|
1576
|
+
}>;
|
|
1577
|
+
attestation2: ContainerType<{
|
|
1578
|
+
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
1579
|
+
data: ContainerType<{
|
|
1580
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
1581
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
1582
|
+
beaconBlockRoot: ByteVectorType;
|
|
1583
|
+
source: ContainerType<{
|
|
1584
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
1585
|
+
root: ByteVectorType;
|
|
1586
|
+
}>;
|
|
1587
|
+
target: ContainerType<{
|
|
1588
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
1589
|
+
root: ByteVectorType;
|
|
1590
|
+
}>;
|
|
1591
|
+
}>;
|
|
1592
|
+
signature: ByteVectorType;
|
|
1593
|
+
}>;
|
|
1594
|
+
}>>;
|
|
1595
|
+
attestations: ListCompositeType<ContainerType<{
|
|
1596
|
+
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
1597
|
+
data: ContainerType<{
|
|
1598
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
1599
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
1600
|
+
beaconBlockRoot: ByteVectorType;
|
|
1601
|
+
source: ContainerType<{
|
|
1602
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
1603
|
+
root: ByteVectorType;
|
|
1604
|
+
}>;
|
|
1605
|
+
target: ContainerType<{
|
|
1606
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
1607
|
+
root: ByteVectorType;
|
|
1608
|
+
}>;
|
|
1609
|
+
}>;
|
|
1610
|
+
signature: ByteVectorType;
|
|
1611
|
+
}>>;
|
|
1612
|
+
deposits: ListCompositeType<ContainerType<{
|
|
1613
|
+
proof: VectorCompositeType<ByteVectorType>;
|
|
1614
|
+
data: ContainerType<{
|
|
1615
|
+
pubkey: ByteVectorType;
|
|
1616
|
+
withdrawalCredentials: ByteVectorType;
|
|
1617
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
1618
|
+
signature: ByteVectorType;
|
|
1619
|
+
}>;
|
|
1620
|
+
}>>;
|
|
1621
|
+
voluntaryExits: ListCompositeType<ContainerType<{
|
|
1622
|
+
message: ContainerType<{
|
|
1623
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
1624
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1625
|
+
}>;
|
|
1626
|
+
signature: ByteVectorType;
|
|
1627
|
+
}>>;
|
|
1628
|
+
}>;
|
|
1629
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
1630
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1631
|
+
parentRoot: ByteVectorType;
|
|
1632
|
+
stateRoot: ByteVectorType;
|
|
1633
|
+
}>;
|
|
1634
|
+
kzgProofs: ListCompositeType<ByteVectorType>;
|
|
1635
|
+
blobs: ListCompositeType<ByteVectorType>;
|
|
1636
|
+
}>;
|
|
1637
|
+
export declare const SignedBlockContents: ContainerType<{
|
|
1638
|
+
signedBlock: ContainerType<{
|
|
1639
|
+
message: ContainerType<{
|
|
1640
|
+
body: ContainerType<{
|
|
1641
|
+
executionPayload: ContainerType<{
|
|
1642
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1643
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1644
|
+
withdrawals: ListCompositeType<ContainerType<{
|
|
1645
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
1646
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1647
|
+
address: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
1648
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
1649
|
+
}>>;
|
|
1650
|
+
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
1651
|
+
parentHash: ByteVectorType;
|
|
1652
|
+
feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
1653
|
+
stateRoot: ByteVectorType;
|
|
1654
|
+
receiptsRoot: ByteVectorType;
|
|
1655
|
+
logsBloom: ByteVectorType;
|
|
1656
|
+
prevRandao: ByteVectorType;
|
|
1657
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
1658
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
1659
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
1660
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
1661
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
1662
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
1663
|
+
blockHash: ByteVectorType;
|
|
1664
|
+
}>;
|
|
1665
|
+
blsToExecutionChanges: ListCompositeType<ContainerType<{
|
|
1666
|
+
message: ContainerType<{
|
|
1667
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1668
|
+
fromBlsPubkey: ByteVectorType;
|
|
1669
|
+
toExecutionAddress: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
1670
|
+
}>;
|
|
1671
|
+
signature: ByteVectorType;
|
|
1672
|
+
}>>;
|
|
1673
|
+
blobKzgCommitments: ListCompositeType<ByteVectorType>;
|
|
1674
|
+
syncAggregate: ContainerType<{
|
|
1675
|
+
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
1676
|
+
syncCommitteeSignature: ByteVectorType;
|
|
1677
|
+
}>;
|
|
1678
|
+
randaoReveal: ByteVectorType;
|
|
1679
|
+
eth1Data: ContainerType<{
|
|
1680
|
+
depositRoot: ByteVectorType;
|
|
1681
|
+
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
1682
|
+
blockHash: ByteVectorType;
|
|
1683
|
+
}>;
|
|
1684
|
+
graffiti: ByteVectorType;
|
|
1685
|
+
proposerSlashings: ListCompositeType<ContainerType<{
|
|
1686
|
+
signedHeader1: ContainerType<{
|
|
1687
|
+
message: ContainerType<{
|
|
1688
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
1689
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1690
|
+
parentRoot: ByteVectorType;
|
|
1691
|
+
stateRoot: ByteVectorType;
|
|
1692
|
+
bodyRoot: ByteVectorType;
|
|
1693
|
+
}>;
|
|
1694
|
+
signature: ByteVectorType;
|
|
1695
|
+
}>;
|
|
1696
|
+
signedHeader2: ContainerType<{
|
|
1697
|
+
message: ContainerType<{
|
|
1698
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
1699
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1700
|
+
parentRoot: ByteVectorType;
|
|
1701
|
+
stateRoot: ByteVectorType;
|
|
1702
|
+
bodyRoot: ByteVectorType;
|
|
1703
|
+
}>;
|
|
1704
|
+
signature: ByteVectorType;
|
|
1705
|
+
}>;
|
|
1706
|
+
}>>;
|
|
1707
|
+
attesterSlashings: ListCompositeType<ContainerType<{
|
|
1708
|
+
attestation1: ContainerType<{
|
|
1709
|
+
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
1710
|
+
data: ContainerType<{
|
|
1711
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
1712
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
1713
|
+
beaconBlockRoot: ByteVectorType;
|
|
1714
|
+
source: ContainerType<{
|
|
1715
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
1716
|
+
root: ByteVectorType;
|
|
1717
|
+
}>;
|
|
1718
|
+
target: ContainerType<{
|
|
1719
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
1720
|
+
root: ByteVectorType;
|
|
1721
|
+
}>;
|
|
1722
|
+
}>;
|
|
1723
|
+
signature: ByteVectorType;
|
|
1724
|
+
}>;
|
|
1725
|
+
attestation2: ContainerType<{
|
|
1726
|
+
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
1727
|
+
data: ContainerType<{
|
|
1728
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
1729
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
1730
|
+
beaconBlockRoot: ByteVectorType;
|
|
1731
|
+
source: ContainerType<{
|
|
1732
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
1733
|
+
root: ByteVectorType;
|
|
1734
|
+
}>;
|
|
1735
|
+
target: ContainerType<{
|
|
1736
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
1737
|
+
root: ByteVectorType;
|
|
1738
|
+
}>;
|
|
1739
|
+
}>;
|
|
1740
|
+
signature: ByteVectorType;
|
|
1741
|
+
}>;
|
|
1742
|
+
}>>;
|
|
1743
|
+
attestations: ListCompositeType<ContainerType<{
|
|
1744
|
+
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
1745
|
+
data: ContainerType<{
|
|
1746
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
1747
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
1748
|
+
beaconBlockRoot: ByteVectorType;
|
|
1749
|
+
source: ContainerType<{
|
|
1750
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
1751
|
+
root: ByteVectorType;
|
|
1752
|
+
}>;
|
|
1753
|
+
target: ContainerType<{
|
|
1754
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
1755
|
+
root: ByteVectorType;
|
|
1756
|
+
}>;
|
|
1757
|
+
}>;
|
|
1758
|
+
signature: ByteVectorType;
|
|
1759
|
+
}>>;
|
|
1760
|
+
deposits: ListCompositeType<ContainerType<{
|
|
1761
|
+
proof: VectorCompositeType<ByteVectorType>;
|
|
1762
|
+
data: ContainerType<{
|
|
1763
|
+
pubkey: ByteVectorType;
|
|
1764
|
+
withdrawalCredentials: ByteVectorType;
|
|
1765
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
1766
|
+
signature: ByteVectorType;
|
|
1767
|
+
}>;
|
|
1768
|
+
}>>;
|
|
1769
|
+
voluntaryExits: ListCompositeType<ContainerType<{
|
|
1770
|
+
message: ContainerType<{
|
|
1771
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
1772
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1773
|
+
}>;
|
|
1774
|
+
signature: ByteVectorType;
|
|
1775
|
+
}>>;
|
|
1776
|
+
}>;
|
|
1777
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
1778
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1779
|
+
parentRoot: ByteVectorType;
|
|
1780
|
+
stateRoot: ByteVectorType;
|
|
1781
|
+
}>;
|
|
1782
|
+
signature: ByteVectorType;
|
|
1783
|
+
}>;
|
|
1784
|
+
kzgProofs: ListCompositeType<ByteVectorType>;
|
|
1785
|
+
blobs: ListCompositeType<ByteVectorType>;
|
|
1786
|
+
}>;
|
|
1490
1787
|
//# sourceMappingURL=sszTypes.d.ts.map
|
package/lib/deneb/sszTypes.js
CHANGED
|
@@ -194,4 +194,14 @@ export const SSEPayloadAttributes = new ContainerType({
|
|
|
194
194
|
...bellatrixSsz.SSEPayloadAttributesCommon.fields,
|
|
195
195
|
payloadAttributes: PayloadAttributes,
|
|
196
196
|
}, { typeName: "SSEPayloadAttributes", jsonCase: "eth2" });
|
|
197
|
+
export const BlockContents = new ContainerType({
|
|
198
|
+
block: BeaconBlock,
|
|
199
|
+
kzgProofs: KZGProofs,
|
|
200
|
+
blobs: Blobs,
|
|
201
|
+
}, { typeName: "BlockContents", jsonCase: "eth2" });
|
|
202
|
+
export const SignedBlockContents = new ContainerType({
|
|
203
|
+
signedBlock: SignedBeaconBlock,
|
|
204
|
+
kzgProofs: KZGProofs,
|
|
205
|
+
blobs: Blobs,
|
|
206
|
+
}, { typeName: "SignedBlockContents", jsonCase: "eth2" });
|
|
197
207
|
//# sourceMappingURL=sszTypes.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sszTypes.js","sourceRoot":"","sources":["../../src/deneb/sszTypes.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"sszTypes.js","sourceRoot":"","sources":["../../src/deneb/sszTypes.ts"],"names":[],"mappings":"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"}
|
package/lib/deneb/types.d.ts
CHANGED
|
@@ -1,6 +1,4 @@
|
|
|
1
1
|
import { ValueOf } from "@chainsafe/ssz";
|
|
2
|
-
import { ForkName } from "@lodestar/params";
|
|
3
|
-
import type { BlockContents } from "../types.js";
|
|
4
2
|
import * as ssz from "./sszTypes.js";
|
|
5
3
|
export type KZGProof = ValueOf<typeof ssz.KZGProof>;
|
|
6
4
|
export type KZGCommitment = ValueOf<typeof ssz.KZGCommitment>;
|
|
@@ -37,5 +35,7 @@ export type LightClientFinalityUpdate = ValueOf<typeof ssz.LightClientFinalityUp
|
|
|
37
35
|
export type LightClientOptimisticUpdate = ValueOf<typeof ssz.LightClientOptimisticUpdate>;
|
|
38
36
|
export type LightClientStore = ValueOf<typeof ssz.LightClientStore>;
|
|
39
37
|
export type ProducedBlobSidecars = Omit<BlobSidecars, "signedBlockHeader" | "kzgCommitmentInclusionProof">;
|
|
40
|
-
export type
|
|
38
|
+
export type BlockContents = ValueOf<typeof ssz.BlockContents>;
|
|
39
|
+
export type SignedBlockContents = ValueOf<typeof ssz.SignedBlockContents>;
|
|
40
|
+
export type Contents = Omit<BlockContents, "block">;
|
|
41
41
|
//# sourceMappingURL=types.d.ts.map
|
package/lib/sszTypes.d.ts
CHANGED
|
@@ -6696,6 +6696,303 @@ declare const typesByFork: {
|
|
|
6696
6696
|
parentBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
6697
6697
|
parentBlockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
6698
6698
|
}>;
|
|
6699
|
+
BlockContents: ContainerType<{
|
|
6700
|
+
block: ContainerType<{
|
|
6701
|
+
body: ContainerType<{
|
|
6702
|
+
executionPayload: ContainerType<{
|
|
6703
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
6704
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
6705
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
6706
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
6707
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
6708
|
+
address: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
6709
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
6710
|
+
}>>;
|
|
6711
|
+
transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
6712
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
6713
|
+
feeRecipient: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
6714
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
6715
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
6716
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
6717
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
6718
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
6719
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
6720
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
6721
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
6722
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
6723
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
6724
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
6725
|
+
}>;
|
|
6726
|
+
blsToExecutionChanges: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
6727
|
+
message: ContainerType<{
|
|
6728
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
6729
|
+
fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
6730
|
+
toExecutionAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
6731
|
+
}>;
|
|
6732
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
6733
|
+
}>>;
|
|
6734
|
+
blobKzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
6735
|
+
syncAggregate: ContainerType<{
|
|
6736
|
+
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
6737
|
+
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
6738
|
+
}>;
|
|
6739
|
+
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
6740
|
+
eth1Data: ContainerType<{
|
|
6741
|
+
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
6742
|
+
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
6743
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
6744
|
+
}>;
|
|
6745
|
+
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
6746
|
+
proposerSlashings: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
6747
|
+
signedHeader1: ContainerType<{
|
|
6748
|
+
message: ContainerType<{
|
|
6749
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
6750
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
6751
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
6752
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
6753
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
6754
|
+
}>;
|
|
6755
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
6756
|
+
}>;
|
|
6757
|
+
signedHeader2: ContainerType<{
|
|
6758
|
+
message: ContainerType<{
|
|
6759
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
6760
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
6761
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
6762
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
6763
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
6764
|
+
}>;
|
|
6765
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
6766
|
+
}>;
|
|
6767
|
+
}>>;
|
|
6768
|
+
attesterSlashings: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
6769
|
+
attestation1: ContainerType<{
|
|
6770
|
+
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
6771
|
+
data: ContainerType<{
|
|
6772
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
6773
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
6774
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
6775
|
+
source: ContainerType<{
|
|
6776
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
6777
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
6778
|
+
}>;
|
|
6779
|
+
target: ContainerType<{
|
|
6780
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
6781
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
6782
|
+
}>;
|
|
6783
|
+
}>;
|
|
6784
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
6785
|
+
}>;
|
|
6786
|
+
attestation2: ContainerType<{
|
|
6787
|
+
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
6788
|
+
data: ContainerType<{
|
|
6789
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
6790
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
6791
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
6792
|
+
source: ContainerType<{
|
|
6793
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
6794
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
6795
|
+
}>;
|
|
6796
|
+
target: ContainerType<{
|
|
6797
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
6798
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
6799
|
+
}>;
|
|
6800
|
+
}>;
|
|
6801
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
6802
|
+
}>;
|
|
6803
|
+
}>>;
|
|
6804
|
+
attestations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
6805
|
+
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
6806
|
+
data: ContainerType<{
|
|
6807
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
6808
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
6809
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
6810
|
+
source: ContainerType<{
|
|
6811
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
6812
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
6813
|
+
}>;
|
|
6814
|
+
target: ContainerType<{
|
|
6815
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
6816
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
6817
|
+
}>;
|
|
6818
|
+
}>;
|
|
6819
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
6820
|
+
}>>;
|
|
6821
|
+
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
6822
|
+
proof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
6823
|
+
data: ContainerType<{
|
|
6824
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
6825
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
6826
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
6827
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
6828
|
+
}>;
|
|
6829
|
+
}>>;
|
|
6830
|
+
voluntaryExits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
6831
|
+
message: ContainerType<{
|
|
6832
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
6833
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
6834
|
+
}>;
|
|
6835
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
6836
|
+
}>>;
|
|
6837
|
+
}>;
|
|
6838
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
6839
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
6840
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
6841
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
6842
|
+
}>;
|
|
6843
|
+
kzgProofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
6844
|
+
blobs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
6845
|
+
}>;
|
|
6846
|
+
SignedBlockContents: ContainerType<{
|
|
6847
|
+
signedBlock: ContainerType<{
|
|
6848
|
+
message: ContainerType<{
|
|
6849
|
+
body: ContainerType<{
|
|
6850
|
+
executionPayload: ContainerType<{
|
|
6851
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
6852
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
6853
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
6854
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
6855
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
6856
|
+
address: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
6857
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
6858
|
+
}>>;
|
|
6859
|
+
transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
6860
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
6861
|
+
feeRecipient: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
6862
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
6863
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
6864
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
6865
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
6866
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
6867
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
6868
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
6869
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
6870
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
6871
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
6872
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
6873
|
+
}>;
|
|
6874
|
+
blsToExecutionChanges: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
6875
|
+
message: ContainerType<{
|
|
6876
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
6877
|
+
fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
6878
|
+
toExecutionAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
6879
|
+
}>;
|
|
6880
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
6881
|
+
}>>;
|
|
6882
|
+
blobKzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
6883
|
+
syncAggregate: ContainerType<{
|
|
6884
|
+
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
6885
|
+
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
6886
|
+
}>;
|
|
6887
|
+
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
6888
|
+
eth1Data: ContainerType<{
|
|
6889
|
+
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
6890
|
+
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
6891
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
6892
|
+
}>;
|
|
6893
|
+
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
6894
|
+
proposerSlashings: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
6895
|
+
signedHeader1: ContainerType<{
|
|
6896
|
+
message: ContainerType<{
|
|
6897
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
6898
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
6899
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
6900
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
6901
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
6902
|
+
}>;
|
|
6903
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
6904
|
+
}>;
|
|
6905
|
+
signedHeader2: ContainerType<{
|
|
6906
|
+
message: ContainerType<{
|
|
6907
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
6908
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
6909
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
6910
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
6911
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
6912
|
+
}>;
|
|
6913
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
6914
|
+
}>;
|
|
6915
|
+
}>>;
|
|
6916
|
+
attesterSlashings: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
6917
|
+
attestation1: ContainerType<{
|
|
6918
|
+
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
6919
|
+
data: ContainerType<{
|
|
6920
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
6921
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
6922
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
6923
|
+
source: ContainerType<{
|
|
6924
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
6925
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
6926
|
+
}>;
|
|
6927
|
+
target: ContainerType<{
|
|
6928
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
6929
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
6930
|
+
}>;
|
|
6931
|
+
}>;
|
|
6932
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
6933
|
+
}>;
|
|
6934
|
+
attestation2: ContainerType<{
|
|
6935
|
+
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
6936
|
+
data: ContainerType<{
|
|
6937
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
6938
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
6939
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
6940
|
+
source: ContainerType<{
|
|
6941
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
6942
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
6943
|
+
}>;
|
|
6944
|
+
target: ContainerType<{
|
|
6945
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
6946
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
6947
|
+
}>;
|
|
6948
|
+
}>;
|
|
6949
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
6950
|
+
}>;
|
|
6951
|
+
}>>;
|
|
6952
|
+
attestations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
6953
|
+
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
6954
|
+
data: ContainerType<{
|
|
6955
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
6956
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
6957
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
6958
|
+
source: ContainerType<{
|
|
6959
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
6960
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
6961
|
+
}>;
|
|
6962
|
+
target: ContainerType<{
|
|
6963
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
6964
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
6965
|
+
}>;
|
|
6966
|
+
}>;
|
|
6967
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
6968
|
+
}>>;
|
|
6969
|
+
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
6970
|
+
proof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
6971
|
+
data: ContainerType<{
|
|
6972
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
6973
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
6974
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
6975
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
6976
|
+
}>;
|
|
6977
|
+
}>>;
|
|
6978
|
+
voluntaryExits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
6979
|
+
message: ContainerType<{
|
|
6980
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
6981
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
6982
|
+
}>;
|
|
6983
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
6984
|
+
}>>;
|
|
6985
|
+
}>;
|
|
6986
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
6987
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
6988
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
6989
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
6990
|
+
}>;
|
|
6991
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
6992
|
+
}>;
|
|
6993
|
+
kzgProofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
6994
|
+
blobs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
6995
|
+
}>;
|
|
6699
6996
|
Withdrawal: ContainerType<{
|
|
6700
6997
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
6701
6998
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
package/lib/types.d.ts
CHANGED
|
@@ -125,16 +125,8 @@ type TypesByFork = {
|
|
|
125
125
|
BuilderBid: deneb.BuilderBid;
|
|
126
126
|
SignedBuilderBid: deneb.SignedBuilderBid;
|
|
127
127
|
SSEPayloadAttributes: deneb.SSEPayloadAttributes;
|
|
128
|
-
BlockContents:
|
|
129
|
-
|
|
130
|
-
kzgProofs: deneb.KZGProofs;
|
|
131
|
-
blobs: deneb.Blobs;
|
|
132
|
-
};
|
|
133
|
-
SignedBlockContents: {
|
|
134
|
-
signedBlock: SignedBeaconBlock<ForkName.deneb>;
|
|
135
|
-
kzgProofs: deneb.KZGProofs;
|
|
136
|
-
blobs: deneb.Blobs;
|
|
137
|
-
};
|
|
128
|
+
BlockContents: deneb.BlockContents;
|
|
129
|
+
SignedBlockContents: deneb.SignedBlockContents;
|
|
138
130
|
ExecutionPayloadAndBlobsBundle: deneb.ExecutionPayloadAndBlobsBundle;
|
|
139
131
|
BlobsBundle: deneb.BlobsBundle;
|
|
140
132
|
Contents: deneb.Contents;
|
package/package.json
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"bugs": {
|
|
12
12
|
"url": "https://github.com/ChainSafe/lodestar/issues"
|
|
13
13
|
},
|
|
14
|
-
"version": "1.21.0-dev.
|
|
14
|
+
"version": "1.21.0-dev.30a13f91fa",
|
|
15
15
|
"type": "module",
|
|
16
16
|
"exports": {
|
|
17
17
|
".": {
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
"types": "lib/index.d.ts",
|
|
72
72
|
"dependencies": {
|
|
73
73
|
"@chainsafe/ssz": "^0.15.1",
|
|
74
|
-
"@lodestar/params": "1.21.0-dev.
|
|
74
|
+
"@lodestar/params": "1.21.0-dev.30a13f91fa",
|
|
75
75
|
"ethereum-cryptography": "^2.0.0"
|
|
76
76
|
},
|
|
77
77
|
"keywords": [
|
|
@@ -80,5 +80,5 @@
|
|
|
80
80
|
"beacon",
|
|
81
81
|
"blockchain"
|
|
82
82
|
],
|
|
83
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "1db85ec595bf20a8169b9bc802d2bfa09600f289"
|
|
84
84
|
}
|