@aztec/protocol-contracts 0.48.0 → 0.49.2

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.
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@aztec/protocol-contracts",
3
3
  "homepage": "https://github.com/AztecProtocol/aztec-packages/tree/master/yarn-project/protocol-contracts",
4
4
  "description": "Canonical Noir contracts for the Aztec Network",
5
- "version": "0.48.0",
5
+ "version": "0.49.2",
6
6
  "type": "module",
7
7
  "exports": {
8
8
  ".": "./dest/index.js",
@@ -64,9 +64,9 @@
64
64
  ]
65
65
  },
66
66
  "dependencies": {
67
- "@aztec/circuits.js": "0.48.0",
68
- "@aztec/foundation": "0.48.0",
69
- "@aztec/types": "0.48.0",
67
+ "@aztec/circuits.js": "0.49.2",
68
+ "@aztec/foundation": "0.49.2",
69
+ "@aztec/types": "0.49.2",
70
70
  "lodash.omit": "^4.5.0",
71
71
  "tslib": "^2.4.0"
72
72
  },
@@ -1,6 +1,6 @@
1
1
  import { loadContractArtifact } from '@aztec/types/abi';
2
2
  import { type NoirCompiledContract } from '@aztec/types/noir';
3
3
 
4
- import KeyRegistryJson from '../../artifacts/KeyRegistry.json' assert { type: 'json' };
4
+ import NewKeyRegistryJson from '../../artifacts/NewKeyRegistry.json' assert { type: 'json' };
5
5
 
6
- export const KeyRegistryArtifact = loadContractArtifact(KeyRegistryJson as NoirCompiledContract);
6
+ export const KeyRegistryArtifact = loadContractArtifact(NewKeyRegistryJson as NoirCompiledContract);