@aztec/protocol-contracts 3.0.0-nightly.20251221 → 3.0.0-nightly.20251223
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 +139 -127
- package/artifacts/ContractClassRegistry.json +102 -90
- package/artifacts/ContractInstanceRegistry.json +116 -104
- package/artifacts/FeeJuice.json +113 -101
- package/artifacts/MultiCallEntrypoint.json +99 -87
- package/artifacts/Router.json +96 -84
- package/dest/protocol_contract_data.js +13 -13
- package/package.json +4 -4
- package/src/protocol_contract_data.ts +13 -13
|
@@ -27,25 +27,25 @@ export const ProtocolContractAddress = {
|
|
|
27
27
|
Router: AztecAddress.fromBigInt(6n)
|
|
28
28
|
};
|
|
29
29
|
export const ProtocolContractDerivedAddress = {
|
|
30
|
-
AuthRegistry: AztecAddress.fromString('
|
|
31
|
-
ContractInstanceRegistry: AztecAddress.fromString('
|
|
32
|
-
ContractClassRegistry: AztecAddress.fromString('
|
|
33
|
-
MultiCallEntrypoint: AztecAddress.fromString('
|
|
34
|
-
FeeJuice: AztecAddress.fromString('
|
|
35
|
-
Router: AztecAddress.fromString('
|
|
30
|
+
AuthRegistry: AztecAddress.fromString('0x2c5d362ae7909ba0a071bb0392af9abfc61023cccaf25fe0a62c5025beded931'),
|
|
31
|
+
ContractInstanceRegistry: AztecAddress.fromString('0x23df9892384e6aa52ead45f657a6d67dba2d75ce296b6a91a0d0fbe4d3073af7'),
|
|
32
|
+
ContractClassRegistry: AztecAddress.fromString('0x2d90e53b81ad228f456a9ebb368d968fde846d62bbf7770994df4524a2a0dac1'),
|
|
33
|
+
MultiCallEntrypoint: AztecAddress.fromString('0x29155e1ab0c9531c2377b457903c0f052dde109346ac1618b9f6e90e66cbf837'),
|
|
34
|
+
FeeJuice: AztecAddress.fromString('0x16e9b8dd0280276680d9434e8a4b462ba574a58c606112dde289725e8a8908bc'),
|
|
35
|
+
Router: AztecAddress.fromString('0x12b0c529d7c93c7bc94d3e08cf26c39c810762a91d2bbce2fc294706fe86028e')
|
|
36
36
|
};
|
|
37
37
|
export const ProtocolContractsList = new ProtocolContracts([
|
|
38
|
-
AztecAddress.fromString('
|
|
39
|
-
AztecAddress.fromString('
|
|
40
|
-
AztecAddress.fromString('
|
|
41
|
-
AztecAddress.fromString('
|
|
42
|
-
AztecAddress.fromString('
|
|
43
|
-
AztecAddress.fromString('
|
|
38
|
+
AztecAddress.fromString('0x2c5d362ae7909ba0a071bb0392af9abfc61023cccaf25fe0a62c5025beded931'),
|
|
39
|
+
AztecAddress.fromString('0x23df9892384e6aa52ead45f657a6d67dba2d75ce296b6a91a0d0fbe4d3073af7'),
|
|
40
|
+
AztecAddress.fromString('0x2d90e53b81ad228f456a9ebb368d968fde846d62bbf7770994df4524a2a0dac1'),
|
|
41
|
+
AztecAddress.fromString('0x29155e1ab0c9531c2377b457903c0f052dde109346ac1618b9f6e90e66cbf837'),
|
|
42
|
+
AztecAddress.fromString('0x16e9b8dd0280276680d9434e8a4b462ba574a58c606112dde289725e8a8908bc'),
|
|
43
|
+
AztecAddress.fromString('0x12b0c529d7c93c7bc94d3e08cf26c39c810762a91d2bbce2fc294706fe86028e'),
|
|
44
44
|
AztecAddress.fromString('0x0000000000000000000000000000000000000000000000000000000000000000'),
|
|
45
45
|
AztecAddress.fromString('0x0000000000000000000000000000000000000000000000000000000000000000'),
|
|
46
46
|
AztecAddress.fromString('0x0000000000000000000000000000000000000000000000000000000000000000'),
|
|
47
47
|
AztecAddress.fromString('0x0000000000000000000000000000000000000000000000000000000000000000'),
|
|
48
48
|
AztecAddress.fromString('0x0000000000000000000000000000000000000000000000000000000000000000')
|
|
49
49
|
]);
|
|
50
|
-
export const protocolContractsHash = Fr.fromString('
|
|
50
|
+
export const protocolContractsHash = Fr.fromString('0x23959a148dd229783b3ce5a98b7d4aeae0f83c6cced56fb660e1dc912119fe2e');
|
|
51
51
|
export const CONTRACT_INSTANCE_PUBLISHED_EVENT_TAG = Fr.fromHexString('0x28da3fc471387d4e20b646b77abc8cdfc02a339a7507285a73d84f9b97b13486');
|
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": "3.0.0-nightly.
|
|
5
|
+
"version": "3.0.0-nightly.20251223",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"exports": {
|
|
8
8
|
".": "./dest/index.js",
|
|
@@ -73,9 +73,9 @@
|
|
|
73
73
|
]
|
|
74
74
|
},
|
|
75
75
|
"dependencies": {
|
|
76
|
-
"@aztec/constants": "3.0.0-nightly.
|
|
77
|
-
"@aztec/foundation": "3.0.0-nightly.
|
|
78
|
-
"@aztec/stdlib": "3.0.0-nightly.
|
|
76
|
+
"@aztec/constants": "3.0.0-nightly.20251223",
|
|
77
|
+
"@aztec/foundation": "3.0.0-nightly.20251223",
|
|
78
|
+
"@aztec/stdlib": "3.0.0-nightly.20251223",
|
|
79
79
|
"lodash.chunk": "^4.2.0",
|
|
80
80
|
"lodash.omit": "^4.5.0",
|
|
81
81
|
"tslib": "^2.4.0"
|
|
@@ -41,23 +41,23 @@ Router: AztecAddress.fromBigInt(6n)
|
|
|
41
41
|
|
|
42
42
|
|
|
43
43
|
export const ProtocolContractDerivedAddress = {
|
|
44
|
-
AuthRegistry: AztecAddress.fromString('
|
|
45
|
-
ContractInstanceRegistry: AztecAddress.fromString('
|
|
46
|
-
ContractClassRegistry: AztecAddress.fromString('
|
|
47
|
-
MultiCallEntrypoint: AztecAddress.fromString('
|
|
48
|
-
FeeJuice: AztecAddress.fromString('
|
|
49
|
-
Router: AztecAddress.fromString('
|
|
44
|
+
AuthRegistry: AztecAddress.fromString('0x2c5d362ae7909ba0a071bb0392af9abfc61023cccaf25fe0a62c5025beded931'),
|
|
45
|
+
ContractInstanceRegistry: AztecAddress.fromString('0x23df9892384e6aa52ead45f657a6d67dba2d75ce296b6a91a0d0fbe4d3073af7'),
|
|
46
|
+
ContractClassRegistry: AztecAddress.fromString('0x2d90e53b81ad228f456a9ebb368d968fde846d62bbf7770994df4524a2a0dac1'),
|
|
47
|
+
MultiCallEntrypoint: AztecAddress.fromString('0x29155e1ab0c9531c2377b457903c0f052dde109346ac1618b9f6e90e66cbf837'),
|
|
48
|
+
FeeJuice: AztecAddress.fromString('0x16e9b8dd0280276680d9434e8a4b462ba574a58c606112dde289725e8a8908bc'),
|
|
49
|
+
Router: AztecAddress.fromString('0x12b0c529d7c93c7bc94d3e08cf26c39c810762a91d2bbce2fc294706fe86028e')
|
|
50
50
|
};
|
|
51
51
|
|
|
52
52
|
|
|
53
53
|
|
|
54
54
|
export const ProtocolContractsList = new ProtocolContracts([
|
|
55
|
-
AztecAddress.fromString('
|
|
56
|
-
AztecAddress.fromString('
|
|
57
|
-
AztecAddress.fromString('
|
|
58
|
-
AztecAddress.fromString('
|
|
59
|
-
AztecAddress.fromString('
|
|
60
|
-
AztecAddress.fromString('
|
|
55
|
+
AztecAddress.fromString('0x2c5d362ae7909ba0a071bb0392af9abfc61023cccaf25fe0a62c5025beded931'),
|
|
56
|
+
AztecAddress.fromString('0x23df9892384e6aa52ead45f657a6d67dba2d75ce296b6a91a0d0fbe4d3073af7'),
|
|
57
|
+
AztecAddress.fromString('0x2d90e53b81ad228f456a9ebb368d968fde846d62bbf7770994df4524a2a0dac1'),
|
|
58
|
+
AztecAddress.fromString('0x29155e1ab0c9531c2377b457903c0f052dde109346ac1618b9f6e90e66cbf837'),
|
|
59
|
+
AztecAddress.fromString('0x16e9b8dd0280276680d9434e8a4b462ba574a58c606112dde289725e8a8908bc'),
|
|
60
|
+
AztecAddress.fromString('0x12b0c529d7c93c7bc94d3e08cf26c39c810762a91d2bbce2fc294706fe86028e'),
|
|
61
61
|
AztecAddress.fromString('0x0000000000000000000000000000000000000000000000000000000000000000'),
|
|
62
62
|
AztecAddress.fromString('0x0000000000000000000000000000000000000000000000000000000000000000'),
|
|
63
63
|
AztecAddress.fromString('0x0000000000000000000000000000000000000000000000000000000000000000'),
|
|
@@ -65,7 +65,7 @@ AztecAddress.fromString('0x00000000000000000000000000000000000000000000000000000
|
|
|
65
65
|
AztecAddress.fromString('0x0000000000000000000000000000000000000000000000000000000000000000')
|
|
66
66
|
]);
|
|
67
67
|
|
|
68
|
-
export const protocolContractsHash = Fr.fromString('
|
|
68
|
+
export const protocolContractsHash = Fr.fromString('0x23959a148dd229783b3ce5a98b7d4aeae0f83c6cced56fb660e1dc912119fe2e');
|
|
69
69
|
|
|
70
70
|
|
|
71
71
|
|