@aztec/aztec.js 0.0.1-commit.f295ac2 → 0.0.1-commit.f2ce05ee
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/dest/account/account.d.ts +25 -40
- package/dest/account/account.d.ts.map +1 -1
- package/dest/account/account.js +19 -47
- package/dest/account/account_contract.d.ts +7 -8
- package/dest/account/account_contract.d.ts.map +1 -1
- package/dest/account/account_with_secret_key.d.ts +18 -7
- package/dest/account/account_with_secret_key.d.ts.map +1 -1
- package/dest/account/account_with_secret_key.js +21 -4
- package/dest/account/index.d.ts +3 -2
- package/dest/account/index.d.ts.map +1 -1
- package/dest/account/index.js +2 -0
- package/dest/account/signerless_account.d.ts +5 -6
- package/dest/account/signerless_account.d.ts.map +1 -1
- package/dest/account/signerless_account.js +8 -11
- package/dest/api/account.d.ts +2 -4
- package/dest/api/account.d.ts.map +1 -1
- package/dest/api/account.js +1 -3
- package/dest/api/authorization.d.ts +2 -2
- package/dest/api/authorization.d.ts.map +1 -1
- package/dest/api/authorization.js +1 -1
- package/dest/api/block.d.ts +2 -2
- package/dest/api/block.d.ts.map +1 -1
- package/dest/api/block.js +1 -1
- package/dest/api/contract.d.ts +16 -10
- package/dest/api/contract.d.ts.map +1 -1
- package/dest/api/contract.js +14 -8
- package/dest/api/events.d.ts +10 -6
- package/dest/api/events.d.ts.map +1 -1
- package/dest/api/events.js +30 -20
- package/dest/api/fields.d.ts +2 -1
- package/dest/api/fields.d.ts.map +1 -1
- package/dest/api/fields.js +1 -0
- package/dest/api/keys.d.ts +1 -1
- package/dest/api/keys.js +1 -1
- package/dest/api/node.d.ts +8 -4
- package/dest/api/node.d.ts.map +1 -1
- package/dest/api/node.js +7 -3
- package/dest/api/tx.d.ts +2 -2
- package/dest/api/tx.d.ts.map +1 -1
- package/dest/api/tx.js +1 -1
- package/dest/api/wallet.d.ts +3 -2
- package/dest/api/wallet.d.ts.map +1 -1
- package/dest/api/wallet.js +2 -1
- package/dest/contract/base_contract_interaction.d.ts +8 -10
- package/dest/contract/base_contract_interaction.d.ts.map +1 -1
- package/dest/contract/base_contract_interaction.js +5 -17
- package/dest/contract/contract_function_interaction.d.ts +3 -12
- package/dest/contract/contract_function_interaction.d.ts.map +1 -1
- package/dest/contract/contract_function_interaction.js +6 -6
- package/dest/contract/deploy_method.d.ts +63 -16
- package/dest/contract/deploy_method.d.ts.map +1 -1
- package/dest/contract/deploy_method.js +36 -19
- package/dest/contract/interaction_options.d.ts +42 -5
- package/dest/contract/interaction_options.d.ts.map +1 -1
- package/dest/contract/interaction_options.js +8 -1
- package/dest/contract/protocol_contracts/auth-registry.d.ts +1 -10
- package/dest/contract/protocol_contracts/auth-registry.d.ts.map +1 -1
- package/dest/contract/protocol_contracts/auth-registry.js +97 -467
- package/dest/contract/protocol_contracts/contract-class-registry.d.ts +2 -11
- package/dest/contract/protocol_contracts/contract-class-registry.d.ts.map +1 -1
- package/dest/contract/protocol_contracts/contract-class-registry.js +10 -422
- package/dest/contract/protocol_contracts/contract-instance-registry.d.ts +2 -11
- package/dest/contract/protocol_contracts/contract-instance-registry.d.ts.map +1 -1
- package/dest/contract/protocol_contracts/contract-instance-registry.js +80 -482
- package/dest/contract/protocol_contracts/fee-juice.d.ts +1 -10
- package/dest/contract/protocol_contracts/fee-juice.d.ts.map +1 -1
- package/dest/contract/protocol_contracts/fee-juice.js +14 -412
- package/dest/contract/protocol_contracts/multi-call-entrypoint.d.ts +3 -3
- package/dest/contract/protocol_contracts/multi-call-entrypoint.d.ts.map +1 -1
- package/dest/contract/protocol_contracts/multi-call-entrypoint.js +23 -14
- package/dest/contract/protocol_contracts/public-checks.d.ts +3 -3
- package/dest/contract/protocol_contracts/public-checks.d.ts.map +1 -1
- package/dest/contract/protocol_contracts/public-checks.js +23 -22
- package/dest/contract/wait_for_proven.js +1 -1
- package/dest/contract/wait_opts.d.ts +16 -0
- package/dest/contract/wait_opts.d.ts.map +1 -0
- package/dest/contract/wait_opts.js +5 -0
- package/dest/fee/fee_juice_payment_method_with_claim.js +6 -6
- package/dest/fee/private_fee_payment_method.js +10 -10
- package/dest/fee/public_fee_payment_method.js +10 -10
- package/dest/fee/sponsored_fee_payment.js +3 -3
- package/dest/utils/authwit.d.ts +8 -6
- package/dest/utils/authwit.d.ts.map +1 -1
- package/dest/utils/authwit.js +5 -9
- package/dest/utils/node.d.ts +12 -1
- package/dest/utils/node.d.ts.map +1 -1
- package/dest/utils/node.js +46 -0
- package/dest/wallet/account_entrypoint_meta_payment_method.d.ts +5 -8
- package/dest/wallet/account_entrypoint_meta_payment_method.d.ts.map +1 -1
- package/dest/wallet/account_entrypoint_meta_payment_method.js +28 -43
- package/dest/wallet/account_manager.d.ts +1 -7
- package/dest/wallet/account_manager.d.ts.map +1 -1
- package/dest/wallet/account_manager.js +5 -11
- package/dest/wallet/capabilities.d.ts +444 -0
- package/dest/wallet/capabilities.d.ts.map +1 -0
- package/dest/wallet/capabilities.js +3 -0
- package/dest/wallet/deploy_account_method.d.ts +34 -6
- package/dest/wallet/deploy_account_method.d.ts.map +1 -1
- package/dest/wallet/deploy_account_method.js +7 -5
- package/dest/wallet/index.d.ts +2 -1
- package/dest/wallet/index.d.ts.map +1 -1
- package/dest/wallet/index.js +1 -0
- package/dest/wallet/wallet.d.ts +1493 -94
- package/dest/wallet/wallet.d.ts.map +1 -1
- package/dest/wallet/wallet.js +158 -26
- package/package.json +19 -10
- package/src/account/account.ts +34 -58
- package/src/account/account_contract.ts +6 -7
- package/src/account/account_with_secret_key.ts +33 -8
- package/src/account/index.ts +2 -1
- package/src/account/signerless_account.ts +13 -12
- package/src/api/account.ts +9 -3
- package/src/api/authorization.ts +1 -0
- package/src/api/block.ts +1 -1
- package/src/api/contract.ts +22 -7
- package/src/api/events.ts +35 -27
- package/src/api/fields.ts +1 -0
- package/src/api/keys.ts +2 -2
- package/src/api/node.ts +7 -3
- package/src/api/tx.ts +2 -0
- package/src/api/wallet.ts +47 -1
- package/src/contract/base_contract_interaction.ts +27 -15
- package/src/contract/contract_function_interaction.ts +13 -6
- package/src/contract/deploy_method.ts +115 -23
- package/src/contract/interaction_options.ts +49 -4
- package/src/contract/protocol_contracts/auth-registry.ts +45 -236
- package/src/contract/protocol_contracts/contract-class-registry.ts +3 -204
- package/src/contract/protocol_contracts/contract-instance-registry.ts +34 -233
- package/src/contract/protocol_contracts/fee-juice.ts +4 -202
- package/src/contract/protocol_contracts/multi-call-entrypoint.ts +6 -12
- package/src/contract/protocol_contracts/public-checks.ts +6 -14
- package/src/contract/wait_for_proven.ts +1 -1
- package/src/contract/wait_opts.ts +21 -0
- package/src/fee/fee_juice_payment_method_with_claim.ts +5 -5
- package/src/fee/private_fee_payment_method.ts +7 -7
- package/src/fee/public_fee_payment_method.ts +8 -8
- package/src/fee/sponsored_fee_payment.ts +3 -3
- package/src/utils/authwit.ts +19 -7
- package/src/utils/node.ts +62 -0
- package/src/wallet/account_entrypoint_meta_payment_method.ts +28 -60
- package/src/wallet/account_manager.ts +5 -13
- package/src/wallet/capabilities.ts +491 -0
- package/src/wallet/deploy_account_method.ts +37 -13
- package/src/wallet/index.ts +1 -0
- package/src/wallet/wallet.ts +214 -48
- package/dest/account/interface.d.ts +0 -19
- package/dest/account/interface.d.ts.map +0 -1
- package/dest/account/interface.js +0 -5
- package/dest/contract/deploy_sent_tx.d.ts +0 -48
- package/dest/contract/deploy_sent_tx.d.ts.map +0 -1
- package/dest/contract/deploy_sent_tx.js +0 -46
- package/dest/contract/sent_tx.d.ts +0 -50
- package/dest/contract/sent_tx.d.ts.map +0 -1
- package/dest/contract/sent_tx.js +0 -90
- package/src/account/interface.ts +0 -25
- package/src/contract/deploy_sent_tx.ts +0 -75
- package/src/contract/sent_tx.ts +0 -129
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { FieldLike, FunctionSelectorLike, WrappedFieldLike } from '../../utils/abi_types.js';
|
|
2
2
|
import type { Wallet } from '../../wallet/wallet.js';
|
|
3
3
|
import { ContractBase, type ContractMethod } from '../contract_base.js';
|
|
4
4
|
import { ContractFunctionInteraction } from '../contract_function_interaction.js';
|
|
@@ -17,19 +17,10 @@ export declare class ContractClassRegistryContract extends ContractBase {
|
|
|
17
17
|
selector: FunctionSelectorLike;
|
|
18
18
|
metadata_hash: FieldLike;
|
|
19
19
|
}) => ContractFunctionInteraction) & Pick<ContractMethod, 'selector'>;
|
|
20
|
-
/** process_message(message_ciphertext: struct, message_context: struct) */
|
|
21
|
-
process_message: ((message_ciphertext: FieldLike[], message_context: {
|
|
22
|
-
tx_hash: FieldLike;
|
|
23
|
-
unique_note_hashes_in_tx: FieldLike[];
|
|
24
|
-
first_nullifier_in_tx: FieldLike;
|
|
25
|
-
recipient: AztecAddressLike;
|
|
26
|
-
}) => ContractFunctionInteraction) & Pick<ContractMethod, 'selector'>;
|
|
27
20
|
/** public_dispatch(selector: field) */
|
|
28
21
|
public_dispatch: ((selector: FieldLike) => ContractFunctionInteraction) & Pick<ContractMethod, 'selector'>;
|
|
29
22
|
/** publish(artifact_hash: field, private_functions_root: field, public_bytecode_commitment: field) */
|
|
30
23
|
publish: ((artifact_hash: FieldLike, private_functions_root: FieldLike, public_bytecode_commitment: FieldLike) => ContractFunctionInteraction) & Pick<ContractMethod, 'selector'>;
|
|
31
|
-
/** sync_private_state() */
|
|
32
|
-
sync_private_state: (() => ContractFunctionInteraction) & Pick<ContractMethod, 'selector'>;
|
|
33
24
|
};
|
|
34
25
|
}
|
|
35
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
26
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29udHJhY3QtY2xhc3MtcmVnaXN0cnkuZC50cyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9jb250cmFjdC9wcm90b2NvbF9jb250cmFjdHMvY29udHJhY3QtY2xhc3MtcmVnaXN0cnkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBT0EsT0FBTyxLQUFLLEVBR1YsU0FBUyxFQUNULG9CQUFvQixFQUNwQixnQkFBZ0IsRUFDakIsTUFBTSwwQkFBMEIsQ0FBQztBQUNsQyxPQUFPLEtBQUssRUFBRSxNQUFNLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUNyRCxPQUFPLEVBQUUsWUFBWSxFQUFFLEtBQUssY0FBYyxFQUFFLE1BQU0scUJBQXFCLENBQUM7QUFDeEUsT0FBTyxFQUFFLDJCQUEyQixFQUFFLE1BQU0scUNBQXFDLENBQUM7QUFtTGxGLHFCQUFhLDZCQUE4QixTQUFRLFlBQVk7SUFDN0QsT0FBTyxlQUVOO0lBRUQsT0FBYyxFQUFFLENBQUMsTUFBTSxFQUFFLE1BQU0sR0FBRyw2QkFBNkIsQ0FFOUQ7SUFFYyxPQUFPLEVBQUU7UUFDdEIseVVBQXlVO1FBQ3pVLDBCQUEwQixFQUFFLENBQUMsQ0FDM0IsaUJBQWlCLEVBQUUsZ0JBQWdCLEVBQ25DLHNCQUFzQixFQUFFLFNBQVMsRUFDakMsb0NBQW9DLEVBQUUsU0FBUyxFQUMvQyxrQ0FBa0MsRUFBRSxTQUFTLEVBQUUsRUFDL0MsZ0NBQWdDLEVBQUUsU0FBUyxFQUMzQyxtQ0FBbUMsRUFBRSxTQUFTLEVBQUUsRUFDaEQsaUNBQWlDLEVBQUUsU0FBUyxFQUM1QyxhQUFhLEVBQUU7WUFBRSxRQUFRLEVBQUUsb0JBQW9CLENBQUM7WUFBQyxhQUFhLEVBQUUsU0FBUyxDQUFDO1lBQUMsT0FBTyxFQUFFLFNBQVMsQ0FBQTtTQUFFLEtBQzVGLDJCQUEyQixDQUFDLEdBQy9CLElBQUksQ0FBQyxjQUFjLEVBQUUsVUFBVSxDQUFDLENBQUM7UUFFbkMscVBBQXFQO1FBQ3JQLDBCQUEwQixFQUFFLENBQUMsQ0FDM0IsaUJBQWlCLEVBQUUsZ0JBQWdCLEVBQ25DLHNCQUFzQixFQUFFLFNBQVMsRUFDakMsb0NBQW9DLEVBQUUsU0FBUyxFQUMvQyxtQ0FBbUMsRUFBRSxTQUFTLEVBQUUsRUFDaEQsaUNBQWlDLEVBQUUsU0FBUyxFQUM1QyxhQUFhLEVBQUU7WUFBRSxRQUFRLEVBQUUsb0JBQW9CLENBQUM7WUFBQyxhQUFhLEVBQUUsU0FBUyxDQUFBO1NBQUUsS0FDeEUsMkJBQTJCLENBQUMsR0FDL0IsSUFBSSxDQUFDLGNBQWMsRUFBRSxVQUFVLENBQUMsQ0FBQztRQUVuQyx1Q0FBdUM7UUFDdkMsZUFBZSxFQUFFLENBQUMsQ0FBQyxRQUFRLEVBQUUsU0FBUyxLQUFLLDJCQUEyQixDQUFDLEdBQUcsSUFBSSxDQUFDLGNBQWMsRUFBRSxVQUFVLENBQUMsQ0FBQztRQUUzRyxzR0FBc0c7UUFDdEcsT0FBTyxFQUFFLENBQUMsQ0FDUixhQUFhLEVBQUUsU0FBUyxFQUN4QixzQkFBc0IsRUFBRSxTQUFTLEVBQ2pDLDBCQUEwQixFQUFFLFNBQVMsS0FDbEMsMkJBQTJCLENBQUMsR0FDL0IsSUFBSSxDQUFDLGNBQWMsRUFBRSxVQUFVLENBQUMsQ0FBQztLQUNwQyxDQUFDO0NBQ0gifQ==
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"contract-class-registry.d.ts","sourceRoot":"","sources":["../../../src/contract/protocol_contracts/contract-class-registry.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"contract-class-registry.d.ts","sourceRoot":"","sources":["../../../src/contract/protocol_contracts/contract-class-registry.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAGV,SAAS,EACT,oBAAoB,EACpB,gBAAgB,EACjB,MAAM,0BAA0B,CAAC;AAClC,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,EAAE,YAAY,EAAE,KAAK,cAAc,EAAE,MAAM,qBAAqB,CAAC;AACxE,OAAO,EAAE,2BAA2B,EAAE,MAAM,qCAAqC,CAAC;AAmLlF,qBAAa,6BAA8B,SAAQ,YAAY;IAC7D,OAAO,eAEN;IAED,OAAc,EAAE,CAAC,MAAM,EAAE,MAAM,GAAG,6BAA6B,CAE9D;IAEc,OAAO,EAAE;QACtB,yUAAyU;QACzU,0BAA0B,EAAE,CAAC,CAC3B,iBAAiB,EAAE,gBAAgB,EACnC,sBAAsB,EAAE,SAAS,EACjC,oCAAoC,EAAE,SAAS,EAC/C,kCAAkC,EAAE,SAAS,EAAE,EAC/C,gCAAgC,EAAE,SAAS,EAC3C,mCAAmC,EAAE,SAAS,EAAE,EAChD,iCAAiC,EAAE,SAAS,EAC5C,aAAa,EAAE;YAAE,QAAQ,EAAE,oBAAoB,CAAC;YAAC,aAAa,EAAE,SAAS,CAAC;YAAC,OAAO,EAAE,SAAS,CAAA;SAAE,KAC5F,2BAA2B,CAAC,GAC/B,IAAI,CAAC,cAAc,EAAE,UAAU,CAAC,CAAC;QAEnC,qPAAqP;QACrP,0BAA0B,EAAE,CAAC,CAC3B,iBAAiB,EAAE,gBAAgB,EACnC,sBAAsB,EAAE,SAAS,EACjC,oCAAoC,EAAE,SAAS,EAC/C,mCAAmC,EAAE,SAAS,EAAE,EAChD,iCAAiC,EAAE,SAAS,EAC5C,aAAa,EAAE;YAAE,QAAQ,EAAE,oBAAoB,CAAC;YAAC,aAAa,EAAE,SAAS,CAAA;SAAE,KACxE,2BAA2B,CAAC,GAC/B,IAAI,CAAC,cAAc,EAAE,UAAU,CAAC,CAAC;QAEnC,uCAAuC;QACvC,eAAe,EAAE,CAAC,CAAC,QAAQ,EAAE,SAAS,KAAK,2BAA2B,CAAC,GAAG,IAAI,CAAC,cAAc,EAAE,UAAU,CAAC,CAAC;QAE3G,sGAAsG;QACtG,OAAO,EAAE,CAAC,CACR,aAAa,EAAE,SAAS,EACxB,sBAAsB,EAAE,SAAS,EACjC,0BAA0B,EAAE,SAAS,KAClC,2BAA2B,CAAC,GAC/B,IAAI,CAAC,cAAc,EAAE,UAAU,CAAC,CAAC;KACpC,CAAC;CACH"}
|
|
@@ -124,11 +124,6 @@ const ContractClassRegistryContractArtifact = {
|
|
|
124
124
|
error_kind: 'string',
|
|
125
125
|
string: 'attempt to subtract with overflow'
|
|
126
126
|
},
|
|
127
|
-
'2754040237334517471': {
|
|
128
|
-
error_kind: 'fmtstring',
|
|
129
|
-
length: 92,
|
|
130
|
-
item_types: []
|
|
131
|
-
},
|
|
132
127
|
'14990209321349310352': {
|
|
133
128
|
error_kind: 'string',
|
|
134
129
|
string: 'attempt to add with overflow'
|
|
@@ -140,6 +135,10 @@ const ContractClassRegistryContractArtifact = {
|
|
|
140
135
|
'16431471497789672479': {
|
|
141
136
|
error_kind: 'string',
|
|
142
137
|
string: 'Index out of bounds'
|
|
138
|
+
},
|
|
139
|
+
'17655676068928457687': {
|
|
140
|
+
error_kind: 'string',
|
|
141
|
+
string: 'Reader did not read all data'
|
|
143
142
|
}
|
|
144
143
|
}
|
|
145
144
|
},
|
|
@@ -242,11 +241,6 @@ const ContractClassRegistryContractArtifact = {
|
|
|
242
241
|
error_kind: 'string',
|
|
243
242
|
string: 'attempt to subtract with overflow'
|
|
244
243
|
},
|
|
245
|
-
'2754040237334517471': {
|
|
246
|
-
error_kind: 'fmtstring',
|
|
247
|
-
length: 92,
|
|
248
|
-
item_types: []
|
|
249
|
-
},
|
|
250
244
|
'14990209321349310352': {
|
|
251
245
|
error_kind: 'string',
|
|
252
246
|
string: 'attempt to add with overflow'
|
|
@@ -258,6 +252,10 @@ const ContractClassRegistryContractArtifact = {
|
|
|
258
252
|
'16431471497789672479': {
|
|
259
253
|
error_kind: 'string',
|
|
260
254
|
string: 'Index out of bounds'
|
|
255
|
+
},
|
|
256
|
+
'17655676068928457687': {
|
|
257
|
+
error_kind: 'string',
|
|
258
|
+
string: 'Reader did not read all data'
|
|
261
259
|
}
|
|
262
260
|
}
|
|
263
261
|
},
|
|
@@ -308,11 +306,6 @@ const ContractClassRegistryContractArtifact = {
|
|
|
308
306
|
error_kind: 'string',
|
|
309
307
|
string: 'attempt to subtract with overflow'
|
|
310
308
|
},
|
|
311
|
-
'2754040237334517471': {
|
|
312
|
-
error_kind: 'fmtstring',
|
|
313
|
-
length: 92,
|
|
314
|
-
item_types: []
|
|
315
|
-
},
|
|
316
309
|
'10965409165809799877': {
|
|
317
310
|
error_kind: 'string',
|
|
318
311
|
string: 'Given in_len to absorb is larger than the input array len'
|
|
@@ -336,415 +329,10 @@ const ContractClassRegistryContractArtifact = {
|
|
|
336
329
|
'16450579948625159707': {
|
|
337
330
|
error_kind: 'string',
|
|
338
331
|
string: 'Sponge must be in cache_size=1'
|
|
339
|
-
}
|
|
340
|
-
}
|
|
341
|
-
},
|
|
342
|
-
bytecode: Buffer.from([]),
|
|
343
|
-
debugSymbols: ''
|
|
344
|
-
},
|
|
345
|
-
{
|
|
346
|
-
...{
|
|
347
|
-
functionType: FunctionType.UTILITY,
|
|
348
|
-
name: 'process_message',
|
|
349
|
-
isOnlySelf: false,
|
|
350
|
-
isStatic: false,
|
|
351
|
-
isInitializer: false,
|
|
352
|
-
parameters: [
|
|
353
|
-
{
|
|
354
|
-
name: 'message_ciphertext',
|
|
355
|
-
type: {
|
|
356
|
-
kind: 'struct',
|
|
357
|
-
fields: [
|
|
358
|
-
{
|
|
359
|
-
name: 'storage',
|
|
360
|
-
type: {
|
|
361
|
-
kind: 'array',
|
|
362
|
-
length: 17,
|
|
363
|
-
type: {
|
|
364
|
-
kind: 'field'
|
|
365
|
-
}
|
|
366
|
-
}
|
|
367
|
-
},
|
|
368
|
-
{
|
|
369
|
-
name: 'len',
|
|
370
|
-
type: {
|
|
371
|
-
kind: 'integer',
|
|
372
|
-
sign: 'unsigned',
|
|
373
|
-
width: 32
|
|
374
|
-
}
|
|
375
|
-
}
|
|
376
|
-
],
|
|
377
|
-
path: 'std::collections::bounded_vec::BoundedVec'
|
|
378
|
-
},
|
|
379
|
-
visibility: 'private'
|
|
380
|
-
},
|
|
381
|
-
{
|
|
382
|
-
name: 'message_context',
|
|
383
|
-
type: {
|
|
384
|
-
kind: 'struct',
|
|
385
|
-
fields: [
|
|
386
|
-
{
|
|
387
|
-
name: 'tx_hash',
|
|
388
|
-
type: {
|
|
389
|
-
kind: 'field'
|
|
390
|
-
}
|
|
391
|
-
},
|
|
392
|
-
{
|
|
393
|
-
name: 'unique_note_hashes_in_tx',
|
|
394
|
-
type: {
|
|
395
|
-
kind: 'struct',
|
|
396
|
-
fields: [
|
|
397
|
-
{
|
|
398
|
-
name: 'storage',
|
|
399
|
-
type: {
|
|
400
|
-
kind: 'array',
|
|
401
|
-
length: 64,
|
|
402
|
-
type: {
|
|
403
|
-
kind: 'field'
|
|
404
|
-
}
|
|
405
|
-
}
|
|
406
|
-
},
|
|
407
|
-
{
|
|
408
|
-
name: 'len',
|
|
409
|
-
type: {
|
|
410
|
-
kind: 'integer',
|
|
411
|
-
sign: 'unsigned',
|
|
412
|
-
width: 32
|
|
413
|
-
}
|
|
414
|
-
}
|
|
415
|
-
],
|
|
416
|
-
path: 'std::collections::bounded_vec::BoundedVec'
|
|
417
|
-
}
|
|
418
|
-
},
|
|
419
|
-
{
|
|
420
|
-
name: 'first_nullifier_in_tx',
|
|
421
|
-
type: {
|
|
422
|
-
kind: 'field'
|
|
423
|
-
}
|
|
424
|
-
},
|
|
425
|
-
{
|
|
426
|
-
name: 'recipient',
|
|
427
|
-
type: {
|
|
428
|
-
kind: 'struct',
|
|
429
|
-
fields: [
|
|
430
|
-
{
|
|
431
|
-
name: 'inner',
|
|
432
|
-
type: {
|
|
433
|
-
kind: 'field'
|
|
434
|
-
}
|
|
435
|
-
}
|
|
436
|
-
],
|
|
437
|
-
path: 'aztec::protocol_types::address::aztec_address::AztecAddress'
|
|
438
|
-
}
|
|
439
|
-
}
|
|
440
|
-
],
|
|
441
|
-
path: 'aztec::messages::processing::message_context::MessageContext'
|
|
442
|
-
},
|
|
443
|
-
visibility: 'private'
|
|
444
|
-
}
|
|
445
|
-
],
|
|
446
|
-
returnTypes: [],
|
|
447
|
-
errorTypes: {
|
|
448
|
-
'361444214588792908': {
|
|
449
|
-
error_kind: 'string',
|
|
450
|
-
string: 'attempt to multiply with overflow'
|
|
451
|
-
},
|
|
452
|
-
'992401946138144806': {
|
|
453
|
-
error_kind: 'string',
|
|
454
|
-
string: 'Attempted to read past end of BoundedVec'
|
|
455
|
-
},
|
|
456
|
-
'1998584279744703196': {
|
|
457
|
-
error_kind: 'string',
|
|
458
|
-
string: 'attempt to subtract with overflow'
|
|
459
|
-
},
|
|
460
|
-
'2967937905572420042': {
|
|
461
|
-
error_kind: 'fmtstring',
|
|
462
|
-
length: 61,
|
|
463
|
-
item_types: [
|
|
464
|
-
{
|
|
465
|
-
kind: 'field'
|
|
466
|
-
},
|
|
467
|
-
{
|
|
468
|
-
kind: 'field'
|
|
469
|
-
}
|
|
470
|
-
]
|
|
471
|
-
},
|
|
472
|
-
'3330370348214585450': {
|
|
473
|
-
error_kind: 'fmtstring',
|
|
474
|
-
length: 48,
|
|
475
|
-
item_types: [
|
|
476
|
-
{
|
|
477
|
-
kind: 'field'
|
|
478
|
-
},
|
|
479
|
-
{
|
|
480
|
-
kind: 'field'
|
|
481
|
-
}
|
|
482
|
-
]
|
|
483
|
-
},
|
|
484
|
-
'3670003311596808700': {
|
|
485
|
-
error_kind: 'fmtstring',
|
|
486
|
-
length: 77,
|
|
487
|
-
item_types: [
|
|
488
|
-
{
|
|
489
|
-
kind: 'integer',
|
|
490
|
-
sign: 'unsigned',
|
|
491
|
-
width: 32
|
|
492
|
-
}
|
|
493
|
-
]
|
|
494
|
-
},
|
|
495
|
-
'4261968856572588300': {
|
|
496
|
-
error_kind: 'string',
|
|
497
|
-
string: 'Value does not fit in field'
|
|
498
332
|
},
|
|
499
|
-
'
|
|
333
|
+
'17655676068928457687': {
|
|
500
334
|
error_kind: 'string',
|
|
501
|
-
string: '
|
|
502
|
-
},
|
|
503
|
-
'9791669845391776238': {
|
|
504
|
-
error_kind: 'string',
|
|
505
|
-
string: '0 has a square root; you cannot claim it is not square'
|
|
506
|
-
},
|
|
507
|
-
'9885968605480832328': {
|
|
508
|
-
error_kind: 'string',
|
|
509
|
-
string: 'Attempted to read past the length of a CapsuleArray'
|
|
510
|
-
},
|
|
511
|
-
'10135509984888824963': {
|
|
512
|
-
error_kind: 'fmtstring',
|
|
513
|
-
length: 58,
|
|
514
|
-
item_types: [
|
|
515
|
-
{
|
|
516
|
-
kind: 'field'
|
|
517
|
-
}
|
|
518
|
-
]
|
|
519
|
-
},
|
|
520
|
-
'10791800398362570014': {
|
|
521
|
-
error_kind: 'string',
|
|
522
|
-
string: 'extend_from_bounded_vec out of bounds'
|
|
523
|
-
},
|
|
524
|
-
'11021520179822076911': {
|
|
525
|
-
error_kind: 'string',
|
|
526
|
-
string: 'Attempted to delete past the length of a CapsuleArray'
|
|
527
|
-
},
|
|
528
|
-
'11692359521570349358': {
|
|
529
|
-
error_kind: 'fmtstring',
|
|
530
|
-
length: 40,
|
|
531
|
-
item_types: []
|
|
532
|
-
},
|
|
533
|
-
'12327971061804302172': {
|
|
534
|
-
error_kind: 'fmtstring',
|
|
535
|
-
length: 98,
|
|
536
|
-
item_types: []
|
|
537
|
-
},
|
|
538
|
-
'12469291177396340830': {
|
|
539
|
-
error_kind: 'string',
|
|
540
|
-
string: 'call to assert_max_bit_size'
|
|
541
|
-
},
|
|
542
|
-
'12913276134398371456': {
|
|
543
|
-
error_kind: 'string',
|
|
544
|
-
string: 'push out of bounds'
|
|
545
|
-
},
|
|
546
|
-
'13557316507370296400': {
|
|
547
|
-
error_kind: 'fmtstring',
|
|
548
|
-
length: 130,
|
|
549
|
-
item_types: [
|
|
550
|
-
{
|
|
551
|
-
kind: 'integer',
|
|
552
|
-
sign: 'unsigned',
|
|
553
|
-
width: 32
|
|
554
|
-
}
|
|
555
|
-
]
|
|
556
|
-
},
|
|
557
|
-
'14938672389828944159': {
|
|
558
|
-
error_kind: 'fmtstring',
|
|
559
|
-
length: 146,
|
|
560
|
-
item_types: [
|
|
561
|
-
{
|
|
562
|
-
kind: 'integer',
|
|
563
|
-
sign: 'unsigned',
|
|
564
|
-
width: 32
|
|
565
|
-
}
|
|
566
|
-
]
|
|
567
|
-
},
|
|
568
|
-
'14990209321349310352': {
|
|
569
|
-
error_kind: 'string',
|
|
570
|
-
string: 'attempt to add with overflow'
|
|
571
|
-
},
|
|
572
|
-
'15764276373176857197': {
|
|
573
|
-
error_kind: 'string',
|
|
574
|
-
string: 'Stack too deep'
|
|
575
|
-
},
|
|
576
|
-
'16431471497789672479': {
|
|
577
|
-
error_kind: 'string',
|
|
578
|
-
string: 'Index out of bounds'
|
|
579
|
-
},
|
|
580
|
-
'17531474008201752295': {
|
|
581
|
-
error_kind: 'fmtstring',
|
|
582
|
-
length: 133,
|
|
583
|
-
item_types: [
|
|
584
|
-
{
|
|
585
|
-
kind: 'integer',
|
|
586
|
-
sign: 'unsigned',
|
|
587
|
-
width: 32
|
|
588
|
-
}
|
|
589
|
-
]
|
|
590
|
-
}
|
|
591
|
-
}
|
|
592
|
-
},
|
|
593
|
-
bytecode: Buffer.from([]),
|
|
594
|
-
debugSymbols: ''
|
|
595
|
-
},
|
|
596
|
-
{
|
|
597
|
-
...{
|
|
598
|
-
functionType: FunctionType.UTILITY,
|
|
599
|
-
name: 'sync_private_state',
|
|
600
|
-
isOnlySelf: false,
|
|
601
|
-
isStatic: false,
|
|
602
|
-
isInitializer: false,
|
|
603
|
-
parameters: [],
|
|
604
|
-
returnTypes: [],
|
|
605
|
-
errorTypes: {
|
|
606
|
-
'361444214588792908': {
|
|
607
|
-
error_kind: 'string',
|
|
608
|
-
string: 'attempt to multiply with overflow'
|
|
609
|
-
},
|
|
610
|
-
'992401946138144806': {
|
|
611
|
-
error_kind: 'string',
|
|
612
|
-
string: 'Attempted to read past end of BoundedVec'
|
|
613
|
-
},
|
|
614
|
-
'1998584279744703196': {
|
|
615
|
-
error_kind: 'string',
|
|
616
|
-
string: 'attempt to subtract with overflow'
|
|
617
|
-
},
|
|
618
|
-
'2967937905572420042': {
|
|
619
|
-
error_kind: 'fmtstring',
|
|
620
|
-
length: 61,
|
|
621
|
-
item_types: [
|
|
622
|
-
{
|
|
623
|
-
kind: 'field'
|
|
624
|
-
},
|
|
625
|
-
{
|
|
626
|
-
kind: 'field'
|
|
627
|
-
}
|
|
628
|
-
]
|
|
629
|
-
},
|
|
630
|
-
'3330370348214585450': {
|
|
631
|
-
error_kind: 'fmtstring',
|
|
632
|
-
length: 48,
|
|
633
|
-
item_types: [
|
|
634
|
-
{
|
|
635
|
-
kind: 'field'
|
|
636
|
-
},
|
|
637
|
-
{
|
|
638
|
-
kind: 'field'
|
|
639
|
-
}
|
|
640
|
-
]
|
|
641
|
-
},
|
|
642
|
-
'3670003311596808700': {
|
|
643
|
-
error_kind: 'fmtstring',
|
|
644
|
-
length: 77,
|
|
645
|
-
item_types: [
|
|
646
|
-
{
|
|
647
|
-
kind: 'integer',
|
|
648
|
-
sign: 'unsigned',
|
|
649
|
-
width: 32
|
|
650
|
-
}
|
|
651
|
-
]
|
|
652
|
-
},
|
|
653
|
-
'4261968856572588300': {
|
|
654
|
-
error_kind: 'string',
|
|
655
|
-
string: 'Value does not fit in field'
|
|
656
|
-
},
|
|
657
|
-
'4440399188109668273': {
|
|
658
|
-
error_kind: 'string',
|
|
659
|
-
string: 'Input length must be a multiple of 32'
|
|
660
|
-
},
|
|
661
|
-
'9791669845391776238': {
|
|
662
|
-
error_kind: 'string',
|
|
663
|
-
string: '0 has a square root; you cannot claim it is not square'
|
|
664
|
-
},
|
|
665
|
-
'9885968605480832328': {
|
|
666
|
-
error_kind: 'string',
|
|
667
|
-
string: 'Attempted to read past the length of a CapsuleArray'
|
|
668
|
-
},
|
|
669
|
-
'10135509984888824963': {
|
|
670
|
-
error_kind: 'fmtstring',
|
|
671
|
-
length: 58,
|
|
672
|
-
item_types: [
|
|
673
|
-
{
|
|
674
|
-
kind: 'field'
|
|
675
|
-
}
|
|
676
|
-
]
|
|
677
|
-
},
|
|
678
|
-
'10791800398362570014': {
|
|
679
|
-
error_kind: 'string',
|
|
680
|
-
string: 'extend_from_bounded_vec out of bounds'
|
|
681
|
-
},
|
|
682
|
-
'11021520179822076911': {
|
|
683
|
-
error_kind: 'string',
|
|
684
|
-
string: 'Attempted to delete past the length of a CapsuleArray'
|
|
685
|
-
},
|
|
686
|
-
'11692359521570349358': {
|
|
687
|
-
error_kind: 'fmtstring',
|
|
688
|
-
length: 40,
|
|
689
|
-
item_types: []
|
|
690
|
-
},
|
|
691
|
-
'12327971061804302172': {
|
|
692
|
-
error_kind: 'fmtstring',
|
|
693
|
-
length: 98,
|
|
694
|
-
item_types: []
|
|
695
|
-
},
|
|
696
|
-
'12469291177396340830': {
|
|
697
|
-
error_kind: 'string',
|
|
698
|
-
string: 'call to assert_max_bit_size'
|
|
699
|
-
},
|
|
700
|
-
'12913276134398371456': {
|
|
701
|
-
error_kind: 'string',
|
|
702
|
-
string: 'push out of bounds'
|
|
703
|
-
},
|
|
704
|
-
'13557316507370296400': {
|
|
705
|
-
error_kind: 'fmtstring',
|
|
706
|
-
length: 130,
|
|
707
|
-
item_types: [
|
|
708
|
-
{
|
|
709
|
-
kind: 'integer',
|
|
710
|
-
sign: 'unsigned',
|
|
711
|
-
width: 32
|
|
712
|
-
}
|
|
713
|
-
]
|
|
714
|
-
},
|
|
715
|
-
'14938672389828944159': {
|
|
716
|
-
error_kind: 'fmtstring',
|
|
717
|
-
length: 146,
|
|
718
|
-
item_types: [
|
|
719
|
-
{
|
|
720
|
-
kind: 'integer',
|
|
721
|
-
sign: 'unsigned',
|
|
722
|
-
width: 32
|
|
723
|
-
}
|
|
724
|
-
]
|
|
725
|
-
},
|
|
726
|
-
'14990209321349310352': {
|
|
727
|
-
error_kind: 'string',
|
|
728
|
-
string: 'attempt to add with overflow'
|
|
729
|
-
},
|
|
730
|
-
'15764276373176857197': {
|
|
731
|
-
error_kind: 'string',
|
|
732
|
-
string: 'Stack too deep'
|
|
733
|
-
},
|
|
734
|
-
'16431471497789672479': {
|
|
735
|
-
error_kind: 'string',
|
|
736
|
-
string: 'Index out of bounds'
|
|
737
|
-
},
|
|
738
|
-
'17531474008201752295': {
|
|
739
|
-
error_kind: 'fmtstring',
|
|
740
|
-
length: 133,
|
|
741
|
-
item_types: [
|
|
742
|
-
{
|
|
743
|
-
kind: 'integer',
|
|
744
|
-
sign: 'unsigned',
|
|
745
|
-
width: 32
|
|
746
|
-
}
|
|
747
|
-
]
|
|
335
|
+
string: 'Reader did not read all data'
|
|
748
336
|
}
|
|
749
337
|
}
|
|
750
338
|
},
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { PublicKeys } from '../../api/keys.js';
|
|
2
|
-
import type {
|
|
2
|
+
import type { FieldLike, WrappedFieldLike } from '../../utils/abi_types.js';
|
|
3
3
|
import type { Wallet } from '../../wallet/wallet.js';
|
|
4
4
|
import { ContractBase, type ContractMethod } from '../contract_base.js';
|
|
5
5
|
import { ContractFunctionInteraction } from '../contract_function_interaction.js';
|
|
@@ -9,23 +9,14 @@ export declare class ContractInstanceRegistryContract extends ContractBase {
|
|
|
9
9
|
methods: {
|
|
10
10
|
/** get_update_delay() */
|
|
11
11
|
get_update_delay: (() => ContractFunctionInteraction) & Pick<ContractMethod, 'selector'>;
|
|
12
|
-
/** process_message(message_ciphertext: struct, message_context: struct) */
|
|
13
|
-
process_message: ((message_ciphertext: FieldLike[], message_context: {
|
|
14
|
-
tx_hash: FieldLike;
|
|
15
|
-
unique_note_hashes_in_tx: FieldLike[];
|
|
16
|
-
first_nullifier_in_tx: FieldLike;
|
|
17
|
-
recipient: AztecAddressLike;
|
|
18
|
-
}) => ContractFunctionInteraction) & Pick<ContractMethod, 'selector'>;
|
|
19
12
|
/** public_dispatch(selector: field) */
|
|
20
13
|
public_dispatch: ((selector: FieldLike) => ContractFunctionInteraction) & Pick<ContractMethod, 'selector'>;
|
|
21
14
|
/** publish_for_public_execution(salt: field, contract_class_id: struct, initialization_hash: field, public_keys: struct, universal_deploy: boolean) */
|
|
22
15
|
publish_for_public_execution: ((salt: FieldLike, contract_class_id: WrappedFieldLike, initialization_hash: FieldLike, public_keys: PublicKeys, universal_deploy: boolean) => ContractFunctionInteraction) & Pick<ContractMethod, 'selector'>;
|
|
23
16
|
/** set_update_delay(new_update_delay: integer) */
|
|
24
17
|
set_update_delay: ((new_update_delay: bigint | number) => ContractFunctionInteraction) & Pick<ContractMethod, 'selector'>;
|
|
25
|
-
/** sync_private_state() */
|
|
26
|
-
sync_private_state: (() => ContractFunctionInteraction) & Pick<ContractMethod, 'selector'>;
|
|
27
18
|
/** update(new_contract_class_id: struct) */
|
|
28
19
|
update: ((new_contract_class_id: WrappedFieldLike) => ContractFunctionInteraction) & Pick<ContractMethod, 'selector'>;
|
|
29
20
|
};
|
|
30
21
|
}
|
|
31
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
22
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29udHJhY3QtaW5zdGFuY2UtcmVnaXN0cnkuZC50cyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9jb250cmFjdC9wcm90b2NvbF9jb250cmFjdHMvY29udHJhY3QtaW5zdGFuY2UtcmVnaXN0cnkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBTUEsT0FBTyxFQUFFLFVBQVUsRUFBRSxNQUFNLG1CQUFtQixDQUFDO0FBQy9DLE9BQU8sS0FBSyxFQUdWLFNBQVMsRUFFVCxnQkFBZ0IsRUFDakIsTUFBTSwwQkFBMEIsQ0FBQztBQUNsQyxPQUFPLEtBQUssRUFBRSxNQUFNLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUNyRCxPQUFPLEVBQUUsWUFBWSxFQUFFLEtBQUssY0FBYyxFQUFFLE1BQU0scUJBQXFCLENBQUM7QUFDeEUsT0FBTyxFQUFFLDJCQUEyQixFQUFFLE1BQU0scUNBQXFDLENBQUM7QUEyUGxGLHFCQUFhLGdDQUFpQyxTQUFRLFlBQVk7SUFDaEUsT0FBTyxlQUVOO0lBRUQsT0FBYyxFQUFFLENBQUMsTUFBTSxFQUFFLE1BQU0sR0FBRyxnQ0FBZ0MsQ0FFakU7SUFFYyxPQUFPLEVBQUU7UUFDdEIseUJBQXlCO1FBQ3pCLGdCQUFnQixFQUFFLENBQUMsTUFBTSwyQkFBMkIsQ0FBQyxHQUFHLElBQUksQ0FBQyxjQUFjLEVBQUUsVUFBVSxDQUFDLENBQUM7UUFFekYsdUNBQXVDO1FBQ3ZDLGVBQWUsRUFBRSxDQUFDLENBQUMsUUFBUSxFQUFFLFNBQVMsS0FBSywyQkFBMkIsQ0FBQyxHQUFHLElBQUksQ0FBQyxjQUFjLEVBQUUsVUFBVSxDQUFDLENBQUM7UUFFM0csdUpBQXVKO1FBQ3ZKLDRCQUE0QixFQUFFLENBQUMsQ0FDN0IsSUFBSSxFQUFFLFNBQVMsRUFDZixpQkFBaUIsRUFBRSxnQkFBZ0IsRUFDbkMsbUJBQW1CLEVBQUUsU0FBUyxFQUM5QixXQUFXLEVBQUUsVUFBVSxFQUN2QixnQkFBZ0IsRUFBRSxPQUFPLEtBQ3RCLDJCQUEyQixDQUFDLEdBQy9CLElBQUksQ0FBQyxjQUFjLEVBQUUsVUFBVSxDQUFDLENBQUM7UUFFbkMsa0RBQWtEO1FBQ2xELGdCQUFnQixFQUFFLENBQUMsQ0FBQyxnQkFBZ0IsRUFBRSxNQUFNLEdBQUcsTUFBTSxLQUFLLDJCQUEyQixDQUFDLEdBQ3BGLElBQUksQ0FBQyxjQUFjLEVBQUUsVUFBVSxDQUFDLENBQUM7UUFFbkMsNENBQTRDO1FBQzVDLE1BQU0sRUFBRSxDQUFDLENBQUMscUJBQXFCLEVBQUUsZ0JBQWdCLEtBQUssMkJBQTJCLENBQUMsR0FDaEYsSUFBSSxDQUFDLGNBQWMsRUFBRSxVQUFVLENBQUMsQ0FBQztLQUNwQyxDQUFDO0NBQ0gifQ==
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"contract-instance-registry.d.ts","sourceRoot":"","sources":["../../../src/contract/protocol_contracts/contract-instance-registry.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAC/C,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"contract-instance-registry.d.ts","sourceRoot":"","sources":["../../../src/contract/protocol_contracts/contract-instance-registry.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAC/C,OAAO,KAAK,EAGV,SAAS,EAET,gBAAgB,EACjB,MAAM,0BAA0B,CAAC;AAClC,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,EAAE,YAAY,EAAE,KAAK,cAAc,EAAE,MAAM,qBAAqB,CAAC;AACxE,OAAO,EAAE,2BAA2B,EAAE,MAAM,qCAAqC,CAAC;AA2PlF,qBAAa,gCAAiC,SAAQ,YAAY;IAChE,OAAO,eAEN;IAED,OAAc,EAAE,CAAC,MAAM,EAAE,MAAM,GAAG,gCAAgC,CAEjE;IAEc,OAAO,EAAE;QACtB,yBAAyB;QACzB,gBAAgB,EAAE,CAAC,MAAM,2BAA2B,CAAC,GAAG,IAAI,CAAC,cAAc,EAAE,UAAU,CAAC,CAAC;QAEzF,uCAAuC;QACvC,eAAe,EAAE,CAAC,CAAC,QAAQ,EAAE,SAAS,KAAK,2BAA2B,CAAC,GAAG,IAAI,CAAC,cAAc,EAAE,UAAU,CAAC,CAAC;QAE3G,uJAAuJ;QACvJ,4BAA4B,EAAE,CAAC,CAC7B,IAAI,EAAE,SAAS,EACf,iBAAiB,EAAE,gBAAgB,EACnC,mBAAmB,EAAE,SAAS,EAC9B,WAAW,EAAE,UAAU,EACvB,gBAAgB,EAAE,OAAO,KACtB,2BAA2B,CAAC,GAC/B,IAAI,CAAC,cAAc,EAAE,UAAU,CAAC,CAAC;QAEnC,kDAAkD;QAClD,gBAAgB,EAAE,CAAC,CAAC,gBAAgB,EAAE,MAAM,GAAG,MAAM,KAAK,2BAA2B,CAAC,GACpF,IAAI,CAAC,cAAc,EAAE,UAAU,CAAC,CAAC;QAEnC,4CAA4C;QAC5C,MAAM,EAAE,CAAC,CAAC,qBAAqB,EAAE,gBAAgB,KAAK,2BAA2B,CAAC,GAChF,IAAI,CAAC,cAAc,EAAE,UAAU,CAAC,CAAC;KACpC,CAAC;CACH"}
|