@aztec/protocol-contracts 3.0.0-devnet.2 → 3.0.0-devnet.2-patch.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 +692 -630
- package/artifacts/ContractClassRegistry.json +519 -2089
- package/artifacts/ContractInstanceRegistry.json +799 -757
- package/artifacts/FeeJuice.json +348 -215
- package/artifacts/MultiCallEntrypoint.json +191 -138
- package/artifacts/Router.json +131 -144
- 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('0x154bc3dc5cea44ef4c3d3578cdce2f81f34300d2d7819a8d72ef0d4d135cdfd4'),
|
|
45
|
+
ContractInstanceRegistry: AztecAddress.fromString('0x04265e72412c0b74d741e805252a0cb54e703a68f513cd91306ad0b400a24b0d'),
|
|
46
|
+
ContractClassRegistry: AztecAddress.fromString('0x0b7a3b99c7051ee329d2c905b9f646d3706ed031fa1f97b0c19274e5773ebec5'),
|
|
47
|
+
MultiCallEntrypoint: AztecAddress.fromString('0x0961995245e0f34801e7ca5e83a0a6fbf2d78cfce788134b6ef6e877715d594a'),
|
|
48
|
+
FeeJuice: AztecAddress.fromString('0x13d932791f9e77dce1dcbdbb0a562ceab5dcb491866905471cf7cfc1136001b0'),
|
|
49
|
+
Router: AztecAddress.fromString('0x2fed59e101da3e1f0f7e959fd154d042ca447729a80925faf4da42bc8ff05865')
|
|
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('0x154bc3dc5cea44ef4c3d3578cdce2f81f34300d2d7819a8d72ef0d4d135cdfd4'),
|
|
56
|
+
AztecAddress.fromString('0x04265e72412c0b74d741e805252a0cb54e703a68f513cd91306ad0b400a24b0d'),
|
|
57
|
+
AztecAddress.fromString('0x0b7a3b99c7051ee329d2c905b9f646d3706ed031fa1f97b0c19274e5773ebec5'),
|
|
58
|
+
AztecAddress.fromString('0x0961995245e0f34801e7ca5e83a0a6fbf2d78cfce788134b6ef6e877715d594a'),
|
|
59
|
+
AztecAddress.fromString('0x13d932791f9e77dce1dcbdbb0a562ceab5dcb491866905471cf7cfc1136001b0'),
|
|
60
|
+
AztecAddress.fromString('0x2fed59e101da3e1f0f7e959fd154d042ca447729a80925faf4da42bc8ff05865'),
|
|
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('0x2348b12e0edd63c38dbb849b6c788c4975ed3f1f3706fcb5e17431e805da672d');
|
|
69
69
|
|
|
70
70
|
|
|
71
71
|
|