@aztec/aztec.js 0.0.1-commit.d431d1c → 0.0.1-commit.d6f2b3f94

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.
Files changed (125) hide show
  1. package/dest/api/block.d.ts +2 -2
  2. package/dest/api/block.d.ts.map +1 -1
  3. package/dest/api/block.js +1 -1
  4. package/dest/api/contract.d.ts +18 -12
  5. package/dest/api/contract.d.ts.map +1 -1
  6. package/dest/api/contract.js +16 -10
  7. package/dest/api/deployment.d.ts +1 -2
  8. package/dest/api/deployment.d.ts.map +1 -1
  9. package/dest/api/deployment.js +0 -1
  10. package/dest/api/events.d.ts +10 -6
  11. package/dest/api/events.d.ts.map +1 -1
  12. package/dest/api/events.js +30 -20
  13. package/dest/api/fields.d.ts +2 -1
  14. package/dest/api/fields.d.ts.map +1 -1
  15. package/dest/api/fields.js +1 -0
  16. package/dest/api/keys.d.ts +1 -1
  17. package/dest/api/keys.js +1 -1
  18. package/dest/api/node.d.ts +8 -4
  19. package/dest/api/node.d.ts.map +1 -1
  20. package/dest/api/node.js +7 -3
  21. package/dest/api/tx.d.ts +2 -2
  22. package/dest/api/tx.d.ts.map +1 -1
  23. package/dest/api/tx.js +1 -1
  24. package/dest/api/wallet.d.ts +3 -2
  25. package/dest/api/wallet.d.ts.map +1 -1
  26. package/dest/api/wallet.js +2 -1
  27. package/dest/contract/base_contract_interaction.d.ts +8 -10
  28. package/dest/contract/base_contract_interaction.d.ts.map +1 -1
  29. package/dest/contract/base_contract_interaction.js +5 -17
  30. package/dest/contract/contract_function_interaction.d.ts +3 -12
  31. package/dest/contract/contract_function_interaction.d.ts.map +1 -1
  32. package/dest/contract/contract_function_interaction.js +6 -6
  33. package/dest/contract/deploy_method.d.ts +63 -16
  34. package/dest/contract/deploy_method.d.ts.map +1 -1
  35. package/dest/contract/deploy_method.js +36 -19
  36. package/dest/contract/interaction_options.d.ts +42 -5
  37. package/dest/contract/interaction_options.d.ts.map +1 -1
  38. package/dest/contract/interaction_options.js +8 -1
  39. package/dest/contract/protocol_contracts/auth-registry.d.ts +1 -10
  40. package/dest/contract/protocol_contracts/auth-registry.d.ts.map +1 -1
  41. package/dest/contract/protocol_contracts/auth-registry.js +61 -479
  42. package/dest/contract/protocol_contracts/contract-class-registry.d.ts +2 -22
  43. package/dest/contract/protocol_contracts/contract-class-registry.d.ts.map +1 -1
  44. package/dest/contract/protocol_contracts/contract-class-registry.js +2 -672
  45. package/dest/contract/protocol_contracts/contract-instance-registry.d.ts +2 -11
  46. package/dest/contract/protocol_contracts/contract-instance-registry.d.ts.map +1 -1
  47. package/dest/contract/protocol_contracts/contract-instance-registry.js +80 -486
  48. package/dest/contract/protocol_contracts/fee-juice.d.ts +1 -10
  49. package/dest/contract/protocol_contracts/fee-juice.d.ts.map +1 -1
  50. package/dest/contract/protocol_contracts/fee-juice.js +0 -414
  51. package/dest/contract/protocol_contracts/multi-call-entrypoint.d.ts +3 -3
  52. package/dest/contract/protocol_contracts/multi-call-entrypoint.d.ts.map +1 -1
  53. package/dest/contract/protocol_contracts/multi-call-entrypoint.js +23 -14
  54. package/dest/contract/protocol_contracts/public-checks.d.ts +3 -3
  55. package/dest/contract/protocol_contracts/public-checks.d.ts.map +1 -1
  56. package/dest/contract/protocol_contracts/public-checks.js +23 -22
  57. package/dest/contract/wait_for_proven.js +1 -1
  58. package/dest/contract/wait_opts.d.ts +16 -0
  59. package/dest/contract/wait_opts.d.ts.map +1 -0
  60. package/dest/contract/wait_opts.js +5 -0
  61. package/dest/fee/fee_juice_payment_method_with_claim.js +6 -6
  62. package/dest/fee/private_fee_payment_method.js +10 -10
  63. package/dest/fee/public_fee_payment_method.js +10 -10
  64. package/dest/fee/sponsored_fee_payment.js +3 -3
  65. package/dest/utils/authwit.d.ts +6 -6
  66. package/dest/utils/authwit.d.ts.map +1 -1
  67. package/dest/utils/authwit.js +2 -6
  68. package/dest/utils/node.d.ts +12 -1
  69. package/dest/utils/node.d.ts.map +1 -1
  70. package/dest/utils/node.js +46 -0
  71. package/dest/wallet/capabilities.d.ts +444 -0
  72. package/dest/wallet/capabilities.d.ts.map +1 -0
  73. package/dest/wallet/capabilities.js +3 -0
  74. package/dest/wallet/deploy_account_method.d.ts +19 -5
  75. package/dest/wallet/deploy_account_method.d.ts.map +1 -1
  76. package/dest/wallet/index.d.ts +2 -1
  77. package/dest/wallet/index.d.ts.map +1 -1
  78. package/dest/wallet/index.js +1 -0
  79. package/dest/wallet/wallet.d.ts +1491 -92
  80. package/dest/wallet/wallet.d.ts.map +1 -1
  81. package/dest/wallet/wallet.js +158 -25
  82. package/package.json +19 -10
  83. package/src/api/block.ts +1 -1
  84. package/src/api/contract.ts +24 -9
  85. package/src/api/deployment.ts +0 -1
  86. package/src/api/events.ts +35 -27
  87. package/src/api/fields.ts +1 -0
  88. package/src/api/keys.ts +2 -2
  89. package/src/api/node.ts +7 -3
  90. package/src/api/tx.ts +2 -0
  91. package/src/api/wallet.ts +47 -1
  92. package/src/contract/base_contract_interaction.ts +27 -15
  93. package/src/contract/contract_function_interaction.ts +13 -6
  94. package/src/contract/deploy_method.ts +115 -23
  95. package/src/contract/interaction_options.ts +49 -4
  96. package/src/contract/protocol_contracts/auth-registry.ts +37 -240
  97. package/src/contract/protocol_contracts/contract-class-registry.ts +1 -347
  98. package/src/contract/protocol_contracts/contract-instance-registry.ts +34 -234
  99. package/src/contract/protocol_contracts/fee-juice.ts +0 -202
  100. package/src/contract/protocol_contracts/multi-call-entrypoint.ts +6 -12
  101. package/src/contract/protocol_contracts/public-checks.ts +6 -14
  102. package/src/contract/wait_for_proven.ts +1 -1
  103. package/src/contract/wait_opts.ts +21 -0
  104. package/src/fee/fee_juice_payment_method_with_claim.ts +5 -5
  105. package/src/fee/private_fee_payment_method.ts +7 -7
  106. package/src/fee/public_fee_payment_method.ts +8 -8
  107. package/src/fee/sponsored_fee_payment.ts +3 -3
  108. package/src/utils/authwit.ts +16 -4
  109. package/src/utils/node.ts +62 -0
  110. package/src/wallet/capabilities.ts +491 -0
  111. package/src/wallet/deploy_account_method.ts +19 -4
  112. package/src/wallet/index.ts +1 -0
  113. package/src/wallet/wallet.ts +213 -46
  114. package/dest/contract/deploy_sent_tx.d.ts +0 -48
  115. package/dest/contract/deploy_sent_tx.d.ts.map +0 -1
  116. package/dest/contract/deploy_sent_tx.js +0 -46
  117. package/dest/contract/sent_tx.d.ts +0 -50
  118. package/dest/contract/sent_tx.d.ts.map +0 -1
  119. package/dest/contract/sent_tx.js +0 -90
  120. package/dest/deployment/broadcast_function.d.ts +0 -24
  121. package/dest/deployment/broadcast_function.d.ts.map +0 -1
  122. package/dest/deployment/broadcast_function.js +0 -74
  123. package/src/contract/deploy_sent_tx.ts +0 -75
  124. package/src/contract/sent_tx.ts +0 -129
  125. package/src/deployment/broadcast_function.ts +0 -148
@@ -1 +1 @@
1
- {"version":3,"file":"wallet.d.ts","sourceRoot":"","sources":["../../src/wallet/wallet.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,+BAA+B,CAAC;AAC/D,OAAO,EAAE,WAAW,EAA6B,MAAM,iCAAiC,CAAC;AACzF,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,gCAAgC,CAAC;AACzD,OAAO,EAGL,KAAK,gBAAgB,EAErB,KAAK,uBAAuB,EAC5B,KAAK,YAAY,EACjB,YAAY,EACb,MAAM,mBAAmB,CAAC;AAC3B,OAAO,EAAE,WAAW,EAAE,MAAM,4BAA4B,CAAC;AACzD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,6BAA6B,CAAC;AAChE,OAAO,EAAE,KAAK,2BAA2B,EAAqC,MAAM,wBAAwB,CAAC;AAC7G,OAAO,EAAE,GAAG,EAAE,MAAM,mBAAmB,CAAC;AACxC,OAAO,EAAoB,KAAK,YAAY,EAA6B,MAAM,uBAAuB,CAAC;AACvG,OAAO,EACL,OAAO,EACP,YAAY,EACZ,MAAM,EACN,eAAe,EACf,SAAS,EACT,kBAAkB,EAClB,uBAAuB,EAExB,MAAM,kBAAkB,CAAC;AAC1B,OAAO,KAAK,EAAE,gBAAgB,EAAE,IAAI,EAAE,MAAM,kBAAkB,CAAC;AAE/D,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,OAAO,KAAK,EACV,oBAAoB,EACpB,iBAAiB,EACjB,yBAAyB,EACzB,sBAAsB,EACtB,0BAA0B,EAC3B,MAAM,oCAAoC,CAAC;AAC5C,OAAO,KAAK,EAAE,UAAU,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AAEvE;;GAEG;AACH,MAAM,MAAM,OAAO,CAAC,CAAC,IAAI;IACvB;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,IAAI,EAAE,CAAC,CAAC;CACT,CAAC;AAEF;;;;GAIG;AACH,MAAM,MAAM,eAAe,GAAG,IAAI,CAAC,0BAA0B,EAAE,KAAK,CAAC,GAAG;IACtE,sBAAsB;IACtB,GAAG,CAAC,EAAE,iBAAiB,GAAG,oBAAoB,CAAC;CAChD,CAAC;AAEF;;;;GAIG;AACH,MAAM,MAAM,cAAc,GAAG,IAAI,CAAC,yBAAyB,EAAE,KAAK,CAAC,GAAG;IACpE,sBAAsB;IACtB,GAAG,CAAC,EAAE,iBAAiB,CAAC;CACzB,CAAC;AAEF;;;;GAIG;AACH,MAAM,MAAM,WAAW,GAAG,IAAI,CAAC,sBAAsB,EAAE,KAAK,CAAC,GAAG;IAC9D,sBAAsB;IACtB,GAAG,CAAC,EAAE,iBAAiB,CAAC;CACzB,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,gBAAgB,GAAG,IAAI,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;AAErD;;GAEG;AACH,KAAK,qBAAqB,CAAC,CAAC,SAAS,MAAM,gBAAgB,IAAI;IAC7D,sBAAsB;IACtB,IAAI,EAAE,CAAC,CAAC;IACR,2BAA2B;IAC3B,IAAI,EAAE,UAAU,CAAC,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC;CACvC,CAAC;AAEF;;;GAGG;AACH,MAAM,MAAM,aAAa,GAAG;KACzB,CAAC,IAAI,MAAM,gBAAgB,GAAG,qBAAqB,CAAC,CAAC,CAAC;CACxD,CAAC,MAAM,gBAAgB,CAAC,CAAC;AAE1B;;GAEG;AACH,MAAM,MAAM,mBAAmB,CAAC,CAAC,IAC/B,CAAC,SAAS,qBAAqB,CAAC,MAAM,CAAC,CAAC,GAAG,OAAO,CAAC,UAAU,CAAC,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC;AAE9F;;;;GAIG;AACH,MAAM,MAAM,0BAA0B,CAAC,CAAC,SAAS,aAAa,IAAI;IAChE,sBAAsB;IACtB,IAAI,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC;IAChB,wBAAwB;IACxB,MAAM,EAAE,mBAAmB,CAAC,CAAC,CAAC,CAAC;CAChC,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,YAAY,CAAC,CAAC,SAAS,SAAS,aAAa,EAAE,IAAI;KAC5D,CAAC,IAAI,MAAM,CAAC,GAAG,0BAA0B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;CACjD,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,kBAAkB,GAAG;IAC/B,2DAA2D;IAC3D,eAAe,EAAE,YAAY,CAAC;IAC9B,+DAA+D;IAC/D,MAAM,EAAE,YAAY,EAAE,CAAC;IACvB,oDAAoD;IACpD,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;;SAGK;IACL,SAAS,CAAC,EAAE,WAAW,CAAC;IACxB;;;OAGG;IACH,OAAO,CAAC,EAAE,WAAW,CAAC;CACvB,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,YAAY,CAAC,CAAC,IAAI;IAC5B,4BAA4B;IAC5B,KAAK,EAAE,CAAC,CAAC;IACT,yEAAyE;IACzE,QAAQ,EAAE,IAAI,CAAC;CAChB,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,gBAAgB,GAAG;IAC7B,4BAA4B;IAC5B,QAAQ,CAAC,EAAE,2BAA2B,CAAC;IACvC,wEAAwE;IACxE,qBAAqB,EAAE,OAAO,CAAC;IAC/B,kEAAkE;IAClE,mBAAmB,EAAE,OAAO,CAAC;IAC7B,iEAAiE;IACjE,iBAAiB,EAAE,OAAO,CAAC;IAC3B,qEAAqE;IACrE,sBAAsB,CAAC,EAAE,EAAE,GAAG,SAAS,CAAC;CACzC,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,qBAAqB,GAAG;IAClC,uDAAuD;IACvD,oBAAoB,EAAE,OAAO,CAAC;IAC9B,iEAAiE;IACjE,iCAAiC,EAAE,OAAO,CAAC;CAC5C,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,MAAM,GAAG;IACnB,gBAAgB,CAAC,CAAC,EAChB,aAAa,EAAE,uBAAuB,EACtC,WAAW,EAAE,kBAAkB,GAC9B,OAAO,CAAC,YAAY,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC;IAC9B,YAAY,IAAI,OAAO,CAAC,SAAS,CAAC,CAAC;IACnC,YAAY,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO,CAAC,SAAS,CAAC,CAAC;IACjD,mBAAmB,CAAC,OAAO,EAAE,YAAY,GAAG,OAAO,CAAC,gBAAgB,CAAC,CAAC;IACtE,wBAAwB,CAAC,EAAE,EAAE,EAAE,GAAG,OAAO,CAAC,qBAAqB,CAAC,CAAC;IACjE,cAAc,CAAC,OAAO,EAAE,YAAY,EAAE,KAAK,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,YAAY,CAAC,CAAC;IAC7E,cAAc,IAAI,OAAO,CAAC,OAAO,CAAC,YAAY,CAAC,EAAE,CAAC,CAAC;IACnD,WAAW,IAAI,OAAO,CAAC,OAAO,CAAC,YAAY,CAAC,EAAE,CAAC,CAAC;IAChD,gBAAgB,CACd,QAAQ,EAAE,2BAA2B,EACrC,QAAQ,CAAC,EAAE,gBAAgB,EAC3B,SAAS,CAAC,EAAE,EAAE,GACb,OAAO,CAAC,2BAA2B,CAAC,CAAC;IACxC,UAAU,CAAC,IAAI,EAAE,gBAAgB,EAAE,IAAI,EAAE,eAAe,GAAG,OAAO,CAAC,kBAAkB,CAAC,CAAC;IACvF,eAAe,CAAC,IAAI,EAAE,YAAY,EAAE,QAAQ,CAAC,EAAE,WAAW,EAAE,GAAG,OAAO,CAAC,uBAAuB,CAAC,CAAC;IAChG,SAAS,CAAC,IAAI,EAAE,gBAAgB,EAAE,IAAI,EAAE,cAAc,GAAG,OAAO,CAAC,eAAe,CAAC,CAAC;IAClF,MAAM,CAAC,IAAI,EAAE,gBAAgB,EAAE,IAAI,EAAE,WAAW,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC;IACnE,aAAa,CAAC,IAAI,EAAE,YAAY,EAAE,mBAAmB,EAAE,eAAe,GAAG,UAAU,GAAG,OAAO,CAAC,WAAW,CAAC,CAAC;IAC3G,KAAK,CAAC,KAAK,CAAC,CAAC,SAAS,SAAS,aAAa,EAAE,EAAE,OAAO,EAAE,CAAC,GAAG,OAAO,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC;CACvF,CAAC;AAEF,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;EAS7B,CAAC;AAEH,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAMjC,CAAC;AAEH,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EASlC,CAAC;AAEH,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAG1C,CAAC;AAEH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAK5B,CAAC;AAEH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAQhC,CAAC;AAEH,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAG/B,CAAC;AAEH,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAMpC,CAAC;AAEH,eAAO,MAAM,6BAA6B;;;;;;;;;;;;EAIxC,CAAC;AAEH,eAAO,MAAM,kBAAkB,EAAE,CAAC,CAAC,OAAO,CAAC,GAAG,CAK7C,CAAC;AAEF,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;EAMnC,CAAC;AAEH,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAMjC,CAAC;AAEH,eAAO,MAAM,2BAA2B;;;;;;;;;EAGtC,CAAC;AAyEH,QAAA,MAAe,mBAAmB;;;;;;;;;;;;;;;;;;QAAU,mBAAmB;;;;;;;;;;;;;;;;;;MAA4C,CAAC;AAE5G,OAAO,EAAE,mBAAmB,EAAE,mBAAmB,EAAE,CAAC;AAEpD,eAAO,MAAM,YAAY,EAAE,YAAY,CAAC,MAAM,CAI7C,CAAC"}
1
+ {"version":3,"file":"wallet.d.ts","sourceRoot":"","sources":["../../src/wallet/wallet.ts"],"names":[],"mappings":"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"}
@@ -1,23 +1,14 @@
1
1
  import { BlockNumberPositiveSchema } from '@aztec/foundation/branded-types';
2
- import { AbiTypeSchema, ContractArtifactSchema, FunctionType } from '@aztec/stdlib/abi';
2
+ import { AbiTypeSchema, ContractArtifactSchema, FunctionCall } from '@aztec/stdlib/abi';
3
3
  import { AuthWitness } from '@aztec/stdlib/auth-witness';
4
4
  import { ContractInstanceWithAddressSchema } from '@aztec/stdlib/contract';
5
5
  import { Gas } from '@aztec/stdlib/gas';
6
6
  import { AbiDecodedSchema, optional, schemas, zodFor } from '@aztec/stdlib/schemas';
7
7
  import { Capsule, HashedValues, TxHash, TxProfileResult, TxReceipt, TxSimulationResult, UtilitySimulationResult, inTxSchema } from '@aztec/stdlib/tx';
8
8
  import { z } from 'zod';
9
- export const FunctionCallSchema = z.object({
10
- name: z.string(),
11
- to: schemas.AztecAddress,
12
- selector: schemas.FunctionSelector,
13
- type: z.nativeEnum(FunctionType),
14
- isStatic: z.boolean(),
15
- hideMsgSender: z.boolean(),
16
- args: z.array(schemas.Fr),
17
- returnTypes: z.array(AbiTypeSchema)
18
- });
9
+ import { NO_WAIT } from '../contract/interaction_options.js';
19
10
  export const ExecutionPayloadSchema = z.object({
20
- calls: z.array(FunctionCallSchema),
11
+ calls: z.array(FunctionCall.schema),
21
12
  authWitnesses: z.array(AuthWitness.schema),
22
13
  capsules: z.array(Capsule.schema),
23
14
  extraHashedArgs: z.array(HashedValues.schema),
@@ -41,11 +32,21 @@ export const WalletSimulationFeeOptionSchema = GasSettingsOptionSchema.extend({
41
32
  estimatedGasPadding: optional(z.number()),
42
33
  estimateGas: optional(z.boolean())
43
34
  });
35
+ export const WaitOptsSchema = z.object({
36
+ ignoreDroppedReceiptsFor: optional(z.number()),
37
+ timeout: optional(z.number()),
38
+ interval: optional(z.number()),
39
+ dontThrowOnRevert: optional(z.boolean())
40
+ });
44
41
  export const SendOptionsSchema = z.object({
45
42
  from: schemas.AztecAddress,
46
43
  authWitnesses: optional(z.array(AuthWitness.schema)),
47
44
  capsules: optional(z.array(Capsule.schema)),
48
- fee: optional(GasSettingsOptionSchema)
45
+ fee: optional(GasSettingsOptionSchema),
46
+ wait: optional(z.union([
47
+ z.literal(NO_WAIT),
48
+ WaitOptsSchema
49
+ ]))
49
50
  });
50
51
  export const SimulateOptionsSchema = z.object({
51
52
  from: schemas.AztecAddress,
@@ -71,7 +72,7 @@ export const MessageHashOrIntentSchema = z.union([
71
72
  }),
72
73
  z.object({
73
74
  caller: schemas.AztecAddress,
74
- call: FunctionCallSchema
75
+ call: FunctionCall.schema
75
76
  })
76
77
  ]);
77
78
  export const EventMetadataDefinitionSchema = z.object({
@@ -79,17 +80,28 @@ export const EventMetadataDefinitionSchema = z.object({
79
80
  abiType: AbiTypeSchema,
80
81
  fieldNames: z.array(z.string())
81
82
  });
82
- export const PrivateEventSchema = zodFor()(z.object({
83
- event: AbiDecodedSchema,
84
- metadata: inTxSchema()
85
- }));
86
- export const PrivateEventFilterSchema = z.object({
87
- contractAddress: schemas.AztecAddress,
88
- scopes: z.array(schemas.AztecAddress),
83
+ const EventFilterBaseSchema = z.object({
89
84
  txHash: optional(TxHash.schema),
90
85
  fromBlock: optional(BlockNumberPositiveSchema),
91
86
  toBlock: optional(BlockNumberPositiveSchema)
92
87
  });
88
+ export const PrivateEventFilterSchema = EventFilterBaseSchema.extend({
89
+ contractAddress: schemas.AztecAddress,
90
+ scopes: z.array(schemas.AztecAddress)
91
+ });
92
+ export const PublicEventFilterSchema = EventFilterBaseSchema.extend({
93
+ contractAddress: optional(schemas.AztecAddress)
94
+ });
95
+ export const PrivateEventSchema = zodFor()(z.object({
96
+ event: AbiDecodedSchema,
97
+ metadata: inTxSchema()
98
+ }));
99
+ export const PublicEventSchema = zodFor()(z.object({
100
+ event: AbiDecodedSchema,
101
+ metadata: z.intersection(inTxSchema(), z.object({
102
+ contractAddress: schemas.AztecAddress
103
+ }))
104
+ }));
93
105
  export const ContractMetadataSchema = z.object({
94
106
  instance: optional(ContractInstanceWithAddressSchema),
95
107
  isContractInitialized: z.boolean(),
@@ -101,6 +113,124 @@ export const ContractClassMetadataSchema = z.object({
101
113
  isArtifactRegistered: z.boolean(),
102
114
  isContractClassPubliclyRegistered: z.boolean()
103
115
  });
116
+ export const ContractFunctionPatternSchema = z.object({
117
+ contract: z.union([
118
+ schemas.AztecAddress,
119
+ z.literal('*')
120
+ ]),
121
+ function: z.union([
122
+ z.string(),
123
+ z.literal('*')
124
+ ])
125
+ });
126
+ export const AccountsCapabilitySchema = z.object({
127
+ type: z.literal('accounts'),
128
+ canGet: optional(z.boolean()),
129
+ canCreateAuthWit: optional(z.boolean())
130
+ });
131
+ export const GrantedAccountsCapabilitySchema = AccountsCapabilitySchema.extend({
132
+ accounts: z.array(z.object({
133
+ alias: z.string(),
134
+ item: schemas.AztecAddress
135
+ }))
136
+ });
137
+ export const ContractsCapabilitySchema = z.object({
138
+ type: z.literal('contracts'),
139
+ contracts: z.union([
140
+ z.literal('*'),
141
+ z.array(schemas.AztecAddress)
142
+ ]),
143
+ canRegister: optional(z.boolean()),
144
+ canGetMetadata: optional(z.boolean())
145
+ });
146
+ export const GrantedContractsCapabilitySchema = ContractsCapabilitySchema;
147
+ export const ContractClassesCapabilitySchema = z.object({
148
+ type: z.literal('contractClasses'),
149
+ classes: z.union([
150
+ z.literal('*'),
151
+ z.array(schemas.Fr)
152
+ ]),
153
+ canGetMetadata: z.boolean()
154
+ });
155
+ export const GrantedContractClassesCapabilitySchema = ContractClassesCapabilitySchema;
156
+ export const SimulationCapabilitySchema = z.object({
157
+ type: z.literal('simulation'),
158
+ transactions: optional(z.object({
159
+ scope: z.union([
160
+ z.literal('*'),
161
+ z.array(ContractFunctionPatternSchema)
162
+ ])
163
+ })),
164
+ utilities: optional(z.object({
165
+ scope: z.union([
166
+ z.literal('*'),
167
+ z.array(ContractFunctionPatternSchema)
168
+ ])
169
+ }))
170
+ });
171
+ export const GrantedSimulationCapabilitySchema = SimulationCapabilitySchema;
172
+ export const TransactionCapabilitySchema = z.object({
173
+ type: z.literal('transaction'),
174
+ scope: z.union([
175
+ z.literal('*'),
176
+ z.array(ContractFunctionPatternSchema)
177
+ ])
178
+ });
179
+ export const GrantedTransactionCapabilitySchema = TransactionCapabilitySchema;
180
+ export const DataCapabilitySchema = z.object({
181
+ type: z.literal('data'),
182
+ addressBook: optional(z.boolean()),
183
+ privateEvents: optional(z.object({
184
+ contracts: z.union([
185
+ z.literal('*'),
186
+ z.array(schemas.AztecAddress)
187
+ ])
188
+ }))
189
+ });
190
+ export const GrantedDataCapabilitySchema = DataCapabilitySchema;
191
+ export const CapabilitySchema = z.discriminatedUnion('type', [
192
+ AccountsCapabilitySchema,
193
+ ContractsCapabilitySchema,
194
+ ContractClassesCapabilitySchema,
195
+ SimulationCapabilitySchema,
196
+ TransactionCapabilitySchema,
197
+ DataCapabilitySchema
198
+ ]);
199
+ export const GrantedCapabilitySchema = z.discriminatedUnion('type', [
200
+ GrantedAccountsCapabilitySchema,
201
+ GrantedContractsCapabilitySchema,
202
+ GrantedContractClassesCapabilitySchema,
203
+ GrantedSimulationCapabilitySchema,
204
+ GrantedTransactionCapabilitySchema,
205
+ GrantedDataCapabilitySchema
206
+ ]);
207
+ export const AppCapabilitiesSchema = z.object({
208
+ version: z.literal('1.0'),
209
+ metadata: z.object({
210
+ name: z.string(),
211
+ version: z.string(),
212
+ description: optional(z.string()),
213
+ url: optional(z.string()),
214
+ icon: optional(z.string())
215
+ }),
216
+ capabilities: z.array(CapabilitySchema),
217
+ behavior: optional(z.object({
218
+ mode: optional(z.enum([
219
+ 'strict',
220
+ 'permissive'
221
+ ])),
222
+ expiration: optional(z.number())
223
+ }))
224
+ });
225
+ export const WalletCapabilitiesSchema = z.object({
226
+ version: z.literal('1.0'),
227
+ granted: z.array(GrantedCapabilitySchema),
228
+ wallet: z.object({
229
+ name: z.string(),
230
+ version: z.string()
231
+ }),
232
+ expiresAt: optional(z.number())
233
+ });
104
234
  /**
105
235
  * Record of all wallet method schemas (excluding batch).
106
236
  * This is the single source of truth for method schemas - batch schemas are derived from this.
@@ -109,7 +239,6 @@ export const ContractClassMetadataSchema = z.object({
109
239
  chainId: schemas.Fr,
110
240
  version: schemas.Fr
111
241
  })),
112
- getTxReceipt: z.function().args(TxHash.schema).returns(TxReceipt.schema),
113
242
  getContractMetadata: z.function().args(schemas.AztecAddress).returns(ContractMetadataSchema),
114
243
  getContractClassMetadata: z.function().args(schemas.Fr).returns(ContractClassMetadataSchema),
115
244
  getPrivateEvents: z.function().args(EventMetadataDefinitionSchema, PrivateEventFilterSchema).returns(z.array(PrivateEventSchema)),
@@ -124,10 +253,14 @@ export const ContractClassMetadataSchema = z.object({
124
253
  }))),
125
254
  registerContract: z.function().args(ContractInstanceWithAddressSchema, optional(ContractArtifactSchema), optional(schemas.Fr)).returns(ContractInstanceWithAddressSchema),
126
255
  simulateTx: z.function().args(ExecutionPayloadSchema, SimulateOptionsSchema).returns(TxSimulationResult.schema),
127
- simulateUtility: z.function().args(FunctionCallSchema, optional(z.array(AuthWitness.schema))).returns(UtilitySimulationResult.schema),
256
+ simulateUtility: z.function().args(FunctionCall.schema, optional(z.array(AuthWitness.schema))).returns(UtilitySimulationResult.schema),
128
257
  profileTx: z.function().args(ExecutionPayloadSchema, ProfileOptionsSchema).returns(TxProfileResult.schema),
129
- sendTx: z.function().args(ExecutionPayloadSchema, SendOptionsSchema).returns(TxHash.schema),
130
- createAuthWit: z.function().args(schemas.AztecAddress, MessageHashOrIntentSchema).returns(AuthWitness.schema)
258
+ sendTx: z.function().args(ExecutionPayloadSchema, SendOptionsSchema).returns(z.union([
259
+ TxHash.schema,
260
+ TxReceipt.schema
261
+ ])),
262
+ createAuthWit: z.function().args(schemas.AztecAddress, MessageHashOrIntentSchema).returns(AuthWitness.schema),
263
+ requestCapabilities: z.function().args(AppCapabilitiesSchema).returns(WalletCapabilitiesSchema)
131
264
  };
132
265
  /**
133
266
  * Creates batch schemas from the individual wallet methods.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aztec/aztec.js",
3
3
  "homepage": "https://github.com/AztecProtocol/aztec-packages/tree/master/yarn-project/aztec.js",
4
- "version": "0.0.1-commit.d431d1c",
4
+ "version": "0.0.1-commit.d6f2b3f94",
5
5
  "type": "module",
6
6
  "exports": {
7
7
  "./abi": "./dest/api/abi.js",
@@ -30,7 +30,16 @@
30
30
  },
31
31
  "typedocOptions": {
32
32
  "entryPoints": [
33
- "./src/index.ts"
33
+ "./src/api/abi.ts",
34
+ "./src/api/account.ts",
35
+ "./src/api/contract.ts",
36
+ "./src/api/deployment.ts",
37
+ "./src/api/ethereum.ts",
38
+ "./src/api/fee.ts",
39
+ "./src/api/fields.ts",
40
+ "./src/api/keys.ts",
41
+ "./src/api/tx.ts",
42
+ "./src/api/wallet.ts"
34
43
  ],
35
44
  "name": "Aztec.js",
36
45
  "tsconfig": "./tsconfig.json"
@@ -85,20 +94,20 @@
85
94
  ]
86
95
  },
87
96
  "dependencies": {
88
- "@aztec/constants": "0.0.1-commit.d431d1c",
89
- "@aztec/entrypoints": "0.0.1-commit.d431d1c",
90
- "@aztec/ethereum": "0.0.1-commit.d431d1c",
91
- "@aztec/foundation": "0.0.1-commit.d431d1c",
92
- "@aztec/l1-artifacts": "0.0.1-commit.d431d1c",
93
- "@aztec/protocol-contracts": "0.0.1-commit.d431d1c",
94
- "@aztec/stdlib": "0.0.1-commit.d431d1c",
97
+ "@aztec/constants": "0.0.1-commit.d6f2b3f94",
98
+ "@aztec/entrypoints": "0.0.1-commit.d6f2b3f94",
99
+ "@aztec/ethereum": "0.0.1-commit.d6f2b3f94",
100
+ "@aztec/foundation": "0.0.1-commit.d6f2b3f94",
101
+ "@aztec/l1-artifacts": "0.0.1-commit.d6f2b3f94",
102
+ "@aztec/protocol-contracts": "0.0.1-commit.d6f2b3f94",
103
+ "@aztec/stdlib": "0.0.1-commit.d6f2b3f94",
95
104
  "axios": "^1.12.0",
96
105
  "tslib": "^2.4.0",
97
106
  "viem": "npm:@aztec/viem@2.38.2",
98
107
  "zod": "^3.23.8"
99
108
  },
100
109
  "devDependencies": {
101
- "@aztec/builder": "0.0.1-commit.d431d1c",
110
+ "@aztec/builder": "0.0.1-commit.d6f2b3f94",
102
111
  "@jest/globals": "^30.0.0",
103
112
  "@types/jest": "^30.0.0",
104
113
  "@types/node": "^22.15.17",
package/src/api/block.ts CHANGED
@@ -1,2 +1,2 @@
1
- export { Body, L2BlockNew } from '@aztec/stdlib/block';
1
+ export { Body, L2Block } from '@aztec/stdlib/block';
2
2
  export { getTimestampRangeForEpoch } from '@aztec/stdlib/epoch-helpers';
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * The `contract` module provides utilities for deploying and interacting with contracts, based on a
3
3
  * `Wallet` instance and a compiled artifact. Refer to the {@link account} module for how to obtain a valid
4
- * `Wallet` instance, and to the {@link https://docs.aztec.network/developers/aztec-nr/how_to_compile_contract | Compiling contracts}
4
+ * `Wallet` instance, and to the {@link https://docs.aztec.network/developers/aztec-nr/compiling_contracts | Compiling contracts}
5
5
  * section of the documentation for how to generate an artifact out of your Noir source code.
6
6
  *
7
7
  * The {@link Contract} class is the main class in this module, and provides static methods for deploying
@@ -10,13 +10,21 @@
10
10
  * or can be queried via `simulate()`.
11
11
  *
12
12
  * ```ts
13
- * const contract = await Contract.deploy(wallet, MyContractArtifact, [...constructorArgs]).send().deployed();
13
+ * // Deploy and get the contract instance directly (default behavior)
14
+ * const contract = await Contract.deploy(wallet, MyContractArtifact, [...constructorArgs]).send({ from: accountAddress });
14
15
  * console.log(`Contract deployed at ${contract.address}`);
16
+ *
17
+ * // Or get the full receipt with contract and instance
18
+ * const receipt = await Contract.deploy(wallet, MyContractArtifact, [...constructorArgs]).send({
19
+ * from: accountAddress,
20
+ * wait: { returnReceipt: true }
21
+ * });
22
+ * console.log(`Contract deployed at ${receipt.contract.address}`);
15
23
  * ```
16
24
  *
17
25
  * ```ts
18
26
  * const contract = Contract.at(address, MyContractArtifact, wallet);
19
- * await contract.methods.mint(1000, owner).send().wait();
27
+ * await contract.methods.mint(1000, owner).send({ from: accountAddress });
20
28
  * console.log(`Total supply is now ${await contract.methods.totalSupply().simulate()}`);
21
29
  * ```
22
30
  *
@@ -25,12 +33,11 @@
25
33
  * a transaction to the network via the `send` method, but you can also `simulate` it without sending,
26
34
  * or obtaining the `request` for aggregating into a {@link BatchCall}.
27
35
  *
28
- * The result of `send`ing a transaction is a {@link SentTx} object, from which you can get the
29
- * transaction hash, or simply `wait` until the transaction is mined and the local PXE
30
- * has synchronized its changes.
36
+ * The `send` method returns a {@link TxReceipt} by default (waits for the transaction to be mined).
37
+ * If you pass `wait: NO_WAIT` in the options, it will return a {@link TxHash} immediately without waiting.
31
38
  *
32
39
  * @remarks If you are using typescript, consider using the
33
- * {@link https://docs.aztec.network/developers/aztec-nr/how_to_compile_contract#use-generated-interfaces | autogenerated type-safe interfaces}
40
+ * {@link https://docs.aztec.network/developers/aztec-nr/compiling_contracts#use-generated-interfaces | autogenerated type-safe interfaces}
34
41
  * for interacting with your contracts.
35
42
  *
36
43
  * @packageDocumentation
@@ -39,27 +46,35 @@ export { Contract } from '../contract/contract.js';
39
46
  export { ContractFunctionInteraction } from '../contract/contract_function_interaction.js';
40
47
 
41
48
  export {
49
+ NO_WAIT,
50
+ type NoWait,
42
51
  type RequestInteractionOptions,
43
52
  type SendInteractionOptions,
44
53
  type ProfileInteractionOptions,
45
54
  type SimulateInteractionOptions,
46
55
  type InteractionFeeOptions,
56
+ type InteractionWaitOptions,
47
57
  type GasSettingsOption,
58
+ type SendReturn,
59
+ type SimulationReturn,
48
60
  toProfileOptions,
49
61
  toSendOptions,
50
62
  toSimulateOptions,
51
63
  } from '../contract/interaction_options.js';
52
64
 
53
- export { DefaultWaitOpts, SentTx, type WaitOpts } from '../contract/sent_tx.js';
65
+ export { DefaultWaitOpts, type WaitOpts } from '../contract/wait_opts.js';
54
66
  export { ContractBase, type ContractMethod, type ContractStorageLayout } from '../contract/contract_base.js';
55
67
  export { BatchCall } from '../contract/batch_call.js';
56
68
  export {
57
69
  type DeployOptions,
70
+ type DeployReturn,
71
+ type DeployTxReceipt,
72
+ type DeployWaitOptions,
73
+ type DeployInteractionWaitOptions,
58
74
  DeployMethod,
59
75
  type RequestDeployOptions,
60
76
  type SimulateDeployOptions,
61
77
  } from '../contract/deploy_method.js';
62
- export { DeploySentTx } from '../contract/deploy_sent_tx.js';
63
78
  export { waitForProven, type WaitForProvenOpts, DefaultWaitForProvenOpts } from '../contract/wait_for_proven.js';
64
79
  export { getGasLimits } from '../contract/get_gas_limits.js';
65
80
 
@@ -1,4 +1,3 @@
1
1
  export { publishContractClass } from '../deployment/publish_class.js';
2
- export { broadcastPrivateFunction, broadcastUtilityFunction } from '../deployment/broadcast_function.js';
3
2
  export { publishInstance } from '../deployment/publish_instance.js';
4
3
  export { ContractDeployer } from '../deployment/contract_deployer.js';
package/src/api/events.ts CHANGED
@@ -1,44 +1,52 @@
1
1
  import { type EventMetadataDefinition, EventSelector, decodeFromAbi } from '@aztec/stdlib/abi';
2
2
  import type { AztecNode } from '@aztec/stdlib/interfaces/client';
3
3
 
4
+ import type { PublicEvent, PublicEventFilter } from '../wallet/wallet.js';
5
+
4
6
  /**
5
7
  * Returns decoded public events given search parameters.
6
8
  * @param node - The node to request events from
7
- * @param eventMetadata - Metadata of the event. This should be the class generated from the contract. e.g. Contract.events.Event
8
- * @param from - The block number to search from.
9
- * @param limit - The amount of blocks to search.
10
- * @returns - The deserialized events.
9
+ * @param eventMetadataDef - Metadata of the event. This should be the class generated from the contract. e.g. Contract.events.Event
10
+ * @param filter - Filter options for the event query:
11
+ * - `contractAddress`: The address of the contract that emitted the events.
12
+ * - `txHash`: Transaction in which the events were emitted.
13
+ * - `fromBlock`: The block number from which to start fetching events (inclusive). Defaults to 1.
14
+ * - `toBlock`: The block number until which to fetch events (not inclusive). Defaults to latest + 1.
15
+ * @returns - The decoded events with metadata.
11
16
  */
12
- export async function getDecodedPublicEvents<T>(
17
+ export async function getPublicEvents<T>(
13
18
  node: AztecNode,
14
19
  eventMetadataDef: EventMetadataDefinition,
15
- from: number,
16
- limit: number,
17
- ): Promise<T[]> {
20
+ filter: PublicEventFilter,
21
+ ): Promise<PublicEvent<T>[]> {
18
22
  const { logs } = await node.getPublicLogs({
19
- fromBlock: from,
20
- toBlock: from + limit,
23
+ fromBlock: filter.fromBlock ? Number(filter.fromBlock) : undefined,
24
+ toBlock: filter.toBlock ? Number(filter.toBlock) : undefined,
25
+ txHash: filter.txHash,
26
+ contractAddress: filter.contractAddress,
21
27
  });
22
28
 
23
- const decodedEvents = logs
24
- .map(log => {
25
- // +1 for the event selector
26
- const expectedLength = eventMetadataDef.fieldNames.length + 1;
27
- if (log.log.fields.length !== expectedLength) {
28
- throw new Error(
29
- `Something is weird here, we have matching EventSelectors, but the actual payload has mismatched length. Expected ${expectedLength}. Got ${log.log.fields.length}.`,
30
- );
31
- }
29
+ const decodedEvents: PublicEvent<T>[] = [];
30
+
31
+ for (const log of logs) {
32
+ const logFields = log.log.getEmittedFields();
33
+ // Event selector is at the last position of the emitted fields
34
+ const logEventSelector = EventSelector.fromField(logFields[logFields.length - 1]);
32
35
 
33
- const logFields = log.log.getEmittedFields();
34
- // We are assuming here that event logs are the last 4 bytes of the event. This is not enshrined but is a function of aztec.nr raw log emission.
35
- if (!EventSelector.fromField(logFields[logFields.length - 1]).equals(eventMetadataDef.eventSelector)) {
36
- return undefined;
37
- }
36
+ if (!logEventSelector.equals(eventMetadataDef.eventSelector)) {
37
+ continue;
38
+ }
38
39
 
39
- return decodeFromAbi([eventMetadataDef.abiType], log.log.fields) as T;
40
- })
41
- .filter(log => log !== undefined) as T[];
40
+ decodedEvents.push({
41
+ event: decodeFromAbi([eventMetadataDef.abiType], log.log.fields) as T,
42
+ metadata: {
43
+ l2BlockNumber: log.id.blockNumber,
44
+ l2BlockHash: log.id.blockHash,
45
+ txHash: log.id.txHash,
46
+ contractAddress: log.log.contractAddress,
47
+ },
48
+ });
49
+ }
42
50
 
43
51
  return decodedEvents;
44
52
  }
package/src/api/fields.ts CHANGED
@@ -1,2 +1,3 @@
1
1
  export { Fr, Fq } from '@aztec/foundation/curves/bn254';
2
2
  export { GrumpkinScalar, Point } from '@aztec/foundation/curves/grumpkin';
3
+ export { BlockNumber } from '@aztec/foundation/branded-types';
package/src/api/keys.ts CHANGED
@@ -1,8 +1,8 @@
1
1
  export { type PublicKey, PublicKeys } from '@aztec/stdlib/keys';
2
2
  export {
3
- computeAppNullifierSecretKey,
3
+ computeAppNullifierHidingKey,
4
4
  deriveKeys,
5
5
  deriveMasterIncomingViewingSecretKey,
6
- deriveMasterNullifierSecretKey,
6
+ deriveMasterNullifierHidingKey,
7
7
  } from '@aztec/stdlib/keys';
8
8
  export { generatePublicKey } from '../utils/pub_key.js';
package/src/api/node.ts CHANGED
@@ -3,18 +3,22 @@
3
3
  *
4
4
  * The primary function is {@link createAztecNodeClient}, which creates a JSON-RPC client
5
5
  * that connects to a running Aztec node instance. Use {@link waitForNode} to wait for
6
- * the node to be ready before proceeding.
6
+ * the node to be ready before proceeding, and {@link waitForTx} to wait for a transaction
7
+ * to be mined.
7
8
  *
8
9
  * @example
9
10
  * ```ts
10
- * import { createAztecNodeClient, waitForNode } from '@aztec/aztec.js/node';
11
+ * import { createAztecNodeClient, waitForNode, waitForTx } from '@aztec/aztec.js/node';
11
12
  *
12
13
  * const node = createAztecNodeClient('http://localhost:8080');
13
14
  * await waitForNode(node);
14
15
  * const blockNumber = await node.getBlockNumber();
16
+ *
17
+ * // Wait for a transaction
18
+ * const receipt = await waitForTx(node, txHash);
15
19
  * ```
16
20
  *
17
21
  * @packageDocumentation
18
22
  */
19
- export { createAztecNodeClient, waitForNode, type AztecNode } from '../utils/node.js';
23
+ export { createAztecNodeClient, waitForNode, waitForTx, type AztecNode } from '../utils/node.js';
20
24
  export { type NodeInfo } from '@aztec/stdlib/contract';
package/src/api/tx.ts CHANGED
@@ -1,9 +1,11 @@
1
1
  export {
2
2
  Tx,
3
3
  TxExecutionRequest,
4
+ TxExecutionResult,
4
5
  TxHash,
5
6
  TxReceipt,
6
7
  TxStatus,
8
+ SortedTxStatuses,
7
9
  Capsule,
8
10
  HashedValues,
9
11
  GlobalVariables,
package/src/api/wallet.ts CHANGED
@@ -11,10 +11,16 @@ export {
11
11
  type Wallet,
12
12
  type PrivateEvent,
13
13
  type PrivateEventFilter,
14
- FunctionCallSchema,
14
+ type PublicEvent,
15
+ type PublicEventFilter,
16
+ type ContractMetadata,
17
+ type ContractClassMetadata,
18
+ AppCapabilitiesSchema,
19
+ WalletCapabilitiesSchema,
15
20
  ExecutionPayloadSchema,
16
21
  GasSettingsOptionSchema,
17
22
  WalletSimulationFeeOptionSchema,
23
+ WaitOptsSchema,
18
24
  SendOptionsSchema,
19
25
  SimulateOptionsSchema,
20
26
  ProfileOptionsSchema,
@@ -23,9 +29,49 @@ export {
23
29
  EventMetadataDefinitionSchema,
24
30
  PrivateEventSchema,
25
31
  PrivateEventFilterSchema,
32
+ PublicEventSchema,
33
+ PublicEventFilterSchema,
34
+ ContractClassMetadataSchema,
35
+ ContractMetadataSchema,
26
36
  WalletSchema,
37
+ ContractFunctionPatternSchema,
38
+ AccountsCapabilitySchema,
39
+ GrantedAccountsCapabilitySchema,
40
+ ContractsCapabilitySchema,
41
+ GrantedContractsCapabilitySchema,
42
+ ContractClassesCapabilitySchema,
43
+ GrantedContractClassesCapabilitySchema,
44
+ SimulationCapabilitySchema,
45
+ GrantedSimulationCapabilitySchema,
46
+ TransactionCapabilitySchema,
47
+ GrantedTransactionCapabilitySchema,
48
+ DataCapabilitySchema,
49
+ GrantedDataCapabilitySchema,
50
+ CapabilitySchema,
51
+ GrantedCapabilitySchema,
27
52
  } from '../wallet/wallet.js';
28
53
 
54
+ export {
55
+ type AppCapabilities,
56
+ type WalletCapabilities,
57
+ CAPABILITY_VERSION,
58
+ type Capability,
59
+ type GrantedCapability,
60
+ type ContractFunctionPattern,
61
+ type AccountsCapability,
62
+ type GrantedAccountsCapability,
63
+ type ContractsCapability,
64
+ type GrantedContractsCapability,
65
+ type ContractClassesCapability,
66
+ type GrantedContractClassesCapability,
67
+ type SimulationCapability,
68
+ type GrantedSimulationCapability,
69
+ type TransactionCapability,
70
+ type GrantedTransactionCapability,
71
+ type DataCapability,
72
+ type GrantedDataCapability,
73
+ } from '../wallet/capabilities.js';
74
+
29
75
  export { AccountManager } from '../wallet/account_manager.js';
30
76
 
31
77
  export { type DeployAccountOptions, DeployAccountMethod } from '../wallet/deploy_account_method.js';