@aztec/sequencer-client 0.77.1 → 0.78.1

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.
@@ -11,7 +11,7 @@ export const getTxSenderConfigMappings = (scope)=>({
11
11
  defaultValue: EthAddress.ZERO
12
12
  },
13
13
  publisherPrivateKey: {
14
- env: `${scope}_PUBLISHER_PRIVATE_KEY`,
14
+ env: scope === 'PROVER' ? `PROVER_PUBLISHER_PRIVATE_KEY` : `SEQ_PUBLISHER_PRIVATE_KEY`,
15
15
  description: 'The private key to be used by the publisher.',
16
16
  parseEnv: (val)=>val ? `0x${val.replace('0x', '')}` : NULL_KEY,
17
17
  defaultValue: NULL_KEY
@@ -22,7 +22,7 @@ export function getTxSenderConfigFromEnv(scope) {
22
22
  }
23
23
  export const getPublisherConfigMappings = (scope)=>({
24
24
  l1PublishRetryIntervalMS: {
25
- env: `${scope}_PUBLISH_RETRY_INTERVAL_MS`,
25
+ env: scope === `PROVER` ? `PROVER_PUBLISH_RETRY_INTERVAL_MS` : `SEQ_PUBLISH_RETRY_INTERVAL_MS`,
26
26
  parseEnv: (val)=>+val,
27
27
  defaultValue: 1000,
28
28
  description: 'The interval to wait between publish retries.'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/sequencer-client",
3
- "version": "0.77.1",
3
+ "version": "0.78.1",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": "./dest/index.js",
@@ -28,36 +28,36 @@
28
28
  "test:integration:run": "NODE_NO_WARNINGS=1 node --experimental-vm-modules $(yarn bin jest) --no-cache --config jest.integration.config.json"
29
29
  },
30
30
  "dependencies": {
31
- "@aztec/aztec.js": "0.77.1",
32
- "@aztec/bb-prover": "0.77.1",
33
- "@aztec/blob-lib": "0.77.1",
34
- "@aztec/blob-sink": "0.77.1",
35
- "@aztec/constants": "0.77.1",
36
- "@aztec/epoch-cache": "0.77.1",
37
- "@aztec/ethereum": "0.77.1",
38
- "@aztec/foundation": "0.77.1",
39
- "@aztec/l1-artifacts": "0.77.1",
40
- "@aztec/merkle-tree": "0.77.1",
41
- "@aztec/noir-contracts.js": "0.77.1",
42
- "@aztec/noir-protocol-circuits-types": "0.77.1",
43
- "@aztec/p2p": "0.77.1",
44
- "@aztec/protocol-contracts": "0.77.1",
45
- "@aztec/prover-client": "0.77.1",
46
- "@aztec/simulator": "0.77.1",
47
- "@aztec/stdlib": "0.77.1",
48
- "@aztec/telemetry-client": "0.77.1",
49
- "@aztec/validator-client": "0.77.1",
50
- "@aztec/world-state": "0.77.1",
31
+ "@aztec/aztec.js": "0.78.1",
32
+ "@aztec/bb-prover": "0.78.1",
33
+ "@aztec/blob-lib": "0.78.1",
34
+ "@aztec/blob-sink": "0.78.1",
35
+ "@aztec/constants": "0.78.1",
36
+ "@aztec/epoch-cache": "0.78.1",
37
+ "@aztec/ethereum": "0.78.1",
38
+ "@aztec/foundation": "0.78.1",
39
+ "@aztec/l1-artifacts": "0.78.1",
40
+ "@aztec/merkle-tree": "0.78.1",
41
+ "@aztec/noir-contracts.js": "0.78.1",
42
+ "@aztec/noir-protocol-circuits-types": "0.78.1",
43
+ "@aztec/p2p": "0.78.1",
44
+ "@aztec/protocol-contracts": "0.78.1",
45
+ "@aztec/prover-client": "0.78.1",
46
+ "@aztec/simulator": "0.78.1",
47
+ "@aztec/stdlib": "0.78.1",
48
+ "@aztec/telemetry-client": "0.78.1",
49
+ "@aztec/validator-client": "0.78.1",
50
+ "@aztec/world-state": "0.78.1",
51
51
  "lodash.chunk": "^4.2.0",
52
52
  "lodash.pick": "^4.4.0",
53
53
  "tslib": "^2.4.0",
54
54
  "viem": "2.22.8",
55
- "@aztec/noir-acvm_js": "0.77.1",
56
- "@aztec/noir-types": "0.77.1"
55
+ "@aztec/noir-acvm_js": "0.78.1",
56
+ "@aztec/noir-types": "0.78.1"
57
57
  },
58
58
  "devDependencies": {
59
- "@aztec/archiver": "0.77.1",
60
- "@aztec/kv-store": "0.77.1",
59
+ "@aztec/archiver": "0.78.1",
60
+ "@aztec/kv-store": "0.78.1",
61
61
  "@jest/globals": "^29.5.0",
62
62
  "@types/jest": "^29.5.0",
63
63
  "@types/levelup": "^5.1.2",
@@ -46,7 +46,7 @@ export const getTxSenderConfigMappings: (
46
46
  defaultValue: EthAddress.ZERO,
47
47
  },
48
48
  publisherPrivateKey: {
49
- env: `${scope}_PUBLISHER_PRIVATE_KEY`,
49
+ env: scope === 'PROVER' ? `PROVER_PUBLISHER_PRIVATE_KEY` : `SEQ_PUBLISHER_PRIVATE_KEY`,
50
50
  description: 'The private key to be used by the publisher.',
51
51
  parseEnv: (val: string) => (val ? `0x${val.replace('0x', '')}` : NULL_KEY),
52
52
  defaultValue: NULL_KEY,
@@ -61,7 +61,7 @@ export const getPublisherConfigMappings: (
61
61
  scope: 'PROVER' | 'SEQ',
62
62
  ) => ConfigMappingsType<PublisherConfig & L1TxUtilsConfig> = scope => ({
63
63
  l1PublishRetryIntervalMS: {
64
- env: `${scope}_PUBLISH_RETRY_INTERVAL_MS`,
64
+ env: scope === `PROVER` ? `PROVER_PUBLISH_RETRY_INTERVAL_MS` : `SEQ_PUBLISH_RETRY_INTERVAL_MS`,
65
65
  parseEnv: (val: string) => +val,
66
66
  defaultValue: 1000,
67
67
  description: 'The interval to wait between publish retries.',