@aztec/sequencer-client 0.77.0-testnet-ignition.30 → 0.77.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.
@@ -10,10 +10,6 @@ export type TxSenderConfig = L1ReaderConfig & {
10
10
  * The private key to be used by the publisher.
11
11
  */
12
12
  publisherPrivateKey: `0x${string}`;
13
- /**
14
- * The number of confirmations required.
15
- */
16
- requiredConfirmations: number;
17
13
  /**
18
14
  * The address of the custom forwarder contract.
19
15
  */
@@ -1 +1 @@
1
- {"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../src/publisher/config.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,cAAc,EAAyB,MAAM,yBAAyB,CAAC;AACrF,OAAO,EACL,KAAK,cAAc,EACnB,KAAK,eAAe,EAIrB,MAAM,iBAAiB,CAAC;AACzB,OAAO,EAAE,KAAK,kBAAkB,EAAyB,MAAM,0BAA0B,CAAC;AAC1F,OAAO,EAAE,UAAU,EAAE,MAAM,+BAA+B,CAAC;AAE3D;;GAEG;AACH,MAAM,MAAM,cAAc,GAAG,cAAc,GAAG;IAC5C;;OAEG;IACH,mBAAmB,EAAE,KAAK,MAAM,EAAE,CAAC;IAEnC;;OAEG;IACH,qBAAqB,EAAE,MAAM,CAAC;IAE9B;;OAEG;IACH,8BAA8B,EAAE,UAAU,CAAC;CAC5C,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,eAAe,GAAG,eAAe,GAC3C,cAAc,GAAG;IACf;;OAEG;IACH,wBAAwB,EAAE,MAAM,CAAC;CAClC,CAAC;AAEJ,eAAO,MAAM,yBAAyB,EAAE,CACtC,KAAK,EAAE,QAAQ,GAAG,KAAK,KACpB,kBAAkB,CAAC,IAAI,CAAC,cAAc,EAAE,aAAa,CAAC,CAoBzD,CAAC;AAEH,wBAAgB,wBAAwB,CAAC,KAAK,EAAE,QAAQ,GAAG,KAAK,GAAG,IAAI,CAAC,cAAc,EAAE,aAAa,CAAC,CAErG;AAED,eAAO,MAAM,0BAA0B,EAAE,CACvC,KAAK,EAAE,QAAQ,GAAG,KAAK,KACpB,kBAAkB,CAAC,eAAe,GAAG,eAAe,CASvD,CAAC;AAEH,wBAAgB,yBAAyB,CAAC,KAAK,EAAE,QAAQ,GAAG,KAAK,GAAG,eAAe,CAElF"}
1
+ {"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../src/publisher/config.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,cAAc,EAAyB,MAAM,yBAAyB,CAAC;AACrF,OAAO,EACL,KAAK,cAAc,EACnB,KAAK,eAAe,EAIrB,MAAM,iBAAiB,CAAC;AACzB,OAAO,EAAE,KAAK,kBAAkB,EAAyB,MAAM,0BAA0B,CAAC;AAC1F,OAAO,EAAE,UAAU,EAAE,MAAM,+BAA+B,CAAC;AAE3D;;GAEG;AACH,MAAM,MAAM,cAAc,GAAG,cAAc,GAAG;IAC5C;;OAEG;IACH,mBAAmB,EAAE,KAAK,MAAM,EAAE,CAAC;IAEnC;;OAEG;IACH,8BAA8B,EAAE,UAAU,CAAC;CAC5C,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,eAAe,GAAG,eAAe,GAC3C,cAAc,GAAG;IACf;;OAEG;IACH,wBAAwB,EAAE,MAAM,CAAC;CAClC,CAAC;AAEJ,eAAO,MAAM,yBAAyB,EAAE,CACtC,KAAK,EAAE,QAAQ,GAAG,KAAK,KACpB,kBAAkB,CAAC,IAAI,CAAC,cAAc,EAAE,aAAa,CAAC,CAczD,CAAC;AAEH,wBAAgB,wBAAwB,CAAC,KAAK,EAAE,QAAQ,GAAG,KAAK,GAAG,IAAI,CAAC,cAAc,EAAE,aAAa,CAAC,CAErG;AAED,eAAO,MAAM,0BAA0B,EAAE,CACvC,KAAK,EAAE,QAAQ,GAAG,KAAK,KACpB,kBAAkB,CAAC,eAAe,GAAG,eAAe,CASvD,CAAC;AAEH,wBAAgB,yBAAyB,CAAC,KAAK,EAAE,QAAQ,GAAG,KAAK,GAAG,eAAe,CAElF"}
@@ -15,12 +15,6 @@ export const getTxSenderConfigMappings = (scope)=>({
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
18
- },
19
- requiredConfirmations: {
20
- env: `${scope}_REQUIRED_CONFIRMATIONS`,
21
- parseEnv: (val)=>+val,
22
- defaultValue: 1,
23
- description: 'The number of confirmations required.'
24
18
  }
25
19
  });
26
20
  export function getTxSenderConfigFromEnv(scope) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/sequencer-client",
3
- "version": "0.77.0-testnet-ignition.30",
3
+ "version": "0.77.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.0-testnet-ignition.30",
32
- "@aztec/bb-prover": "0.77.0-testnet-ignition.30",
33
- "@aztec/blob-lib": "0.77.0-testnet-ignition.30",
34
- "@aztec/blob-sink": "0.77.0-testnet-ignition.30",
35
- "@aztec/constants": "0.77.0-testnet-ignition.30",
36
- "@aztec/epoch-cache": "0.77.0-testnet-ignition.30",
37
- "@aztec/ethereum": "0.77.0-testnet-ignition.30",
38
- "@aztec/foundation": "0.77.0-testnet-ignition.30",
39
- "@aztec/l1-artifacts": "0.77.0-testnet-ignition.30",
40
- "@aztec/merkle-tree": "0.77.0-testnet-ignition.30",
41
- "@aztec/noir-contracts.js": "0.77.0-testnet-ignition.30",
42
- "@aztec/noir-protocol-circuits-types": "0.77.0-testnet-ignition.30",
43
- "@aztec/p2p": "0.77.0-testnet-ignition.30",
44
- "@aztec/protocol-contracts": "0.77.0-testnet-ignition.30",
45
- "@aztec/prover-client": "0.77.0-testnet-ignition.30",
46
- "@aztec/simulator": "0.77.0-testnet-ignition.30",
47
- "@aztec/stdlib": "0.77.0-testnet-ignition.30",
48
- "@aztec/telemetry-client": "0.77.0-testnet-ignition.30",
49
- "@aztec/validator-client": "0.77.0-testnet-ignition.30",
50
- "@aztec/world-state": "0.77.0-testnet-ignition.30",
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",
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.0-testnet-ignition.30",
56
- "@aztec/noir-types": "0.77.0-testnet-ignition.30"
55
+ "@aztec/noir-acvm_js": "0.77.1",
56
+ "@aztec/noir-types": "0.77.1"
57
57
  },
58
58
  "devDependencies": {
59
- "@aztec/archiver": "0.77.0-testnet-ignition.30",
60
- "@aztec/kv-store": "0.77.0-testnet-ignition.30",
59
+ "@aztec/archiver": "0.77.1",
60
+ "@aztec/kv-store": "0.77.1",
61
61
  "@jest/globals": "^29.5.0",
62
62
  "@types/jest": "^29.5.0",
63
63
  "@types/levelup": "^5.1.2",
@@ -18,11 +18,6 @@ export type TxSenderConfig = L1ReaderConfig & {
18
18
  */
19
19
  publisherPrivateKey: `0x${string}`;
20
20
 
21
- /**
22
- * The number of confirmations required.
23
- */
24
- requiredConfirmations: number;
25
-
26
21
  /**
27
22
  * The address of the custom forwarder contract.
28
23
  */
@@ -56,12 +51,6 @@ export const getTxSenderConfigMappings: (
56
51
  parseEnv: (val: string) => (val ? `0x${val.replace('0x', '')}` : NULL_KEY),
57
52
  defaultValue: NULL_KEY,
58
53
  },
59
- requiredConfirmations: {
60
- env: `${scope}_REQUIRED_CONFIRMATIONS`,
61
- parseEnv: (val: string) => +val,
62
- defaultValue: 1,
63
- description: 'The number of confirmations required.',
64
- },
65
54
  });
66
55
 
67
56
  export function getTxSenderConfigFromEnv(scope: 'PROVER' | 'SEQ'): Omit<TxSenderConfig, 'l1Contracts'> {