Skip to content

Commit a2b58e8

Browse files
Version Packages (next) (#1271)
This PR was opened by the [Changesets release](https://github.com/changesets/action) GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated. ⚠️⚠️⚠️⚠️⚠️⚠️ `main` is currently in **pre mode** so this branch has prereleases rather than normal releases. If you want to exit prereleases, run `changeset pre exit` on `main`. ⚠️⚠️⚠️⚠️⚠️⚠️ # Releases ## @tevm/[email protected] ### Minor Changes - [#1270](#1270) [`9141ab4`](9141ab4) Thanks [@roninjin10](https://github.com/roninjin10)! - Implemented eth_syncing and eth_mining methods ### Patch Changes - Updated dependencies \[[`9141ab4`](9141ab4), [`396157c`](396157c)]: - @tevm/[email protected] - @tevm/[email protected] - @tevm/[email protected] - @tevm/[email protected] - @tevm/[email protected] ## @tevm/[email protected] ### Minor Changes - [#1268](#1268) [`396157c`](396157c) Thanks [@roninjin10](https://github.com/roninjin10)! - Added options to configure and pass in custom caches. For example caches that prune old state sooner ## @tevm/[email protected] ### Patch Changes - Updated dependencies \[[`9141ab4`](9141ab4)]: - @tevm/[email protected] - @tevm/[email protected] - @tevm/[email protected] - @tevm/[email protected] ## @tevm/[email protected] ### Patch Changes - Updated dependencies \[]: - @tevm/[email protected] - @tevm/[email protected] ## @tevm/[email protected] ### Patch Changes - [#1270](#1270) [`9141ab4`](9141ab4) Thanks [@roninjin10](https://github.com/roninjin10)! - Fixed a race condition that can happen if client.tevmMine is called twice - Updated dependencies \[[`396157c`](396157c)]: - @tevm/[email protected] - @tevm/[email protected] - @tevm/[email protected] - @tevm/[email protected] ## @tevm/[email protected] ### Patch Changes - Updated dependencies \[[`396157c`](396157c)]: - @tevm/[email protected] - @tevm/[email protected] - @tevm/[email protected] - @tevm/[email protected] - @tevm/[email protected] ## @tevm/[email protected] ### Patch Changes - Updated dependencies \[[`9141ab4`](9141ab4), [`9141ab4`](9141ab4)]: - @tevm/[email protected] - @tevm/[email protected] - @tevm/[email protected] ## @tevm/[email protected] ### Patch Changes - Updated dependencies \[[`396157c`](396157c)]: - @tevm/[email protected] ## @tevm/[email protected] ### Patch Changes - Updated dependencies \[]: - @tevm/[email protected] - @tevm/[email protected] ## @tevm/[email protected] ### Patch Changes - Updated dependencies \[[`9141ab4`](9141ab4), [`9141ab4`](9141ab4)]: - @tevm/[email protected] - @tevm/[email protected] - @tevm/[email protected] - @tevm/[email protected] - @tevm/[email protected] ## @tevm/[email protected] ### Patch Changes - Updated dependencies \[]: - @tevm/[email protected] ## @tevm/[email protected] ### Patch Changes - Updated dependencies \[]: - @tevm/[email protected] - @tevm/[email protected] ## @tevm/[email protected] ### Patch Changes - Updated dependencies \[[`396157c`](396157c)]: - @tevm/[email protected] ## @tevm/[email protected] ### Patch Changes - Updated dependencies \[]: - @tevm/[email protected] ## @tevm/[email protected] ### Patch Changes - Updated dependencies \[[`396157c`](396157c)]: - @tevm/[email protected] - @tevm/[email protected] ## [email protected] ### Patch Changes - Updated dependencies \[[`9141ab4`](9141ab4), [`9141ab4`](9141ab4), [`396157c`](396157c)]: - @tevm/[email protected] - @tevm/[email protected] - @tevm/[email protected] - @tevm/[email protected] - @tevm/[email protected] - @tevm/[email protected] - @tevm/[email protected] - @tevm/[email protected] - @tevm/[email protected] - @tevm/[email protected] - @tevm/[email protected] - @tevm/[email protected] - @tevm/[email protected] - @tevm/[email protected] - @tevm/[email protected] Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 9141ab4 commit a2b58e8

33 files changed

+174
-16
lines changed

.changeset/pre.json

+3
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,7 @@
176176
"forty-planes-walk",
177177
"forty-trees-refuse",
178178
"four-terms-beg",
179+
"fresh-lemons-decide",
179180
"friendly-mangos-beam",
180181
"funny-drinks-brush",
181182
"funny-wasps-add",
@@ -217,9 +218,11 @@
217218
"khaki-impalas-report",
218219
"kind-pens-sleep",
219220
"kind-pots-enjoy",
221+
"kind-ties-jog",
220222
"large-mice-invite",
221223
"large-rats-sparkle",
222224
"large-tips-dance",
225+
"large-trees-explain",
223226
"large-waves-collect",
224227
"large-zoos-knock",
225228
"late-hats-knock",

extensions/ethers/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# @tevm/ethers
22

3+
## 1.1.0-next.90
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`9141ab4`](https://github.com/evmts/tevm-monorepo/commit/9141ab4a767e811f12c77535f9d3259986e825d3)]:
8+
- @tevm/procedures@1.1.0-next.90
9+
- @tevm/client-types@1.1.0-next.88
10+
- @tevm/decorators@1.1.0-next.90
11+
- @tevm/base-client@1.1.0-next.90
12+
313
## 1.1.0-next.88
414

515
### Patch Changes

extensions/ethers/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tevm/ethers",
3-
"version": "1.1.0-next.88",
3+
"version": "1.1.0-next.90",
44
"private": false,
55
"description": "A collection of ethers.js utilities for working with Tevm",
66
"keywords": [

extensions/viem/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @tevm/viem
22

3+
## 1.1.0-next.90
4+
5+
### Patch Changes
6+
7+
- Updated dependencies []:
8+
- @tevm/decorators@1.1.0-next.90
9+
- @tevm/base-client@1.1.0-next.90
10+
311
## 1.1.0-next.88
412

513
### Patch Changes

extensions/viem/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tevm/viem",
3-
"version": "1.1.0-next.88",
3+
"version": "1.1.0-next.90",
44
"private": false,
55
"description": "A typesafe library for writing forge scripts in typescript",
66
"keywords": [

packages/actions/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# @tevm/contract
22

3+
## 1.1.0-next.90
4+
5+
### Patch Changes
6+
7+
- [#1270](https://github.com/evmts/tevm-monorepo/pull/1270) [`9141ab4`](https://github.com/evmts/tevm-monorepo/commit/9141ab4a767e811f12c77535f9d3259986e825d3) Thanks [@roninjin10](https://github.com/roninjin10)! - Fixed a race condition that can happen if client.tevmMine is called twice
8+
9+
- Updated dependencies [[`396157c`](https://github.com/evmts/tevm-monorepo/commit/396157c8ee742fcabeb768ba737c37a400908e3f)]:
10+
- @tevm/state@1.1.0-next.90
11+
- @tevm/base-client@1.1.0-next.90
12+
- @tevm/evm@1.1.0-next.90
13+
- @tevm/vm@1.1.0-next.90
14+
315
## 1.1.0-next.88
416

517
### Patch Changes

packages/actions/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tevm/actions",
3-
"version": "1.1.0-next.88",
3+
"version": "1.1.0-next.90",
44
"private": false,
55
"description": "A typesafe library for writing forge scripts in typescript",
66
"keywords": [

packages/base-client/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @tevm/client
22

3+
## 1.1.0-next.90
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`396157c`](https://github.com/evmts/tevm-monorepo/commit/396157c8ee742fcabeb768ba737c37a400908e3f)]:
8+
- @tevm/state@1.1.0-next.90
9+
- @tevm/evm@1.1.0-next.90
10+
- @tevm/sync-storage-persister@1.1.0-next.90
11+
- @tevm/vm@1.1.0-next.90
12+
- @tevm/txpool@1.1.0-next.90
13+
314
## 1.1.0-next.88
415

516
### Patch Changes

packages/base-client/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tevm/base-client",
3-
"version": "1.1.0-next.88",
3+
"version": "1.1.0-next.90",
44
"private": false,
55
"description": "Client implementations of Tevm",
66
"keywords": [

packages/decorators/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @tevm/client
22

3+
## 1.1.0-next.90
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`9141ab4`](https://github.com/evmts/tevm-monorepo/commit/9141ab4a767e811f12c77535f9d3259986e825d3), [`9141ab4`](https://github.com/evmts/tevm-monorepo/commit/9141ab4a767e811f12c77535f9d3259986e825d3)]:
8+
- @tevm/procedures@1.1.0-next.90
9+
- @tevm/actions@1.1.0-next.90
10+
- @tevm/base-client@1.1.0-next.90
11+
312
## 1.1.0-next.88
413

514
### Minor Changes

packages/decorators/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tevm/decorators",
3-
"version": "1.1.0-next.88",
3+
"version": "1.1.0-next.90",
44
"private": false,
55
"description": "Client implementations of Tevm",
66
"keywords": [

packages/evm/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @tevm/state
22

3+
## 1.1.0-next.90
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`396157c`](https://github.com/evmts/tevm-monorepo/commit/396157c8ee742fcabeb768ba737c37a400908e3f)]:
8+
- @tevm/state@1.1.0-next.90
9+
310
## 1.1.0-next.88
411

512
### Minor Changes

packages/evm/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tevm/evm",
3-
"version": "1.1.0-next.88",
3+
"version": "1.1.0-next.90",
44
"private": false,
55
"description": "A custom implementation of ethereumjs evm",
66
"keywords": [

packages/http-client/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @tevm/client
22

3+
## 1.1.0-next.90
4+
5+
### Patch Changes
6+
7+
- Updated dependencies []:
8+
- @tevm/viem@1.1.0-next.90
9+
- @tevm/memory-client@1.1.0-next.90
10+
311
## 1.1.0-next.88
412

513
### Patch Changes

packages/http-client/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tevm/http-client",
3-
"version": "1.1.0-next.88",
3+
"version": "1.1.0-next.90",
44
"private": false,
55
"description": "Client implementations of Tevm",
66
"keywords": [

packages/memory-client/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @tevm/client
22

3+
## 1.1.0-next.90
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`9141ab4`](https://github.com/evmts/tevm-monorepo/commit/9141ab4a767e811f12c77535f9d3259986e825d3), [`9141ab4`](https://github.com/evmts/tevm-monorepo/commit/9141ab4a767e811f12c77535f9d3259986e825d3)]:
8+
- @tevm/procedures@1.1.0-next.90
9+
- @tevm/actions@1.1.0-next.90
10+
- @tevm/decorators@1.1.0-next.90
11+
- @tevm/base-client@1.1.0-next.90
12+
- @tevm/evm@1.1.0-next.90
13+
314
## 1.1.0-next.88
415

516
### Minor Changes

packages/memory-client/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tevm/memory-client",
3-
"version": "1.1.0-next.88",
3+
"version": "1.1.0-next.90",
44
"private": false,
55
"description": "MemoryClient for tevm is an in memory devnet for JavaScript",
66
"keywords": [

packages/precompiles/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @tevm/precompiles
22

3+
## 1.1.0-next.90
4+
5+
### Patch Changes
6+
7+
- Updated dependencies []:
8+
- @tevm/evm@1.1.0-next.90
9+
310
## 1.1.0-next.88
411

512
### Patch Changes

packages/precompiles/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tevm/precompiles",
3-
"version": "1.1.0-next.88",
3+
"version": "1.1.0-next.90",
44
"private": false,
55
"description": "Precompile definition for Tevm",
66
"keywords": [

packages/procedures/CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# @tevm/contract
22

3+
## 1.1.0-next.90
4+
5+
### Minor Changes
6+
7+
- [#1270](https://github.com/evmts/tevm-monorepo/pull/1270) [`9141ab4`](https://github.com/evmts/tevm-monorepo/commit/9141ab4a767e811f12c77535f9d3259986e825d3) Thanks [@roninjin10](https://github.com/roninjin10)! - Implemented eth_syncing and eth_mining methods
8+
9+
### Patch Changes
10+
11+
- Updated dependencies [[`9141ab4`](https://github.com/evmts/tevm-monorepo/commit/9141ab4a767e811f12c77535f9d3259986e825d3), [`396157c`](https://github.com/evmts/tevm-monorepo/commit/396157c8ee742fcabeb768ba737c37a400908e3f)]:
12+
- @tevm/actions@1.1.0-next.90
13+
- @tevm/state@1.1.0-next.90
14+
- @tevm/base-client@1.1.0-next.90
15+
- @tevm/evm@1.1.0-next.90
16+
- @tevm/vm@1.1.0-next.90
17+
318
## 1.1.0-next.88
419

520
### Patch Changes

packages/procedures/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tevm/procedures",
3-
"version": "1.1.0-next.88",
3+
"version": "1.1.0-next.90",
44
"private": false,
55
"description": "A typesafe library for writing forge scripts in typescript",
66
"keywords": [

packages/server/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @tevm/server
22

3+
## 1.1.0-next.90
4+
5+
### Patch Changes
6+
7+
- Updated dependencies []:
8+
- @tevm/decorators@1.1.0-next.90
9+
- @tevm/memory-client@1.1.0-next.90
10+
311
## 1.1.0-next.88
412

513
### Patch Changes

packages/server/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tevm/server",
3-
"version": "1.1.0-next.88",
3+
"version": "1.1.0-next.90",
44
"private": false,
55
"description": "A typesafe library for writing forge scripts in typescript",
66
"keywords": [

packages/state/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @tevm/state
22

3+
## 1.1.0-next.90
4+
5+
### Minor Changes
6+
7+
- [#1268](https://github.com/evmts/tevm-monorepo/pull/1268) [`396157c`](https://github.com/evmts/tevm-monorepo/commit/396157c8ee742fcabeb768ba737c37a400908e3f) Thanks [@roninjin10](https://github.com/roninjin10)! - Added options to configure and pass in custom caches. For example caches that prune old state sooner
8+
39
## 1.1.0-next.88
410

511
### Patch Changes

packages/state/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tevm/state",
3-
"version": "1.1.0-next.88",
3+
"version": "1.1.0-next.90",
44
"private": false,
55
"description": "A custom implementation of ethereumjs state manager",
66
"keywords": [

packages/sync-storage-persister/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @tevm/contract
22

3+
## 1.1.0-next.90
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`396157c`](https://github.com/evmts/tevm-monorepo/commit/396157c8ee742fcabeb768ba737c37a400908e3f)]:
8+
- @tevm/state@1.1.0-next.90
9+
310
## 1.1.0-next.88
411

512
### Patch Changes

packages/sync-storage-persister/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tevm/sync-storage-persister",
3-
"version": "1.1.0-next.88",
3+
"version": "1.1.0-next.90",
44
"private": false,
55
"description": "A package for persisting the state of the EVM to a sync storage",
66
"keywords": [

packages/txpool/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @tevm/state
22

3+
## 1.1.0-next.90
4+
5+
### Patch Changes
6+
7+
- Updated dependencies []:
8+
- @tevm/vm@1.1.0-next.90
9+
310
## 1.1.0-next.88
411

512
### Patch Changes

packages/txpool/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tevm/txpool",
3-
"version": "1.1.0-next.88",
3+
"version": "1.1.0-next.90",
44
"private": false,
55
"description": "A custom implementation of ethereumjs txpool",
66
"keywords": [

packages/vm/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @tevm/state
22

3+
## 1.1.0-next.90
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`396157c`](https://github.com/evmts/tevm-monorepo/commit/396157c8ee742fcabeb768ba737c37a400908e3f)]:
8+
- @tevm/state@1.1.0-next.90
9+
- @tevm/evm@1.1.0-next.90
10+
311
## 1.1.0-next.88
412

513
### Patch Changes

packages/vm/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tevm/vm",
3-
"version": "1.1.0-next.88",
3+
"version": "1.1.0-next.90",
44
"private": false,
55
"description": "A custom implementation of ethereumjs vm",
66
"keywords": [

tevm/CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# @tevm/contract
22

3+
## 1.1.0-next.90
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`9141ab4`](https://github.com/evmts/tevm-monorepo/commit/9141ab4a767e811f12c77535f9d3259986e825d3), [`9141ab4`](https://github.com/evmts/tevm-monorepo/commit/9141ab4a767e811f12c77535f9d3259986e825d3), [`396157c`](https://github.com/evmts/tevm-monorepo/commit/396157c8ee742fcabeb768ba737c37a400908e3f)]:
8+
- @tevm/procedures@1.1.0-next.90
9+
- @tevm/actions@1.1.0-next.90
10+
- @tevm/state@1.1.0-next.90
11+
- @tevm/viem@1.1.0-next.90
12+
- @tevm/client-types@1.1.0-next.88
13+
- @tevm/decorators@1.1.0-next.90
14+
- @tevm/memory-client@1.1.0-next.90
15+
- @tevm/server@1.1.0-next.90
16+
- @tevm/base-client@1.1.0-next.90
17+
- @tevm/evm@1.1.0-next.90
18+
- @tevm/sync-storage-persister@1.1.0-next.90
19+
- @tevm/vm@1.1.0-next.90
20+
- @tevm/http-client@1.1.0-next.90
21+
- @tevm/precompiles@1.1.0-next.90
22+
- @tevm/txpool@1.1.0-next.90
23+
324
## 1.1.0-next.89
425

526
### Patch Changes

tevm/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tevm",
3-
"version": "1.1.0-next.89",
3+
"version": "1.1.0-next.90",
44
"private": false,
55
"description": "A typesafe Ethereum Virtual Machine (EVM) toolkit written in TypeScript",
66
"keywords": [

0 commit comments

Comments
 (0)