Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New Minor Releases (Holesky, Dencun devnet-10, Client UX, Performance) #3113

Merged
merged 32 commits into from
Nov 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
97c8bd1
Update CHANGELOG, version bump, updated upstream dependency versions …
holgerd77 Oct 23, 2023
67ab1e6
Update CHANGELOG, version bump, updated upstream dependency versions …
holgerd77 Oct 23, 2023
da68ec7
Update CHANGELOG, version bump, updated upstream dependency versions …
holgerd77 Oct 23, 2023
031c397
Update CHANGELOG, version bump, updated upstream dependency versions …
holgerd77 Oct 23, 2023
2ef0629
Update CHANGELOG, version bump, updated upstream dependency versions …
holgerd77 Oct 23, 2023
a5d97e7
Update CHANGELOG, version bump, updated upstream dependency versions …
holgerd77 Oct 23, 2023
4a3cc4b
Update CHANGELOG, version bump, updated upstream dependency versions …
holgerd77 Oct 23, 2023
243f5c1
Update CHANGELOG, version bump, updated upstream dependency versions …
holgerd77 Oct 23, 2023
1e462d9
Update CHANGELOG, version bump, updated upstream dependency versions …
holgerd77 Oct 23, 2023
3e34dc6
Update CHANGELOG, version bump, updated upstream dependency versions …
holgerd77 Oct 23, 2023
587bdde
Apply suggestions from code review
holgerd77 Oct 24, 2023
8e27030
Update CHANGELOG, version bump, updated upstream dependency versions …
holgerd77 Oct 24, 2023
4beaf43
Update CHANGELOG, version bump, updated upstream dependency versions …
holgerd77 Oct 24, 2023
432b9f2
Add dedicated EVM profiling section to README
holgerd77 Oct 24, 2023
1c61554
Add EVM profiler image
holgerd77 Oct 24, 2023
6ff9cb7
Update CHANGELOG, version bump, updated upstream dependency versions …
holgerd77 Oct 24, 2023
de43618
Update CHANGELOG, version bump, updated upstream dependency versions …
holgerd77 Oct 24, 2023
acf76f4
Bump @ethereumjs/client version to v0.9.0, update CHANGELOG
holgerd77 Oct 24, 2023
6b10b9a
Rebuild docs
holgerd77 Oct 24, 2023
5d76853
README updates
holgerd77 Oct 24, 2023
28501e6
Rebuild package-lock.json
holgerd77 Oct 24, 2023
be8d6a1
evm: fix typo
jochem-brouwer Oct 25, 2023
e776f1f
blockchain: update changelog
jochem-brouwer Oct 25, 2023
7d62c5c
Update packages/tx/CHANGELOG.md
gabrocheleau Oct 25, 2023
679e154
Update packages/tx/CHANGELOG.md
gabrocheleau Oct 25, 2023
eeb914f
Minor adjustements
gabrocheleau Oct 25, 2023
7d0a12f
Update packages/vm/CHANGELOG.md
gabrocheleau Oct 25, 2023
6e12e5c
VM: fix block profiler
holgerd77 Oct 25, 2023
9cbbc89
Update CHANGELOG files with recent changes
holgerd77 Nov 1, 2023
4d9fcda
Rebuild package-lock.json
holgerd77 Nov 1, 2023
1d5afc3
verkle: update rlp and util to x.0.1
gabrocheleau Nov 1, 2023
289dceb
Update devnet-10 -> devnet-11 in CHANGELOG files
holgerd77 Nov 1, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
164 changes: 82 additions & 82 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions packages/block/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
(modification: no type change headlines) and this project adheres to
[Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## 5.0.1 - 2023-10-26

### Dencun devnet-11 Compatibility

This release contains various fixes and spec updates related to the Dencun (Deneb/Cancun) HF and is now compatible with the specs as used in [devnet-11](https://github.com/ethpandaops/dencun-testnet) (October 2023).

- Update peer dependency for `kzg` module to use the official trusted setup for `mainnet`, PR [#3107](https://github.com/ethereumjs/ethereumjs-monorepo/pull/3107)

## 5.0.0 - 2023-08-09

Final release version from the breaking release round from Summer 2023 on the EthereumJS libraries, thanks to the whole team for this amazing accomplishment! ❤️ 🥳
Expand Down
27 changes: 27 additions & 0 deletions packages/block/docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@
- [WithdrawalV1](README.md#withdrawalv1)
- [WithdrawalsBytes](README.md#withdrawalsbytes)

### Functions

- [executionPayloadFromBeaconPayload](README.md#executionpayloadfrombeaconpayload)

## Type Aliases

### BlockBodyBytes
Expand Down Expand Up @@ -142,3 +146,26 @@ ___
#### Defined in

[types.ts:113](https://github.com/ethereumjs/ethereumjs-monorepo/blob/master/packages/block/src/types.ts#L113)

## Functions

### executionPayloadFromBeaconPayload

▸ **executionPayloadFromBeaconPayload**(`payload`): [`ExecutionPayload`](README.md#executionpayload)

Converts a beacon block execution payload JSON object BeaconPayloadJson to the [ExecutionPayload](README.md#executionpayload) data needed to construct a [Block](classes/Block.md).
The JSON data can be retrieved from a consensus layer (CL) client on this Beacon API `/eth/v2/beacon/blocks/[block number]`

#### Parameters

| Name | Type |
| :------ | :------ |
| `payload` | `BeaconPayloadJson` |

#### Returns

[`ExecutionPayload`](README.md#executionpayload)

#### Defined in

[from-beacon-payload.ts:39](https://github.com/ethereumjs/ethereumjs-monorepo/blob/master/packages/block/src/from-beacon-payload.ts#L39)
Loading
Loading