@aztec/protocol-contracts 0.49.2 → 0.50.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.
- package/artifacts/AuthRegistry.json +1 -1
- package/artifacts/ContractClassRegisterer.json +1 -1
- package/artifacts/ContractInstanceDeployer.json +1 -1
- package/artifacts/FeeJuice.json +1 -1
- package/artifacts/KeyRegistry.json +1 -0
- package/artifacts/MultiCallEntrypoint.json +1 -1
- package/dest/key-registry/artifact.d.ts.map +1 -1
- package/dest/key-registry/artifact.js +3 -3
- package/package.json +4 -4
- package/src/key-registry/artifact.ts +2 -2
- package/artifacts/NewKeyRegistry.json +0 -1
- /package/artifacts/{NewKeyRegistry.d.json.ts → KeyRegistry.d.json.ts} +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"artifact.d.ts","sourceRoot":"","sources":["../../src/key-registry/artifact.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,mBAAmB,
|
|
1
|
+
{"version":3,"file":"artifact.d.ts","sourceRoot":"","sources":["../../src/key-registry/artifact.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,mBAAmB,kDAAgE,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { loadContractArtifact } from '@aztec/types/abi';
|
|
2
|
-
import
|
|
3
|
-
export const KeyRegistryArtifact = loadContractArtifact(
|
|
4
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
2
|
+
import KeyRegistryJson from '../../artifacts/KeyRegistry.json' assert { type: 'json' };
|
|
3
|
+
export const KeyRegistryArtifact = loadContractArtifact(KeyRegistryJson);
|
|
4
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXJ0aWZhY3QuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMva2V5LXJlZ2lzdHJ5L2FydGlmYWN0LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxNQUFNLGtCQUFrQixDQUFDO0FBR3hELE9BQU8sZUFBZSxNQUFNLGtDQUFrQyxDQUFDLFNBQVMsSUFBSSxFQUFFLE1BQU0sRUFBRSxDQUFDO0FBRXZGLE1BQU0sQ0FBQyxNQUFNLG1CQUFtQixHQUFHLG9CQUFvQixDQUFDLGVBQXVDLENBQUMsQ0FBQyJ9
|
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.
|
|
5
|
+
"version": "0.50.1",
|
|
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.
|
|
68
|
-
"@aztec/foundation": "0.
|
|
69
|
-
"@aztec/types": "0.
|
|
67
|
+
"@aztec/circuits.js": "0.50.1",
|
|
68
|
+
"@aztec/foundation": "0.50.1",
|
|
69
|
+
"@aztec/types": "0.50.1",
|
|
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
|
|
4
|
+
import KeyRegistryJson from '../../artifacts/KeyRegistry.json' assert { type: 'json' };
|
|
5
5
|
|
|
6
|
-
export const KeyRegistryArtifact = loadContractArtifact(
|
|
6
|
+
export const KeyRegistryArtifact = loadContractArtifact(KeyRegistryJson as NoirCompiledContract);
|