@aztec/stdlib 5.0.0-nightly.20260610 → 5.0.0-nightly.20260611

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.
@@ -2,7 +2,7 @@ export const AppTaggingSecretKind = {
2
2
  UNCONSTRAINED: 'unconstrained',
3
3
  CONSTRAINED: 'constrained'
4
4
  };
5
- // Keep in sync with aztec::messages::delivery::{ONCHAIN_UNCONSTRAINED, ONCHAIN_CONSTRAINED}.
5
+ // Keep in sync with aztec::messages::delivery::OnchainDeliveryMode.
6
6
  const ONCHAIN_UNCONSTRAINED_DELIVERY_MODE = 2;
7
7
  const ONCHAIN_CONSTRAINED_DELIVERY_MODE = 3;
8
8
  export function appTaggingSecretKindFromDeliveryMode(deliveryMode) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/stdlib",
3
- "version": "5.0.0-nightly.20260610",
3
+ "version": "5.0.0-nightly.20260611",
4
4
  "type": "module",
5
5
  "inherits": [
6
6
  "../package.common.json",
@@ -92,13 +92,13 @@
92
92
  },
93
93
  "dependencies": {
94
94
  "@aws-sdk/client-s3": "^3.892.0",
95
- "@aztec/bb.js": "5.0.0-nightly.20260610",
96
- "@aztec/blob-lib": "5.0.0-nightly.20260610",
97
- "@aztec/constants": "5.0.0-nightly.20260610",
98
- "@aztec/ethereum": "5.0.0-nightly.20260610",
99
- "@aztec/foundation": "5.0.0-nightly.20260610",
100
- "@aztec/l1-artifacts": "5.0.0-nightly.20260610",
101
- "@aztec/noir-noirc_abi": "5.0.0-nightly.20260610",
95
+ "@aztec/bb.js": "5.0.0-nightly.20260611",
96
+ "@aztec/blob-lib": "5.0.0-nightly.20260611",
97
+ "@aztec/constants": "5.0.0-nightly.20260611",
98
+ "@aztec/ethereum": "5.0.0-nightly.20260611",
99
+ "@aztec/foundation": "5.0.0-nightly.20260611",
100
+ "@aztec/l1-artifacts": "5.0.0-nightly.20260611",
101
+ "@aztec/noir-noirc_abi": "5.0.0-nightly.20260611",
102
102
  "@google-cloud/storage": "^7.15.0",
103
103
  "axios": "^1.15.1",
104
104
  "json-stringify-deterministic": "1.0.12",
@@ -5,7 +5,7 @@ export const AppTaggingSecretKind = {
5
5
 
6
6
  export type AppTaggingSecretKind = (typeof AppTaggingSecretKind)[keyof typeof AppTaggingSecretKind];
7
7
 
8
- // Keep in sync with aztec::messages::delivery::{ONCHAIN_UNCONSTRAINED, ONCHAIN_CONSTRAINED}.
8
+ // Keep in sync with aztec::messages::delivery::OnchainDeliveryMode.
9
9
  const ONCHAIN_UNCONSTRAINED_DELIVERY_MODE = 2;
10
10
  const ONCHAIN_CONSTRAINED_DELIVERY_MODE = 3;
11
11