@aztec/aztec-node 2.1.0-rc.13 → 2.1.0-rc.16

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.
@@ -13,7 +13,7 @@ import { AztecAddress } from '@aztec/stdlib/aztec-address';
13
13
  import { nodeRpcConfigMappings } from '@aztec/stdlib/config';
14
14
  import { validatorClientConfigMappings } from '@aztec/validator-client/config';
15
15
  import { worldStateConfigMappings } from '@aztec/world-state/config';
16
- import { privateKeyToAddress } from '@spalladino/viem/accounts';
16
+ import { privateKeyToAddress } from 'viem/accounts';
17
17
  import { sentinelConfigMappings } from '../sentinel/config.js';
18
18
  export { sequencerClientConfigMappings };
19
19
  export const aztecNodeConfigMappings = {
@@ -40,7 +40,7 @@ import { getPackageVersion } from '@aztec/stdlib/update-checker';
40
40
  import { Attributes, getTelemetryClient, trackSpan } from '@aztec/telemetry-client';
41
41
  import { NodeKeystoreAdapter, ValidatorClient, createBlockProposalHandler, createValidatorClient } from '@aztec/validator-client';
42
42
  import { createWorldStateSynchronizer } from '@aztec/world-state';
43
- import { createPublicClient, fallback, http } from '@spalladino/viem';
43
+ import { createPublicClient, fallback, http } from 'viem';
44
44
  import { createSentinel } from '../sentinel/factory.js';
45
45
  import { createKeyStoreForValidator } from './config.js';
46
46
  import { NodeMetrics } from './node_metrics.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/aztec-node",
3
- "version": "2.1.0-rc.13",
3
+ "version": "2.1.0-rc.16",
4
4
  "main": "dest/index.js",
5
5
  "type": "module",
6
6
  "exports": {
@@ -66,33 +66,33 @@
66
66
  ]
67
67
  },
68
68
  "dependencies": {
69
- "@aztec/archiver": "2.1.0-rc.13",
70
- "@aztec/bb-prover": "2.1.0-rc.13",
71
- "@aztec/blob-sink": "2.1.0-rc.13",
72
- "@aztec/constants": "2.1.0-rc.13",
73
- "@aztec/epoch-cache": "2.1.0-rc.13",
74
- "@aztec/ethereum": "2.1.0-rc.13",
75
- "@aztec/foundation": "2.1.0-rc.13",
76
- "@aztec/kv-store": "2.1.0-rc.13",
77
- "@aztec/l1-artifacts": "2.1.0-rc.13",
78
- "@aztec/merkle-tree": "2.1.0-rc.13",
79
- "@aztec/node-keystore": "2.1.0-rc.13",
80
- "@aztec/node-lib": "2.1.0-rc.13",
81
- "@aztec/noir-protocol-circuits-types": "2.1.0-rc.13",
82
- "@aztec/p2p": "2.1.0-rc.13",
83
- "@aztec/protocol-contracts": "2.1.0-rc.13",
84
- "@aztec/prover-client": "2.1.0-rc.13",
85
- "@aztec/sequencer-client": "2.1.0-rc.13",
86
- "@aztec/simulator": "2.1.0-rc.13",
87
- "@aztec/slasher": "2.1.0-rc.13",
88
- "@aztec/stdlib": "2.1.0-rc.13",
89
- "@aztec/telemetry-client": "2.1.0-rc.13",
90
- "@aztec/validator-client": "2.1.0-rc.13",
91
- "@aztec/world-state": "2.1.0-rc.13",
92
- "@spalladino/viem": "2.38.2-eip7594.0",
69
+ "@aztec/archiver": "2.1.0-rc.16",
70
+ "@aztec/bb-prover": "2.1.0-rc.16",
71
+ "@aztec/blob-sink": "2.1.0-rc.16",
72
+ "@aztec/constants": "2.1.0-rc.16",
73
+ "@aztec/epoch-cache": "2.1.0-rc.16",
74
+ "@aztec/ethereum": "2.1.0-rc.16",
75
+ "@aztec/foundation": "2.1.0-rc.16",
76
+ "@aztec/kv-store": "2.1.0-rc.16",
77
+ "@aztec/l1-artifacts": "2.1.0-rc.16",
78
+ "@aztec/merkle-tree": "2.1.0-rc.16",
79
+ "@aztec/node-keystore": "2.1.0-rc.16",
80
+ "@aztec/node-lib": "2.1.0-rc.16",
81
+ "@aztec/noir-protocol-circuits-types": "2.1.0-rc.16",
82
+ "@aztec/p2p": "2.1.0-rc.16",
83
+ "@aztec/protocol-contracts": "2.1.0-rc.16",
84
+ "@aztec/prover-client": "2.1.0-rc.16",
85
+ "@aztec/sequencer-client": "2.1.0-rc.16",
86
+ "@aztec/simulator": "2.1.0-rc.16",
87
+ "@aztec/slasher": "2.1.0-rc.16",
88
+ "@aztec/stdlib": "2.1.0-rc.16",
89
+ "@aztec/telemetry-client": "2.1.0-rc.16",
90
+ "@aztec/validator-client": "2.1.0-rc.16",
91
+ "@aztec/world-state": "2.1.0-rc.16",
93
92
  "koa": "^2.16.1",
94
93
  "koa-router": "^13.1.1",
95
- "tslib": "^2.4.0"
94
+ "tslib": "^2.4.0",
95
+ "viem": "npm:@spalladino/viem@2.38.2-eip7594.0"
96
96
  },
97
97
  "devDependencies": {
98
98
  "@jest/globals": "^30.0.0",
@@ -29,7 +29,7 @@ import type { SlasherConfig } from '@aztec/stdlib/interfaces/server';
29
29
  import { type ValidatorClientConfig, validatorClientConfigMappings } from '@aztec/validator-client/config';
30
30
  import { type WorldStateConfig, worldStateConfigMappings } from '@aztec/world-state/config';
31
31
 
32
- import { privateKeyToAddress } from '@spalladino/viem/accounts';
32
+ import { privateKeyToAddress } from 'viem/accounts';
33
33
 
34
34
  import { type SentinelConfig, sentinelConfigMappings } from '../sentinel/config.js';
35
35
 
@@ -115,7 +115,7 @@ import {
115
115
  } from '@aztec/validator-client';
116
116
  import { createWorldStateSynchronizer } from '@aztec/world-state';
117
117
 
118
- import { createPublicClient, fallback, http } from '@spalladino/viem';
118
+ import { createPublicClient, fallback, http } from 'viem';
119
119
 
120
120
  import { createSentinel } from '../sentinel/factory.js';
121
121
  import { Sentinel } from '../sentinel/sentinel.js';