@aztec/protocol-contracts 0.0.1-commit.b655e406 → 0.0.1-commit.c7c42ec
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 +1421 -1359
- package/artifacts/ContractClassRegistry.json +3025 -4583
- package/artifacts/ContractInstanceRegistry.json +1409 -1359
- package/artifacts/FeeJuice.json +2332 -2195
- package/artifacts/MultiCallEntrypoint.json +1115 -1050
- package/artifacts/Router.json +228 -233
- package/dest/auth-registry/index.d.ts +1 -1
- package/dest/auth-registry/lazy.d.ts +1 -1
- package/dest/class-registry/contract_class_published_event.d.ts +3 -2
- package/dest/class-registry/contract_class_published_event.d.ts.map +1 -1
- package/dest/class-registry/contract_class_published_event.js +3 -0
- package/dest/class-registry/index.d.ts +1 -1
- package/dest/class-registry/lazy.d.ts +1 -1
- package/dest/class-registry/private_function_broadcasted_event.d.ts +2 -6
- package/dest/class-registry/private_function_broadcasted_event.d.ts.map +1 -1
- package/dest/class-registry/utility_function_broadcasted_event.d.ts +2 -5
- package/dest/class-registry/utility_function_broadcasted_event.d.ts.map +1 -1
- package/dest/class-registry/utility_function_broadcasted_event.js +1 -1
- package/dest/fee-juice/index.d.ts +2 -2
- package/dest/fee-juice/index.d.ts.map +1 -1
- package/dest/fee-juice/lazy.d.ts +1 -1
- package/dest/index.d.ts +1 -1
- package/dest/instance-registry/contract_instance_published_event.d.ts +3 -2
- package/dest/instance-registry/contract_instance_published_event.d.ts.map +1 -1
- package/dest/instance-registry/contract_instance_published_event.js +4 -1
- package/dest/instance-registry/contract_instance_updated_event.d.ts +2 -2
- package/dest/instance-registry/contract_instance_updated_event.d.ts.map +1 -1
- package/dest/instance-registry/index.d.ts +1 -1
- package/dest/instance-registry/lazy.d.ts +1 -1
- package/dest/make_protocol_contract.d.ts +1 -1
- package/dest/multi-call-entrypoint/index.d.ts +1 -1
- package/dest/multi-call-entrypoint/lazy.d.ts +1 -1
- package/dest/protocol_contract.d.ts +1 -1
- package/dest/protocol_contract_data.d.ts +2 -2
- package/dest/protocol_contract_data.d.ts.map +1 -1
- package/dest/protocol_contract_data.js +14 -14
- package/dest/provider/bundle.d.ts +1 -1
- package/dest/provider/bundle.d.ts.map +1 -1
- package/dest/provider/lazy.d.ts +1 -1
- package/dest/provider/lazy.d.ts.map +1 -1
- package/dest/provider/protocol_contracts_provider.d.ts +1 -1
- package/dest/router/index.d.ts +1 -1
- package/dest/router/lazy.d.ts +1 -1
- package/dest/scripts/generate_data.js +3 -3
- package/dest/tests/fixtures.d.ts +1 -1
- package/package.json +9 -8
- package/src/class-registry/contract_class_published_event.ts +7 -1
- package/src/class-registry/private_function_broadcasted_event.ts +1 -1
- package/src/class-registry/utility_function_broadcasted_event.ts +1 -1
- package/src/fee-juice/index.ts +1 -1
- package/src/instance-registry/contract_instance_published_event.ts +7 -1
- package/src/instance-registry/contract_instance_updated_event.ts +1 -1
- package/src/protocol_contract_data.ts +14 -14
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
// GENERATED FILE - DO NOT EDIT. RUN `yarn generate` or `yarn generate:data`
|
|
3
|
-
import { Fr } from '@aztec/foundation/
|
|
3
|
+
import { Fr } from '@aztec/foundation/curves/bn254';
|
|
4
4
|
import { AztecAddress } from '@aztec/stdlib/aztec-address';
|
|
5
5
|
import { ProtocolContracts } from '@aztec/stdlib/tx';
|
|
6
6
|
|
|
@@ -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('0x01826d76ce89e55a92c5470eb557bf162dd7d767ae4ee175005a7fa4e99fb6e1'),
|
|
45
|
+
ContractInstanceRegistry: AztecAddress.fromString('0x01fe9f10f75d1144d4f639cd1343f21dd6704d625862c656289d8d469260c8ec'),
|
|
46
|
+
ContractClassRegistry: AztecAddress.fromString('0x0644acbac1f08ca31c11c7ba5a499d5712df7328bef937abc2218939480888fd'),
|
|
47
|
+
MultiCallEntrypoint: AztecAddress.fromString('0x1942206ea40e346bc3d1199bd18d3fb195b9e55783555257ecec39cff517f07c'),
|
|
48
|
+
FeeJuice: AztecAddress.fromString('0x1372bed10ea17c9fa328aee7dde99c400acb65317dba45c38e27038ac01753a9'),
|
|
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('0x01826d76ce89e55a92c5470eb557bf162dd7d767ae4ee175005a7fa4e99fb6e1'),
|
|
56
|
+
AztecAddress.fromString('0x01fe9f10f75d1144d4f639cd1343f21dd6704d625862c656289d8d469260c8ec'),
|
|
57
|
+
AztecAddress.fromString('0x0644acbac1f08ca31c11c7ba5a499d5712df7328bef937abc2218939480888fd'),
|
|
58
|
+
AztecAddress.fromString('0x1942206ea40e346bc3d1199bd18d3fb195b9e55783555257ecec39cff517f07c'),
|
|
59
|
+
AztecAddress.fromString('0x1372bed10ea17c9fa328aee7dde99c400acb65317dba45c38e27038ac01753a9'),
|
|
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('0x168f09154ab73f2bd206a4991e6e975aea5ebb0f86157404b942c33b91312cfa');
|
|
69
69
|
|
|
70
70
|
|
|
71
71
|
|