Skip to content

Commit d2ac623

Browse files
authored
Merge branch 'master' into replace-ethers-with-viem
2 parents 4629c81 + 553334e commit d2ac623

File tree

1,435 files changed

+54927
-46449
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,435 files changed

+54927
-46449
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
name: 'Package: @ethereumjs/e2store'
3+
about: Create issue for @ethereumjs/e2store package
4+
title: ''
5+
labels: 'package: e2store'
6+
assignees: ''
7+
---
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
name: 'Package: @ethereumjs/genesis'
3+
about: Create issue for @ethereumjs/genesis package
4+
title: ''
5+
labels: 'package: genesis'
6+
assignees: ''
7+
---
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
name: 'Package: @ethereumjs/testdata'
3+
about: Create issue for @ethereumjs/testdata package
4+
title: ''
5+
labels: 'package: testdata'
6+
assignees: ''
7+
---
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
name: 'Package: @ethereumjs/wallet'
3+
about: Create issue for @ethereumjs/wallet package
4+
title: ''
5+
labels: 'package: wallet'
6+
assignees: ''
7+
---

.github/workflows/block-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
steps:
3535
# We clone the repo and submodules if triggered from work-flow dispatch
3636
- if: inputs.submodule-cache-key == 'none'
37-
uses: actions/checkout@v4
37+
uses: actions/checkout@v5
3838
with:
3939
submodules: recursive
4040

@@ -71,4 +71,4 @@ jobs:
7171
with:
7272
token: ${{ secrets.CODECOV_TOKEN }}
7373
files: ${{ github.workspace}}/packages/block/coverage/lcov.info
74-
flags: block
74+
flags: block

.github/workflows/blockchain-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
steps:
3232
# We clone the repo and submodules if triggered from work-flow dispatch
3333
- if: inputs.submodule-cache-key == 'none'
34-
uses: actions/checkout@v4
34+
uses: actions/checkout@v5
3535

3636
# We restore the code/deps from cache if triggered from workflow_call (i.e. have valid cache key)
3737
- uses: actions/cache/restore@v4
@@ -56,4 +56,4 @@ jobs:
5656
with:
5757
token: ${{ secrets.CODECOV_TOKEN }}
5858
files: ${{ env.cwd }}/coverage/lcov.info
59-
flags: blockchain
59+
flags: blockchain

.github/workflows/browser.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,14 @@ concurrency:
2626

2727
jobs:
2828
test-all-browser:
29+
if: contains(join(github.event.pull_request.labels.*.name, ' '), 'test no browser') == false
2930
runs-on: ubuntu-latest
3031
strategy:
3132
fail-fast: false
3233
steps:
3334
# We clone the repo and submodules if triggered from work-flow dispatch
3435
- if: inputs.submodule-cache-key == 'none'
35-
uses: actions/checkout@v4
36+
uses: actions/checkout@v5
3637
with:
3738
submodules: recursive
3839

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020

2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v5
2323
with:
2424
submodules: recursive
2525

@@ -47,7 +47,7 @@ jobs:
4747
runs-on: ubuntu-latest
4848

4949
steps:
50-
- uses: actions/checkout@v4
50+
- uses: actions/checkout@v5
5151

5252
- uses: actions/cache/restore@v4
5353
id: dep-cache
@@ -152,7 +152,7 @@ jobs:
152152

153153
static:
154154
needs: build
155-
uses: ./.github/workflows/static-build.yml
155+
uses: ./.github/workflows/rlp-ethash-genesis-wallet-build.yml
156156
secrets: inherit
157157
with:
158158
dep-cache-key: ${{ needs.build.outputs.dep-cache-key }}

.github/workflows/client-build.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,12 @@ concurrency:
2929

3030
jobs:
3131
test-client:
32+
if: contains(join(github.event.pull_request.labels.*.name, ' '), 'test client')
3233
runs-on: ubuntu-latest
3334
steps:
3435
# We clone the repo and submodules if triggered from work-flow dispatch
3536
- if: inputs.submodule-cache-key == 'none'
36-
uses: actions/checkout@v4
37+
uses: actions/checkout@v5
3738

3839
- if: inputs.dep-cache-key != 'none'
3940
uses: actions/cache/restore@v4
@@ -72,7 +73,7 @@ jobs:
7273
fail-fast: false
7374
steps:
7475
- if: inputs.submodule-cache-key == 'none'
75-
uses: actions/checkout@v4
76+
uses: actions/checkout@v5
7677

7778
# We restore the code/deps from cache if triggered from workflow_call (i.e. have valid cache key)
7879
- if: inputs.dep-cache-key != 'none'

.github/workflows/common-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
steps:
3333
# We clone the repo and submodules if triggered from work-flow dispatch
3434
- if: inputs.submodule-cache-key == 'none'
35-
uses: actions/checkout@v4
35+
uses: actions/checkout@v5
3636

3737
# We restore the code/deps from cache if triggered from workflow_call (i.e. have valid cache key)
3838
- if: inputs.dep-cache-key != 'none'
@@ -69,4 +69,4 @@ jobs:
6969
with:
7070
token: ${{ secrets.CODECOV_TOKEN }}
7171
files: ${{ env.cwd }}/coverage/lcov.info
72-
flags: util
72+
flags: util

0 commit comments

Comments
 (0)