Skip to content

Commit 195925f

Browse files
committed
chore: remove circular dep
1 parent 784eba2 commit 195925f

17 files changed

+179
-26
lines changed

packages/common/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@
6767
"eventemitter3": "^5.0.1"
6868
},
6969
"devDependencies": {
70+
"@ethereumjs/testdata": "workspace:*",
7071
"@polkadot/util": "^13.4.3",
7172
"@polkadot/wasm-crypto": "^7.4.1",
7273
"ethereum-cryptography": "^3.2.0"

packages/testdata/package.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,5 @@
2121
"lint": "pnpm run biome && eslint --config ./eslint.config.mjs .",
2222
"lint:fix": "pnpm run biome:fix && eslint --fix --config ./eslint.config.mjs .",
2323
"tsc": "../../config/cli/ts-compile.sh"
24-
},
25-
"devDependencies": {
26-
"@ethereumjs/common": "workspace:*",
27-
"@ethereumjs/util": "workspace:*"
2824
}
2925
}

packages/testdata/src/blocks/preLondonTestDataBlocks1RLP.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { PrefixedHexString } from '@ethereumjs/util'
1+
import type { PrefixedHexString } from '../types.js'
22

33
export const preLondonTestDataBlocks1RLP: {
44
blockRLP: PrefixedHexString

packages/testdata/src/blocks/preLondonTestDataBlocks2RLP.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { PrefixedHexString } from '@ethereumjs/util'
1+
import type { PrefixedHexString } from '../types.js'
22

33
export const preLondonTestDataBlocks2RLP: Record<string, PrefixedHexString> = {
44
block0RLP:

packages/testdata/src/chainConfigs/customChainConfig.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { ChainConfig } from '@ethereumjs/common'
1+
import type { ChainConfig } from '../types.js'
22

33
export const customChainConfig: ChainConfig = {
44
name: 'testnet',

packages/testdata/src/chainConfigs/goerliChainConfig.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { ChainConfig } from '@ethereumjs/common'
1+
import type { ChainConfig } from '../types.js'
22

33
export const goerliChainConfig: ChainConfig = {
44
name: 'goerli',

packages/testdata/src/chainConfigs/testnetMergeChainConfig.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { ChainConfig } from '@ethereumjs/common'
1+
import type { ChainConfig } from '../types.js'
22

33
export const testnetMergeChainConfig: ChainConfig = {
44
name: 'testnetMerge',

packages/testdata/src/gethGenesis/eip4844GethGenesis.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { GethGenesis } from '@ethereumjs/common'
1+
import type { GethGenesis } from '../types.js'
22

33
export const eip4844GethGenesis: GethGenesis = {
44
config: {

packages/testdata/src/gethGenesis/goerliGethGenesis.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { GethGenesis } from '@ethereumjs/common'
1+
import type { GethGenesis } from '../types.js'
22

33
export const goerliGethGenesis: GethGenesis = {
44
config: {

packages/testdata/src/gethGenesis/invalidSpuriousDragonGethGenesis.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { GethGenesis } from '@ethereumjs/common'
1+
import type { GethGenesis } from '../types.js'
22

33
export const invalidSpuriousDragonGethGenesis: GethGenesis = {
44
config: {

0 commit comments

Comments
 (0)