@walletmesh/aztec-rpc-wallet 0.3.1 → 0.4.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.
Files changed (185) hide show
  1. package/CHANGELOG.md +26 -0
  2. package/README.md +290 -228
  3. package/dist/.tsbuildinfo +1 -1
  4. package/dist/client/aztec-dapp-wallet.d.ts +401 -0
  5. package/dist/client/aztec-dapp-wallet.d.ts.map +1 -0
  6. package/dist/client/aztec-dapp-wallet.js +705 -0
  7. package/dist/client/aztec-router-provider.d.ts +58 -0
  8. package/dist/client/aztec-router-provider.d.ts.map +1 -0
  9. package/dist/client/aztec-router-provider.js +62 -0
  10. package/dist/client/helpers.d.ts +44 -0
  11. package/dist/client/helpers.d.ts.map +1 -0
  12. package/dist/client/helpers.js +79 -0
  13. package/dist/client/register-serializers.d.ts +41 -0
  14. package/dist/client/register-serializers.d.ts.map +1 -0
  15. package/dist/client/register-serializers.js +97 -0
  16. package/dist/contractArtifactCache.d.ts +49 -32
  17. package/dist/contractArtifactCache.d.ts.map +1 -1
  18. package/dist/contractArtifactCache.js +47 -34
  19. package/dist/errors.d.ts +50 -8
  20. package/dist/errors.d.ts.map +1 -1
  21. package/dist/errors.js +50 -10
  22. package/dist/index.d.ts +53 -40
  23. package/dist/index.d.ts.map +1 -1
  24. package/dist/index.js +52 -17
  25. package/dist/types.d.ts +345 -270
  26. package/dist/types.d.ts.map +1 -1
  27. package/dist/types.js +10 -8
  28. package/dist/wallet/create-node.d.ts +73 -0
  29. package/dist/wallet/create-node.d.ts.map +1 -0
  30. package/dist/wallet/create-node.js +99 -0
  31. package/dist/wallet/handlers/account.d.ts +67 -0
  32. package/dist/wallet/handlers/account.d.ts.map +1 -0
  33. package/dist/wallet/handlers/account.js +85 -0
  34. package/dist/wallet/handlers/contract-interaction.d.ts +77 -0
  35. package/dist/wallet/handlers/contract-interaction.d.ts.map +1 -0
  36. package/dist/wallet/handlers/contract-interaction.js +219 -0
  37. package/dist/wallet/handlers/contract.d.ts +96 -0
  38. package/dist/wallet/handlers/contract.d.ts.map +1 -0
  39. package/dist/wallet/handlers/contract.js +146 -0
  40. package/dist/wallet/handlers/event.d.ts +62 -0
  41. package/dist/wallet/handlers/event.d.ts.map +1 -0
  42. package/dist/wallet/handlers/event.js +85 -0
  43. package/dist/wallet/handlers/index.d.ts +88 -0
  44. package/dist/wallet/handlers/index.d.ts.map +1 -0
  45. package/dist/wallet/handlers/index.js +47 -0
  46. package/dist/wallet/handlers/node.d.ts +117 -0
  47. package/dist/wallet/handlers/node.d.ts.map +1 -0
  48. package/dist/wallet/handlers/node.js +196 -0
  49. package/dist/wallet/handlers/senders.d.ts +70 -0
  50. package/dist/wallet/handlers/senders.d.ts.map +1 -0
  51. package/dist/wallet/handlers/senders.js +92 -0
  52. package/dist/wallet/handlers/transaction.d.ts +123 -0
  53. package/dist/wallet/handlers/transaction.d.ts.map +1 -0
  54. package/dist/wallet/handlers/transaction.js +191 -0
  55. package/dist/wallet/serializers.d.ts +75 -0
  56. package/dist/wallet/serializers.d.ts.map +1 -0
  57. package/dist/wallet/serializers.js +498 -0
  58. package/docs/README.md +290 -229
  59. package/docs/classes/AztecDappWallet.md +1304 -0
  60. package/docs/classes/AztecRouterProvider.md +1058 -0
  61. package/docs/classes/AztecWalletError.md +124 -47
  62. package/docs/classes/ContractArtifactCache.md +48 -31
  63. package/docs/functions/connectAztec.md +62 -0
  64. package/docs/functions/createAztecWallet.md +46 -0
  65. package/docs/functions/createAztecWalletNode.md +96 -0
  66. package/docs/functions/registerAztecSerializers.md +61 -0
  67. package/docs/functions/registerWalletAztecSerializers.md +39 -0
  68. package/docs/globals.md +16 -14
  69. package/docs/interfaces/AztecHandlerContext.md +54 -0
  70. package/docs/interfaces/AztecWalletContext.md +50 -0
  71. package/docs/interfaces/AztecWalletMethodMap.md +470 -477
  72. package/docs/type-aliases/AztecChainId.md +16 -3
  73. package/docs/variables/ALL_AZTEC_METHODS.md +20 -0
  74. package/docs/variables/AztecWalletErrorMap.md +9 -4
  75. package/docs/variables/AztecWalletSerializer.md +45 -0
  76. package/package.json +11 -9
  77. package/src/client/aztec-dapp-wallet.test.ts +628 -0
  78. package/src/client/aztec-dapp-wallet.ts +879 -0
  79. package/src/client/aztec-router-provider.test.ts +235 -0
  80. package/src/client/aztec-router-provider.ts +64 -0
  81. package/src/client/helpers.test.ts +187 -0
  82. package/src/client/helpers.ts +91 -0
  83. package/src/client/register-serializers.ts +108 -0
  84. package/src/contractArtifactCache.test.ts +21 -10
  85. package/src/contractArtifactCache.ts +54 -35
  86. package/src/errors.ts +58 -10
  87. package/src/index.test.ts +2 -6
  88. package/src/index.ts +73 -37
  89. package/src/types.ts +379 -217
  90. package/src/wallet/create-node.test.ts +332 -0
  91. package/src/wallet/create-node.ts +120 -0
  92. package/src/wallet/handlers/account.test.ts +172 -0
  93. package/src/wallet/handlers/account.ts +99 -0
  94. package/src/wallet/handlers/contract-interaction.test.ts +248 -0
  95. package/src/wallet/handlers/contract-interaction.ts +269 -0
  96. package/src/wallet/handlers/contract.test.ts +245 -0
  97. package/src/wallet/handlers/contract.ts +174 -0
  98. package/src/wallet/handlers/event.test.ts +216 -0
  99. package/src/wallet/handlers/event.ts +99 -0
  100. package/src/wallet/handlers/index.ts +84 -0
  101. package/src/wallet/handlers/node.test.ts +304 -0
  102. package/src/wallet/handlers/node.ts +230 -0
  103. package/src/wallet/handlers/senders.test.ts +172 -0
  104. package/src/wallet/handlers/senders.ts +106 -0
  105. package/src/wallet/handlers/transaction.test.ts +371 -0
  106. package/src/wallet/handlers/transaction.ts +239 -0
  107. package/src/wallet/serializers.test.ts +253 -0
  108. package/src/wallet/serializers.ts +584 -0
  109. package/typedoc.json +23 -1
  110. package/dist/aztecRemoteWallet.d.ts +0 -70
  111. package/dist/aztecRemoteWallet.d.ts.map +0 -1
  112. package/dist/aztecRemoteWallet.js +0 -335
  113. package/dist/chainProvider.d.ts +0 -56
  114. package/dist/chainProvider.d.ts.map +0 -1
  115. package/dist/chainProvider.js +0 -98
  116. package/dist/handlers/aztecAccountWallet.d.ts +0 -4
  117. package/dist/handlers/aztecAccountWallet.d.ts.map +0 -1
  118. package/dist/handlers/aztecAccountWallet.js +0 -295
  119. package/dist/handlers/transactions.d.ts +0 -21
  120. package/dist/handlers/transactions.d.ts.map +0 -1
  121. package/dist/handlers/transactions.js +0 -98
  122. package/dist/handlers.d.ts +0 -27
  123. package/dist/handlers.d.ts.map +0 -1
  124. package/dist/handlers.js +0 -55
  125. package/dist/provider.d.ts +0 -105
  126. package/dist/provider.d.ts.map +0 -1
  127. package/dist/provider.js +0 -160
  128. package/dist/serializers/account.d.ts +0 -164
  129. package/dist/serializers/account.d.ts.map +0 -1
  130. package/dist/serializers/account.js +0 -244
  131. package/dist/serializers/contract.d.ts +0 -62
  132. package/dist/serializers/contract.d.ts.map +0 -1
  133. package/dist/serializers/contract.js +0 -130
  134. package/dist/serializers/index.d.ts +0 -21
  135. package/dist/serializers/index.d.ts.map +0 -1
  136. package/dist/serializers/index.js +0 -154
  137. package/dist/serializers/log.d.ts +0 -66
  138. package/dist/serializers/log.d.ts.map +0 -1
  139. package/dist/serializers/log.js +0 -222
  140. package/dist/serializers/note.d.ts +0 -124
  141. package/dist/serializers/note.d.ts.map +0 -1
  142. package/dist/serializers/note.js +0 -208
  143. package/dist/serializers/transaction.d.ts +0 -99
  144. package/dist/serializers/transaction.d.ts.map +0 -1
  145. package/dist/serializers/transaction.js +0 -275
  146. package/dist/wallet.d.ts +0 -62
  147. package/dist/wallet.d.ts.map +0 -1
  148. package/dist/wallet.js +0 -77
  149. package/docs/classes/AztecChainProvider.md +0 -553
  150. package/docs/classes/AztecChainWallet.md +0 -409
  151. package/docs/classes/AztecProvider.md +0 -1112
  152. package/docs/interfaces/AztecWalletBaseMethodMap.md +0 -135
  153. package/docs/interfaces/AztecWalletEventMap.md +0 -17
  154. package/docs/type-aliases/AztecChainWalletMiddleware.md +0 -13
  155. package/docs/type-aliases/AztecWalletContext.md +0 -29
  156. package/docs/type-aliases/AztecWalletMethodHandler.md +0 -37
  157. package/docs/type-aliases/AztecWalletMiddleware.md +0 -13
  158. package/docs/type-aliases/AztecWalletRouterClient.md +0 -13
  159. package/docs/type-aliases/TransactionFunctionCall.md +0 -33
  160. package/docs/type-aliases/TransactionParams.md +0 -27
  161. package/src/aztecRemoteWallet.test.ts +0 -505
  162. package/src/aztecRemoteWallet.ts +0 -467
  163. package/src/chainProvider.test.ts +0 -401
  164. package/src/chainProvider.ts +0 -116
  165. package/src/handlers/aztecAccountWallet.test.ts +0 -650
  166. package/src/handlers/aztecAccountWallet.ts +0 -531
  167. package/src/handlers/transactions.ts +0 -124
  168. package/src/handlers.test.ts +0 -270
  169. package/src/handlers.ts +0 -70
  170. package/src/provider.test.ts +0 -277
  171. package/src/provider.ts +0 -189
  172. package/src/serializers/account.test.ts +0 -125
  173. package/src/serializers/account.ts +0 -301
  174. package/src/serializers/contract.test.ts +0 -24
  175. package/src/serializers/contract.ts +0 -183
  176. package/src/serializers/index.test.ts +0 -136
  177. package/src/serializers/index.ts +0 -191
  178. package/src/serializers/log.test.ts +0 -286
  179. package/src/serializers/log.ts +0 -292
  180. package/src/serializers/note.test.ts +0 -125
  181. package/src/serializers/note.ts +0 -250
  182. package/src/serializers/transaction.test.ts +0 -320
  183. package/src/serializers/transaction.ts +0 -409
  184. package/src/wallet.test.ts +0 -275
  185. package/src/wallet.ts +0 -94
@@ -1,4 +1,4 @@
1
- [**@walletmesh/aztec-rpc-wallet v0.3.1**](../README.md)
1
+ [**@walletmesh/aztec-rpc-wallet v0.4.1**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -6,14 +6,28 @@
6
6
 
7
7
  # Interface: AztecWalletMethodMap
8
8
 
9
- Defined in: [aztec/rpc-wallet/src/types.ts:161](https://github.com/WalletMesh/walletmesh-packages/blob/65bc501d5bed45d0e6d444f53e29595da551d59e/aztec/rpc-wallet/src/types.ts#L161)
9
+ Defined in: [aztec/rpc-wallet/src/types.ts:117](https://github.com/WalletMesh/walletmesh-packages/blob/c22c9775e630bf48780e547c01c8f5442dc5b36c/aztec/rpc-wallet/src/types.ts#L117)
10
10
 
11
- Type for Aztec wallet RPC method map.
12
- This extends the AztecWalletBaseMethodMap with the methods used in by Aztec's `AccountWallet`
11
+ Defines the complete map of all JSON-RPC methods supported by the Aztec RPC Wallet.
12
+ This interface extends the base WalletMethodMap from `@walletmesh/router`
13
+ and specifies the parameter (`params`) and return (`result`) types for each Aztec-specific method.
14
+
15
+ This map is crucial for:
16
+ - Type safety in both client-side calls and wallet-side handlers.
17
+ - Guiding the implementation of serializers and deserializers.
18
+ - Documentation generation, as it serves as a single source of truth for method signatures.
19
+
20
+ Methods are loosely grouped by functionality (Chain/Node, Account, Sender, etc.).
21
+ "wm_" prefixed methods are typically WalletMesh-specific extensions or conveniences.
22
+
23
+ ## See
24
+
25
+ - [AztecDappWallet](../classes/AztecDappWallet.md) for the client-side implementation that calls these methods.
26
+ - createAztecHandlers for the wallet-side implementation that handles these methods.
13
27
 
14
28
  ## Extends
15
29
 
16
- - [`AztecWalletBaseMethodMap`](AztecWalletBaseMethodMap.md)
30
+ - `WalletMethodMap`
17
31
 
18
32
  ## Indexable
19
33
 
@@ -21,747 +35,712 @@ This extends the AztecWalletBaseMethodMap with the methods used in by Aztec's `A
21
35
 
22
36
  ## Properties
23
37
 
24
- ### aztec\_addAuthWitness
25
-
26
- > **aztec\_addAuthWitness**: `object`
38
+ ### aztec\_createAuthWit
27
39
 
28
- Defined in: [aztec/rpc-wallet/src/types.ts:196](https://github.com/WalletMesh/walletmesh-packages/blob/65bc501d5bed45d0e6d444f53e29595da551d59e/aztec/rpc-wallet/src/types.ts#L196)
40
+ > **aztec\_createAuthWit**: `object`
29
41
 
30
- #### params
42
+ Defined in: [aztec/rpc-wallet/src/types.ts:201](https://github.com/WalletMesh/walletmesh-packages/blob/c22c9775e630bf48780e547c01c8f5442dc5b36c/aztec/rpc-wallet/src/types.ts#L201)
31
43
 
32
- > **params**: `object`
44
+ Creates an AuthWitness (authorization witness) for a given message hash or intent.
45
+ Used for delegating actions.
33
46
 
34
- ##### params.authWitness
47
+ #### params
35
48
 
36
- > **authWitness**: `AuthWitness`
49
+ > **params**: \[`Fr` \| `Buffer`\<`ArrayBufferLike`\> \| `IntentAction` \| `IntentInnerHash`\]
37
50
 
38
51
  #### result
39
52
 
40
- > **result**: `boolean`
53
+ > **result**: `AuthWitness`
41
54
 
42
- ***
55
+ #### Param
56
+
57
+ A tuple containing the intent to authorize.
43
58
 
44
- ### aztec\_addCapsule
59
+ #### Param
45
60
 
46
- > **aztec\_addCapsule**: `object`
61
+ intent - The message hash (Fr or `Buffer`), IntentInnerHash, or IntentAction to authorize.
47
62
 
48
- Defined in: [aztec/rpc-wallet/src/types.ts:184](https://github.com/WalletMesh/walletmesh-packages/blob/65bc501d5bed45d0e6d444f53e29595da551d59e/aztec/rpc-wallet/src/types.ts#L184)
63
+ #### Returns
49
64
 
50
- #### params
65
+ result - The created AuthWitness.
51
66
 
52
- > **params**: `object`
67
+ ***
53
68
 
54
- ##### params.capsule
69
+ ### aztec\_getAddress
55
70
 
56
- > **capsule**: `Fr`[]
71
+ > **aztec\_getAddress**: `object`
57
72
 
58
- ##### params.contract
73
+ Defined in: [aztec/rpc-wallet/src/types.ts:185](https://github.com/WalletMesh/walletmesh-packages/blob/c22c9775e630bf48780e547c01c8f5442dc5b36c/aztec/rpc-wallet/src/types.ts#L185)
59
74
 
60
- > **contract**: `AztecAddress`
75
+ Retrieves the primary AztecAddress of the wallet's account.
61
76
 
62
- ##### params.storageSlot
77
+ #### params
63
78
 
64
- > **storageSlot**: `Fr`
79
+ > **params**: \[\]
65
80
 
66
81
  #### result
67
82
 
68
- > **result**: `undefined`
69
-
70
- ***
83
+ > **result**: `AztecAddress`
71
84
 
72
- ### aztec\_addNote
85
+ #### Param
73
86
 
74
- > **aztec\_addNote**: `object`
87
+ No parameters.
75
88
 
76
- Defined in: [aztec/rpc-wallet/src/types.ts:270](https://github.com/WalletMesh/walletmesh-packages/blob/65bc501d5bed45d0e6d444f53e29595da551d59e/aztec/rpc-wallet/src/types.ts#L270)
89
+ #### Returns
77
90
 
78
- #### params
91
+ result - The wallet's AztecAddress.
79
92
 
80
- > **params**: `object`
93
+ ***
81
94
 
82
- ##### params.note
95
+ ### aztec\_getBlock
83
96
 
84
- > **note**: `ExtendedNote`
97
+ > **aztec\_getBlock**: `object`
85
98
 
86
- #### result
99
+ Defined in: [aztec/rpc-wallet/src/types.ts:135](https://github.com/WalletMesh/walletmesh-packages/blob/c22c9775e630bf48780e547c01c8f5442dc5b36c/aztec/rpc-wallet/src/types.ts#L135)
87
100
 
88
- > **result**: `boolean`
101
+ Retrieves a specific L2 block by its number.
89
102
 
90
- ***
103
+ #### params
91
104
 
92
- ### aztec\_addNullifiedNote
105
+ > **params**: \[`number`\]
93
106
 
94
- > **aztec\_addNullifiedNote**: `object`
107
+ #### result
95
108
 
96
- Defined in: [aztec/rpc-wallet/src/types.ts:271](https://github.com/WalletMesh/walletmesh-packages/blob/65bc501d5bed45d0e6d444f53e29595da551d59e/aztec/rpc-wallet/src/types.ts#L271)
109
+ > **result**: `L2Block`
97
110
 
98
- #### params
111
+ #### Param
99
112
 
100
- > **params**: `object`
113
+ A tuple containing the block number.
101
114
 
102
- ##### params.note
115
+ #### Param
103
116
 
104
- > **note**: `ExtendedNote`
117
+ blockNumber - The number of the block to retrieve.
105
118
 
106
- #### result
119
+ #### Returns
107
120
 
108
- > **result**: `boolean`
121
+ result - The L2Block data, or null/undefined if not found (behavior depends on PXE).
109
122
 
110
123
  ***
111
124
 
112
- ### aztec\_connect
125
+ ### aztec\_getBlockNumber
126
+
127
+ > **aztec\_getBlockNumber**: `object`
113
128
 
114
- > **aztec\_connect**: `object`
129
+ Defined in: [aztec/rpc-wallet/src/types.ts:141](https://github.com/WalletMesh/walletmesh-packages/blob/c22c9775e630bf48780e547c01c8f5442dc5b36c/aztec/rpc-wallet/src/types.ts#L141)
115
130
 
116
- Defined in: [aztec/rpc-wallet/src/types.ts:88](https://github.com/WalletMesh/walletmesh-packages/blob/65bc501d5bed45d0e6d444f53e29595da551d59e/aztec/rpc-wallet/src/types.ts#L88)
131
+ Retrieves the current (latest) L2 block number.
117
132
 
118
- Connects to the Aztec network.
133
+ #### params
134
+
135
+ > **params**: \[\]
119
136
 
120
137
  #### result
121
138
 
122
- > **result**: `boolean`
139
+ > **result**: `number`
123
140
 
124
- #### Returns
141
+ #### Param
125
142
 
126
- A boolean indicating if the connection was successful
143
+ No parameters.
127
144
 
128
- #### Inherited from
145
+ #### Returns
129
146
 
130
- [`AztecWalletBaseMethodMap`](AztecWalletBaseMethodMap.md).[`aztec_connect`](AztecWalletBaseMethodMap.md#aztec_connect)
147
+ result - The current block number.
131
148
 
132
149
  ***
133
150
 
134
- ### aztec\_createAuthWit
135
-
136
- > **aztec\_createAuthWit**: `object`
151
+ ### aztec\_getChainId
137
152
 
138
- Defined in: [aztec/rpc-wallet/src/types.ts:198](https://github.com/WalletMesh/walletmesh-packages/blob/65bc501d5bed45d0e6d444f53e29595da551d59e/aztec/rpc-wallet/src/types.ts#L198)
153
+ > **aztec\_getChainId**: `object`
139
154
 
140
- #### params
155
+ Defined in: [aztec/rpc-wallet/src/types.ts:147](https://github.com/WalletMesh/walletmesh-packages/blob/c22c9775e630bf48780e547c01c8f5442dc5b36c/aztec/rpc-wallet/src/types.ts#L147)
141
156
 
142
- > **params**: `object`
157
+ Retrieves the chain ID of the connected Aztec network.
143
158
 
144
- ##### params.intent
159
+ #### params
145
160
 
146
- > **intent**: `Fr` \| `Buffer` \| `IntentAction` \| `IntentInnerHash`
161
+ > **params**: \[\]
147
162
 
148
163
  #### result
149
164
 
150
- > **result**: `AuthWitness`
151
-
152
- ***
153
-
154
- ### aztec\_createTxExecutionRequest
155
-
156
- > **aztec\_createTxExecutionRequest**: `object`
165
+ > **result**: `Fr`
157
166
 
158
- Defined in: [aztec/rpc-wallet/src/types.ts:244](https://github.com/WalletMesh/walletmesh-packages/blob/65bc501d5bed45d0e6d444f53e29595da551d59e/aztec/rpc-wallet/src/types.ts#L244)
159
-
160
- #### params
167
+ #### Param
161
168
 
162
- > **params**: `object`
169
+ No parameters.
163
170
 
164
- ##### params.exec
171
+ #### Returns
165
172
 
166
- > **exec**: `ExecutionRequestInit`
173
+ result - The chain ID as an Fr.
167
174
 
168
- #### result
175
+ ***
169
176
 
170
- > **result**: `TxExecutionRequest`
177
+ ### aztec\_getCompleteAddress
171
178
 
172
- ***
179
+ > **aztec\_getCompleteAddress**: `object`
173
180
 
174
- ### aztec\_getAccount
181
+ Defined in: [aztec/rpc-wallet/src/types.ts:191](https://github.com/WalletMesh/walletmesh-packages/blob/c22c9775e630bf48780e547c01c8f5442dc5b36c/aztec/rpc-wallet/src/types.ts#L191)
175
182
 
176
- > **aztec\_getAccount**: `object`
183
+ Retrieves the CompleteAddress of the wallet's account, including public keys.
177
184
 
178
- Defined in: [aztec/rpc-wallet/src/types.ts:94](https://github.com/WalletMesh/walletmesh-packages/blob/65bc501d5bed45d0e6d444f53e29595da551d59e/aztec/rpc-wallet/src/types.ts#L94)
185
+ #### params
179
186
 
180
- Gets the account address from the wallet.
187
+ > **params**: \[\]
181
188
 
182
189
  #### result
183
190
 
184
- > **result**: `string`
191
+ > **result**: `CompleteAddress`
185
192
 
186
- #### Returns
193
+ #### Param
187
194
 
188
- The account address as a string
195
+ No parameters.
189
196
 
190
- #### Inherited from
197
+ #### Returns
191
198
 
192
- [`AztecWalletBaseMethodMap`](AztecWalletBaseMethodMap.md).[`aztec_getAccount`](AztecWalletBaseMethodMap.md#aztec_getaccount)
199
+ result - The wallet's CompleteAddress.
193
200
 
194
201
  ***
195
202
 
196
- ### aztec\_getAddress
203
+ ### aztec\_getContractClassMetadata
197
204
 
198
- > **aztec\_getAddress**: `object`
205
+ > **aztec\_getContractClassMetadata**: `object`
199
206
 
200
- Defined in: [aztec/rpc-wallet/src/types.ts:187](https://github.com/WalletMesh/walletmesh-packages/blob/65bc501d5bed45d0e6d444f53e29595da551d59e/aztec/rpc-wallet/src/types.ts#L187)
207
+ Defined in: [aztec/rpc-wallet/src/types.ts:258](https://github.com/WalletMesh/walletmesh-packages/blob/c22c9775e630bf48780e547c01c8f5442dc5b36c/aztec/rpc-wallet/src/types.ts#L258)
201
208
 
202
- #### result
209
+ Retrieves ContractClassMetadata for a specific contract class.
203
210
 
204
- > **result**: `AztecAddress`
211
+ #### params
205
212
 
206
- ***
213
+ > **params**: \[`Fr`, `undefined` \| `boolean`\]
207
214
 
208
- ### aztec\_getAuthWitness
215
+ #### result
209
216
 
210
- > **aztec\_getAuthWitness**: `object`
217
+ > **result**: `ContractClassMetadata`
211
218
 
212
- Defined in: [aztec/rpc-wallet/src/types.ts:197](https://github.com/WalletMesh/walletmesh-packages/blob/65bc501d5bed45d0e6d444f53e29595da551d59e/aztec/rpc-wallet/src/types.ts#L197)
219
+ #### Param
213
220
 
214
- #### params
221
+ A tuple containing the class ID and an optional flag.
215
222
 
216
- > **params**: `object`
223
+ #### Param
217
224
 
218
- ##### params.messageHash
225
+ classId - The Fr ID of the contract class.
219
226
 
220
- > **messageHash**: `Fr`
227
+ #### Param
221
228
 
222
- #### result
229
+ includeArtifact - Optional: Boolean indicating whether to include the full ContractArtifact.
223
230
 
224
- > **result**: `Fr`[]
231
+ #### Returns
225
232
 
226
- ***
233
+ result - The ContractClassMetadata.
227
234
 
228
- ### aztec\_getBlock
235
+ ***
229
236
 
230
- > **aztec\_getBlock**: `object`
237
+ ### aztec\_getContractMetadata
231
238
 
232
- Defined in: [aztec/rpc-wallet/src/types.ts:163](https://github.com/WalletMesh/walletmesh-packages/blob/65bc501d5bed45d0e6d444f53e29595da551d59e/aztec/rpc-wallet/src/types.ts#L163)
239
+ > **aztec\_getContractMetadata**: `object`
233
240
 
234
- #### params
241
+ Defined in: [aztec/rpc-wallet/src/types.ts:247](https://github.com/WalletMesh/walletmesh-packages/blob/c22c9775e630bf48780e547c01c8f5442dc5b36c/aztec/rpc-wallet/src/types.ts#L247)
235
242
 
236
- > **params**: `object`
243
+ Retrieves ContractMetadata for a specific deployed contract.
237
244
 
238
- ##### params.number
245
+ #### params
239
246
 
240
- > **number**: `number`
247
+ > **params**: \[`AztecAddress`\]
241
248
 
242
249
  #### result
243
250
 
244
- > **result**: `L2Block`
251
+ > **result**: `ContractMetadata`
245
252
 
246
- ***
253
+ #### Param
247
254
 
248
- ### aztec\_getBlockNumber
255
+ A tuple containing the contract's address.
249
256
 
250
- > **aztec\_getBlockNumber**: `object`
257
+ #### Param
251
258
 
252
- Defined in: [aztec/rpc-wallet/src/types.ts:164](https://github.com/WalletMesh/walletmesh-packages/blob/65bc501d5bed45d0e6d444f53e29595da551d59e/aztec/rpc-wallet/src/types.ts#L164)
259
+ contractAddress - The AztecAddress of the contract.
253
260
 
254
- #### result
261
+ #### Returns
255
262
 
256
- > **result**: `number`
263
+ result - The ContractMetadata for the specified contract.
257
264
 
258
265
  ***
259
266
 
260
- ### aztec\_getChainId
267
+ ### aztec\_getContracts
261
268
 
262
- > **aztec\_getChainId**: `object`
269
+ > **aztec\_getContracts**: `object`
263
270
 
264
- Defined in: [aztec/rpc-wallet/src/types.ts:165](https://github.com/WalletMesh/walletmesh-packages/blob/65bc501d5bed45d0e6d444f53e29595da551d59e/aztec/rpc-wallet/src/types.ts#L165)
271
+ Defined in: [aztec/rpc-wallet/src/types.ts:240](https://github.com/WalletMesh/walletmesh-packages/blob/c22c9775e630bf48780e547c01c8f5442dc5b36c/aztec/rpc-wallet/src/types.ts#L240)
265
272
 
266
- #### result
273
+ Retrieves a list of all AztecAddresses of contracts known to the PXE/wallet.
267
274
 
268
- > **result**: `number`
275
+ #### params
269
276
 
270
- ***
277
+ > **params**: \[\]
271
278
 
272
- ### aztec\_getCompleteAddress
279
+ #### result
273
280
 
274
- > **aztec\_getCompleteAddress**: `object`
281
+ > **result**: `AztecAddress`[]
275
282
 
276
- Defined in: [aztec/rpc-wallet/src/types.ts:188](https://github.com/WalletMesh/walletmesh-packages/blob/65bc501d5bed45d0e6d444f53e29595da551d59e/aztec/rpc-wallet/src/types.ts#L188)
283
+ #### Param
277
284
 
278
- #### result
285
+ No parameters.
279
286
 
280
- > **result**: `CompleteAddress`
287
+ #### Returns
288
+
289
+ result - An array of contract AztecAddresses.
281
290
 
282
291
  ***
283
292
 
284
- ### aztec\_getContractClassLogs
293
+ ### aztec\_getCurrentBaseFees
294
+
295
+ > **aztec\_getCurrentBaseFees**: `object`
285
296
 
286
- > **aztec\_getContractClassLogs**: `object`
297
+ Defined in: [aztec/rpc-wallet/src/types.ts:177](https://github.com/WalletMesh/walletmesh-packages/blob/c22c9775e630bf48780e547c01c8f5442dc5b36c/aztec/rpc-wallet/src/types.ts#L177)
287
298
 
288
- Defined in: [aztec/rpc-wallet/src/types.ts:275](https://github.com/WalletMesh/walletmesh-packages/blob/65bc501d5bed45d0e6d444f53e29595da551d59e/aztec/rpc-wallet/src/types.ts#L275)
299
+ Retrieves the current base gas fees on the network.
289
300
 
290
301
  #### params
291
302
 
292
- > **params**: `object`
303
+ > **params**: \[\]
293
304
 
294
- ##### params.filter
305
+ #### result
295
306
 
296
- > **filter**: `LogFilter`
307
+ > **result**: `GasFees`
297
308
 
298
- #### result
309
+ #### Param
310
+
311
+ No parameters.
299
312
 
300
- > **result**: `GetContractClassLogsResponse`
313
+ #### Returns
314
+
315
+ result - A GasFees object.
301
316
 
302
317
  ***
303
318
 
304
- ### aztec\_getContractClassMetadata
319
+ ### aztec\_getNodeInfo
305
320
 
306
- > **aztec\_getContractClassMetadata**: `object`
321
+ > **aztec\_getNodeInfo**: `object`
322
+
323
+ Defined in: [aztec/rpc-wallet/src/types.ts:159](https://github.com/WalletMesh/walletmesh-packages/blob/c22c9775e630bf48780e547c01c8f5442dc5b36c/aztec/rpc-wallet/src/types.ts#L159)
307
324
 
308
- Defined in: [aztec/rpc-wallet/src/types.ts:218](https://github.com/WalletMesh/walletmesh-packages/blob/65bc501d5bed45d0e6d444f53e29595da551d59e/aztec/rpc-wallet/src/types.ts#L218)
325
+ Retrieves comprehensive information about the connected Aztec node.
309
326
 
310
327
  #### params
311
328
 
312
- > **params**: `object`
329
+ > **params**: \[\]
313
330
 
314
- ##### params.id
331
+ #### result
315
332
 
316
- > **id**: `Fr`
333
+ > **result**: `NodeInfo`
317
334
 
318
- ##### params.includeArtifact?
335
+ #### Param
319
336
 
320
- > `optional` **includeArtifact**: `boolean`
337
+ No parameters.
321
338
 
322
- #### result
339
+ #### Returns
323
340
 
324
- > **result**: `ContractClassMetadata`
341
+ result - A NodeInfo object.
325
342
 
326
343
  ***
327
344
 
328
- ### aztec\_getContractMetadata
345
+ ### aztec\_getPrivateEvents
329
346
 
330
- > **aztec\_getContractMetadata**: `object`
347
+ > **aztec\_getPrivateEvents**: `object`
331
348
 
332
- Defined in: [aztec/rpc-wallet/src/types.ts:217](https://github.com/WalletMesh/walletmesh-packages/blob/65bc501d5bed45d0e6d444f53e29595da551d59e/aztec/rpc-wallet/src/types.ts#L217)
349
+ Defined in: [aztec/rpc-wallet/src/types.ts:386](https://github.com/WalletMesh/walletmesh-packages/blob/c22c9775e630bf48780e547c01c8f5442dc5b36c/aztec/rpc-wallet/src/types.ts#L386)
350
+
351
+ Retrieves private (encrypted) events from the blockchain.
333
352
 
334
353
  #### params
335
354
 
336
- > **params**: `object`
355
+ > **params**: \[`AztecAddress`, `EventMetadataDefinition`, `number`, `number`, `AztecAddress`[]\]
337
356
 
338
- ##### params.address
357
+ #### result
339
358
 
340
- > **address**: `AztecAddress`
359
+ > **result**: `unknown`[]
341
360
 
342
- #### result
361
+ #### Param
343
362
 
344
- > **result**: `ContractMetadata`
363
+ A tuple containing the query parameters.
345
364
 
346
- ***
365
+ #### Param
347
366
 
348
- ### aztec\_getContracts
367
+ contractAddress - AztecAddress of the emitting contract.
349
368
 
350
- > **aztec\_getContracts**: `object`
369
+ #### Param
351
370
 
352
- Defined in: [aztec/rpc-wallet/src/types.ts:216](https://github.com/WalletMesh/walletmesh-packages/blob/65bc501d5bed45d0e6d444f53e29595da551d59e/aztec/rpc-wallet/src/types.ts#L216)
371
+ eventMetadata - EventMetadataDefinition for the event.
353
372
 
354
- #### result
373
+ #### Param
355
374
 
356
- > **result**: `AztecAddress`[]
375
+ fromBlock - Starting block number.
357
376
 
358
- ***
377
+ #### Param
359
378
 
360
- ### aztec\_getCurrentBaseFees
379
+ numBlocks - Number of blocks to scan.
361
380
 
362
- > **aztec\_getCurrentBaseFees**: `object`
381
+ #### Param
363
382
 
364
- Defined in: [aztec/rpc-wallet/src/types.ts:170](https://github.com/WalletMesh/walletmesh-packages/blob/65bc501d5bed45d0e6d444f53e29595da551d59e/aztec/rpc-wallet/src/types.ts#L170)
383
+ recipients - Array of recipient AztecAddresses.
365
384
 
366
- #### result
385
+ #### Returns
367
386
 
368
- > **result**: `GasFees`
387
+ result - An array of decoded private event data (type `unknown[]`, actual type depends on `eventMetadata`).
369
388
 
370
389
  ***
371
390
 
372
- ### aztec\_getL1ToL2MembershipWitness
391
+ ### aztec\_getProvenBlockNumber
392
+
393
+ > **aztec\_getProvenBlockNumber**: `object`
373
394
 
374
- > **aztec\_getL1ToL2MembershipWitness**: `object`
395
+ Defined in: [aztec/rpc-wallet/src/types.ts:165](https://github.com/WalletMesh/walletmesh-packages/blob/c22c9775e630bf48780e547c01c8f5442dc5b36c/aztec/rpc-wallet/src/types.ts#L165)
375
396
 
376
- Defined in: [aztec/rpc-wallet/src/types.ts:178](https://github.com/WalletMesh/walletmesh-packages/blob/65bc501d5bed45d0e6d444f53e29595da551d59e/aztec/rpc-wallet/src/types.ts#L178)
397
+ Retrieves the latest L2 block number that has been proven.
377
398
 
378
399
  #### params
379
400
 
380
- > **params**: `object`
401
+ > **params**: \[\]
381
402
 
382
- ##### params.contractAddress
403
+ #### result
383
404
 
384
- > **contractAddress**: `AztecAddress`
405
+ > **result**: `number`
385
406
 
386
- ##### params.messageHash
407
+ #### Param
387
408
 
388
- > **messageHash**: `Fr`
409
+ No parameters.
389
410
 
390
- ##### params.secret
411
+ #### Returns
391
412
 
392
- > **secret**: `Fr`
413
+ result - The latest proven block number.
393
414
 
394
- #### result
415
+ ***
395
416
 
396
- > **result**: \[`bigint`, `SiblingPath`\<`39`\>\]
417
+ ### aztec\_getPublicEvents
397
418
 
398
- ***
419
+ > **aztec\_getPublicEvents**: `object`
399
420
 
400
- ### aztec\_getNodeInfo
421
+ Defined in: [aztec/rpc-wallet/src/types.ts:404](https://github.com/WalletMesh/walletmesh-packages/blob/c22c9775e630bf48780e547c01c8f5442dc5b36c/aztec/rpc-wallet/src/types.ts#L404)
401
422
 
402
- > **aztec\_getNodeInfo**: `object`
423
+ Retrieves public (unencrypted) events from the blockchain.
424
+
425
+ #### params
403
426
 
404
- Defined in: [aztec/rpc-wallet/src/types.ts:167](https://github.com/WalletMesh/walletmesh-packages/blob/65bc501d5bed45d0e6d444f53e29595da551d59e/aztec/rpc-wallet/src/types.ts#L167)
427
+ > **params**: \[`EventMetadataDefinition`, `number`, `number`\]
405
428
 
406
429
  #### result
407
430
 
408
- > **result**: `NodeInfo`
431
+ > **result**: `unknown`[]
409
432
 
410
- ***
433
+ #### Param
411
434
 
412
- ### aztec\_getNotes
435
+ A tuple containing the query parameters.
413
436
 
414
- > **aztec\_getNotes**: `object`
437
+ #### Param
415
438
 
416
- Defined in: [aztec/rpc-wallet/src/types.ts:269](https://github.com/WalletMesh/walletmesh-packages/blob/65bc501d5bed45d0e6d444f53e29595da551d59e/aztec/rpc-wallet/src/types.ts#L269)
439
+ eventMetadata - EventMetadataDefinition for the event.
417
440
 
418
- #### params
441
+ #### Param
419
442
 
420
- > **params**: `object`
443
+ fromBlock - Starting block number.
421
444
 
422
- ##### params.filter
445
+ #### Param
423
446
 
424
- > **filter**: `NotesFilter`
447
+ limit - Maximum number of events to return.
425
448
 
426
- #### result
449
+ #### Returns
427
450
 
428
- > **result**: `UniqueNote`[]
451
+ result - An array of decoded public event data (type `unknown[]`, actual type depends on `eventMetadata`).
429
452
 
430
453
  ***
431
454
 
432
- ### aztec\_getPrivateEvents
455
+ ### aztec\_getPXEInfo
433
456
 
434
- > **aztec\_getPrivateEvents**: `object`
457
+ > **aztec\_getPXEInfo**: `object`
435
458
 
436
- Defined in: [aztec/rpc-wallet/src/types.ts:276](https://github.com/WalletMesh/walletmesh-packages/blob/65bc501d5bed45d0e6d444f53e29595da551d59e/aztec/rpc-wallet/src/types.ts#L276)
459
+ Defined in: [aztec/rpc-wallet/src/types.ts:171](https://github.com/WalletMesh/walletmesh-packages/blob/c22c9775e630bf48780e547c01c8f5442dc5b36c/aztec/rpc-wallet/src/types.ts#L171)
437
460
 
438
- #### params
461
+ Retrieves information about the PXE service, including capabilities and version.
439
462
 
440
- > **params**: `object`
463
+ #### params
441
464
 
442
- ##### params.event
465
+ > **params**: \[\]
443
466
 
444
- > **event**: `EventMetadataDefinition`
467
+ #### result
445
468
 
446
- ##### params.from
469
+ > **result**: `PXEInfo`
447
470
 
448
- > **from**: `number`
471
+ #### Param
449
472
 
450
- ##### params.limit
473
+ No parameters.
451
474
 
452
- > **limit**: `number`
475
+ #### Returns
453
476
 
454
- ##### params.vpks?
477
+ result - A PXEInfo object.
455
478
 
456
- > `optional` **vpks**: `Point`[]
479
+ ***
457
480
 
458
- #### result
481
+ ### aztec\_getSenders
459
482
 
460
- > **result**: `unknown`[]
483
+ > **aztec\_getSenders**: `object`
461
484
 
462
- ***
485
+ Defined in: [aztec/rpc-wallet/src/types.ts:222](https://github.com/WalletMesh/walletmesh-packages/blob/c22c9775e630bf48780e547c01c8f5442dc5b36c/aztec/rpc-wallet/src/types.ts#L222)
463
486
 
464
- ### aztec\_getProvenBlockNumber
487
+ Retrieves a list of all currently authorized sender AztecAddresses.
465
488
 
466
- > **aztec\_getProvenBlockNumber**: `object`
489
+ #### params
467
490
 
468
- Defined in: [aztec/rpc-wallet/src/types.ts:168](https://github.com/WalletMesh/walletmesh-packages/blob/65bc501d5bed45d0e6d444f53e29595da551d59e/aztec/rpc-wallet/src/types.ts#L168)
491
+ > **params**: \[\]
469
492
 
470
493
  #### result
471
494
 
472
- > **result**: `number`
473
-
474
- ***
495
+ > **result**: `AztecAddress`[]
475
496
 
476
- ### aztec\_getPublicEvents
497
+ #### Param
477
498
 
478
- > **aztec\_getPublicEvents**: `object`
499
+ No parameters.
479
500
 
480
- Defined in: [aztec/rpc-wallet/src/types.ts:280](https://github.com/WalletMesh/walletmesh-packages/blob/65bc501d5bed45d0e6d444f53e29595da551d59e/aztec/rpc-wallet/src/types.ts#L280)
501
+ #### Returns
481
502
 
482
- #### params
503
+ result - An array of authorized AztecAddresses.
483
504
 
484
- > **params**: `object`
505
+ ***
485
506
 
486
- ##### params.event
507
+ ### aztec\_getTxReceipt
487
508
 
488
- > **event**: `EventMetadataDefinition`
509
+ > **aztec\_getTxReceipt**: `object`
489
510
 
490
- ##### params.from
511
+ Defined in: [aztec/rpc-wallet/src/types.ts:312](https://github.com/WalletMesh/walletmesh-packages/blob/c22c9775e630bf48780e547c01c8f5442dc5b36c/aztec/rpc-wallet/src/types.ts#L312)
491
512
 
492
- > **from**: `number`
513
+ Retrieves the TxReceipt for a transaction.
493
514
 
494
- ##### params.limit
515
+ #### params
495
516
 
496
- > **limit**: `number`
517
+ > **params**: \[`TxHash`\]
497
518
 
498
519
  #### result
499
520
 
500
- > **result**: `unknown`[]
501
-
502
- ***
503
-
504
- ### aztec\_getPublicLogs
505
-
506
- > **aztec\_getPublicLogs**: `object`
507
-
508
- Defined in: [aztec/rpc-wallet/src/types.ts:274](https://github.com/WalletMesh/walletmesh-packages/blob/65bc501d5bed45d0e6d444f53e29595da551d59e/aztec/rpc-wallet/src/types.ts#L274)
521
+ > **result**: `TxReceipt`
509
522
 
510
- #### params
523
+ #### Param
511
524
 
512
- > **params**: `object`
525
+ A tuple containing the transaction hash.
513
526
 
514
- ##### params.filter
527
+ #### Param
515
528
 
516
- > **filter**: `LogFilter`
529
+ txHash - The TxHash of the transaction.
517
530
 
518
- #### result
531
+ #### Returns
519
532
 
520
- > **result**: `GetPublicLogsResponse`
533
+ result - The TxReceipt.
521
534
 
522
535
  ***
523
536
 
524
- ### aztec\_getPublicStorageAt
537
+ ### aztec\_getVersion
525
538
 
526
- > **aztec\_getPublicStorageAt**: `object`
539
+ > **aztec\_getVersion**: `object`
540
+
541
+ Defined in: [aztec/rpc-wallet/src/types.ts:153](https://github.com/WalletMesh/walletmesh-packages/blob/c22c9775e630bf48780e547c01c8f5442dc5b36c/aztec/rpc-wallet/src/types.ts#L153)
527
542
 
528
- Defined in: [aztec/rpc-wallet/src/types.ts:240](https://github.com/WalletMesh/walletmesh-packages/blob/65bc501d5bed45d0e6d444f53e29595da551d59e/aztec/rpc-wallet/src/types.ts#L240)
543
+ Retrieves the version of the connected PXE (Private Execution Environment) or node.
529
544
 
530
545
  #### params
531
546
 
532
- > **params**: `object`
547
+ > **params**: \[\]
533
548
 
534
- ##### params.contract
549
+ #### result
535
550
 
536
- > **contract**: `AztecAddress`
551
+ > **result**: `Fr`
537
552
 
538
- ##### params.storageSlot
553
+ #### Param
539
554
 
540
- > **storageSlot**: `Fr`
555
+ No parameters.
541
556
 
542
- #### result
557
+ #### Returns
543
558
 
544
- > **result**: `any`
559
+ result - The version as an Fr.
545
560
 
546
561
  ***
547
562
 
548
- ### aztec\_getPXEInfo
549
-
550
- > **aztec\_getPXEInfo**: `object`
551
-
552
- Defined in: [aztec/rpc-wallet/src/types.ts:169](https://github.com/WalletMesh/walletmesh-packages/blob/65bc501d5bed45d0e6d444f53e29595da551d59e/aztec/rpc-wallet/src/types.ts#L169)
563
+ ### aztec\_profileTx
553
564
 
554
- #### result
565
+ > **aztec\_profileTx**: `object`
555
566
 
556
- > **result**: `PXEInfo`
557
-
558
- ***
567
+ Defined in: [aztec/rpc-wallet/src/types.ts:345](https://github.com/WalletMesh/walletmesh-packages/blob/c22c9775e630bf48780e547c01c8f5442dc5b36c/aztec/rpc-wallet/src/types.ts#L345)
559
568
 
560
- ### aztec\_getRegisteredAccounts
569
+ Profiles a TxExecutionRequest for performance analysis.
561
570
 
562
- > **aztec\_getRegisteredAccounts**: `object`
571
+ #### params
563
572
 
564
- Defined in: [aztec/rpc-wallet/src/types.ts:193](https://github.com/WalletMesh/walletmesh-packages/blob/65bc501d5bed45d0e6d444f53e29595da551d59e/aztec/rpc-wallet/src/types.ts#L193)
573
+ > **params**: \[`TxExecutionRequest`, (`"gates"` \| `"execution-steps"` \| `"full"`)?, `boolean`?, `AztecAddress`?\]
565
574
 
566
575
  #### result
567
576
 
568
- > **result**: `CompleteAddress`[]
577
+ > **result**: `TxProfileResult`
569
578
 
570
- ***
579
+ #### Param
571
580
 
572
- ### aztec\_getScopes
581
+ A tuple containing the profiling parameters.
573
582
 
574
- > **aztec\_getScopes**: `object`
583
+ #### Param
575
584
 
576
- Defined in: [aztec/rpc-wallet/src/types.ts:174](https://github.com/WalletMesh/walletmesh-packages/blob/65bc501d5bed45d0e6d444f53e29595da551d59e/aztec/rpc-wallet/src/types.ts#L174)
585
+ txRequest - The TxExecutionRequest to profile.
577
586
 
578
- #### result
587
+ #### Param
579
588
 
580
- > **result**: `AztecAddress`[]
589
+ profileMode - Optional: Profiling mode ('gates', 'execution-steps', 'full'). Defaults to 'gates'.
581
590
 
582
- ***
591
+ #### Param
583
592
 
584
- ### aztec\_getSenders
593
+ skipProofGeneration - Optional: Flag to skip proof generation. Defaults to `false`.
585
594
 
586
- > **aztec\_getSenders**: `object`
595
+ #### Param
587
596
 
588
- Defined in: [aztec/rpc-wallet/src/types.ts:211](https://github.com/WalletMesh/walletmesh-packages/blob/65bc501d5bed45d0e6d444f53e29595da551d59e/aztec/rpc-wallet/src/types.ts#L211)
597
+ msgSender - Optional: AztecAddress for profiling context.
589
598
 
590
- #### result
599
+ #### Returns
591
600
 
592
- > **result**: `AztecAddress`[]
601
+ result - The TxProfileResult.
593
602
 
594
603
  ***
595
604
 
596
- ### aztec\_getTxEffect
597
-
598
- > **aztec\_getTxEffect**: `object`
605
+ ### aztec\_proveTx
599
606
 
600
- Defined in: [aztec/rpc-wallet/src/types.ts:249](https://github.com/WalletMesh/walletmesh-packages/blob/65bc501d5bed45d0e6d444f53e29595da551d59e/aztec/rpc-wallet/src/types.ts#L249)
607
+ > **aztec\_proveTx**: `object`
601
608
 
602
- #### params
609
+ Defined in: [aztec/rpc-wallet/src/types.ts:292](https://github.com/WalletMesh/walletmesh-packages/blob/c22c9775e630bf48780e547c01c8f5442dc5b36c/aztec/rpc-wallet/src/types.ts#L292)
603
610
 
604
- > **params**: `object`
611
+ Generates proofs for a transaction execution request.
605
612
 
606
- ##### params.txHash
613
+ #### params
607
614
 
608
- > **txHash**: `TxHash`
615
+ > **params**: \[`TxExecutionRequest`, `PrivateExecutionResult`?\]
609
616
 
610
617
  #### result
611
618
 
612
- > **result**: `InBlock`\<`TxEffect`\>
613
-
614
- ***
615
-
616
- ### aztec\_getTxReceipt
619
+ > **result**: `TxProvingResult`
617
620
 
618
- > **aztec\_getTxReceipt**: `object`
621
+ #### Param
619
622
 
620
- Defined in: [aztec/rpc-wallet/src/types.ts:250](https://github.com/WalletMesh/walletmesh-packages/blob/65bc501d5bed45d0e6d444f53e29595da551d59e/aztec/rpc-wallet/src/types.ts#L250)
623
+ A tuple containing the request and optional private execution result.
621
624
 
622
- #### params
625
+ #### Param
623
626
 
624
- > **params**: `object`
627
+ txRequest - The TxExecutionRequest to prove.
625
628
 
626
- ##### params.txHash
629
+ #### Param
627
630
 
628
- > **txHash**: `TxHash`
631
+ privateExecutionResult - Optional: PrivateExecutionResult from a prior private simulation.
629
632
 
630
- #### result
633
+ #### Returns
631
634
 
632
- > **result**: `TxReceipt`
635
+ result - The TxProvingResult, including the proven transaction.
633
636
 
634
637
  ***
635
638
 
636
- ### aztec\_getVersion
637
-
638
- > **aztec\_getVersion**: `object`
639
-
640
- Defined in: [aztec/rpc-wallet/src/types.ts:166](https://github.com/WalletMesh/walletmesh-packages/blob/65bc501d5bed45d0e6d444f53e29595da551d59e/aztec/rpc-wallet/src/types.ts#L166)
641
-
642
- #### result
643
-
644
- > **result**: `number`
645
-
646
- ***
639
+ ### aztec\_registerContract
647
640
 
648
- ### aztec\_isL1ToL2MessageSynced
641
+ > **aztec\_registerContract**: `object`
649
642
 
650
- > **aztec\_isL1ToL2MessageSynced**: `object`
643
+ Defined in: [aztec/rpc-wallet/src/types.ts:269](https://github.com/WalletMesh/walletmesh-packages/blob/c22c9775e630bf48780e547c01c8f5442dc5b36c/aztec/rpc-wallet/src/types.ts#L269)
651
644
 
652
- Defined in: [aztec/rpc-wallet/src/types.ts:177](https://github.com/WalletMesh/walletmesh-packages/blob/65bc501d5bed45d0e6d444f53e29595da551d59e/aztec/rpc-wallet/src/types.ts#L177)
645
+ Registers a deployed contract instance with the wallet.
653
646
 
654
647
  #### params
655
648
 
656
- > **params**: `object`
657
-
658
- ##### params.l1ToL2Message
659
-
660
- > **l1ToL2Message**: `Fr`
649
+ > **params**: \[`ContractInstanceWithAddress`, `undefined` \| `ContractArtifact`\]
661
650
 
662
651
  #### result
663
652
 
664
653
  > **result**: `boolean`
665
654
 
666
- ***
655
+ #### Param
667
656
 
668
- ### aztec\_proveTx
657
+ A tuple containing the instance and optional artifact.
669
658
 
670
- > **aztec\_proveTx**: `object`
659
+ #### Param
671
660
 
672
- Defined in: [aztec/rpc-wallet/src/types.ts:245](https://github.com/WalletMesh/walletmesh-packages/blob/65bc501d5bed45d0e6d444f53e29595da551d59e/aztec/rpc-wallet/src/types.ts#L245)
661
+ instance - The ContractInstanceWithAddress to register.
673
662
 
674
- #### params
675
-
676
- > **params**: `object`
663
+ #### Param
677
664
 
678
- ##### params.privateExecutionResult
665
+ artifact - Optional: The ContractArtifact for the instance.
679
666
 
680
- > **privateExecutionResult**: `PrivateExecutionResult`
667
+ #### Returns
681
668
 
682
- ##### params.txRequest
669
+ result - `true` if registration was successful.
683
670
 
684
- > **txRequest**: `TxExecutionRequest`
671
+ ***
685
672
 
686
- #### result
673
+ ### aztec\_registerContractClass
687
674
 
688
- > **result**: `TxProvingResult`
675
+ > **aztec\_registerContractClass**: `object`
689
676
 
690
- ***
677
+ Defined in: [aztec/rpc-wallet/src/types.ts:279](https://github.com/WalletMesh/walletmesh-packages/blob/c22c9775e630bf48780e547c01c8f5442dc5b36c/aztec/rpc-wallet/src/types.ts#L279)
691
678
 
692
- ### aztec\_registerAccount
679
+ Registers a contract class (bytecode and ABI) with the wallet.
693
680
 
694
- > **aztec\_registerAccount**: `object`
681
+ #### params
695
682
 
696
- Defined in: [aztec/rpc-wallet/src/types.ts:189](https://github.com/WalletMesh/walletmesh-packages/blob/65bc501d5bed45d0e6d444f53e29595da551d59e/aztec/rpc-wallet/src/types.ts#L189)
683
+ > **params**: \[`ContractArtifact`\]
697
684
 
698
- #### params
685
+ #### result
699
686
 
700
- > **params**: `object`
687
+ > **result**: `boolean`
701
688
 
702
- ##### params.partialAddress
689
+ #### Param
703
690
 
704
- > **partialAddress**: `Fr`
691
+ A tuple containing the artifact.
705
692
 
706
- ##### params.secretKey
693
+ #### Param
707
694
 
708
- > **secretKey**: `Fr`
695
+ artifact - The ContractArtifact to register.
709
696
 
710
- #### result
697
+ #### Returns
711
698
 
712
- > **result**: `CompleteAddress`
699
+ result - `true` if registration was successful.
713
700
 
714
701
  ***
715
702
 
716
- ### aztec\_registerContract
703
+ ### aztec\_registerSender
717
704
 
718
- > **aztec\_registerContract**: `object`
705
+ > **aztec\_registerSender**: `object`
719
706
 
720
- Defined in: [aztec/rpc-wallet/src/types.ts:228](https://github.com/WalletMesh/walletmesh-packages/blob/65bc501d5bed45d0e6d444f53e29595da551d59e/aztec/rpc-wallet/src/types.ts#L228)
707
+ Defined in: [aztec/rpc-wallet/src/types.ts:213](https://github.com/WalletMesh/walletmesh-packages/blob/c22c9775e630bf48780e547c01c8f5442dc5b36c/aztec/rpc-wallet/src/types.ts#L213)
721
708
 
722
- Registers a contract instance in the user's PXE.
709
+ Registers a new authorized sender AztecAddress.
723
710
 
724
711
  #### params
725
712
 
726
- > **params**: `object`
727
-
728
- ##### params.artifact?
729
-
730
- > `optional` **artifact**: `ContractArtifact`
713
+ > **params**: \[`AztecAddress`\]
731
714
 
732
- ##### params.instance
715
+ #### result
733
716
 
734
- > **instance**: `ContractInstanceWithAddress`
717
+ > **result**: `AztecAddress`
735
718
 
736
- #### result
719
+ #### Param
737
720
 
738
- > **result**: `boolean`
721
+ A tuple containing the sender's address.
739
722
 
740
723
  #### Param
741
724
 
742
- The contract details to register
725
+ senderAddress - The AztecAddress to authorize.
743
726
 
744
727
  #### Returns
745
728
 
746
- True if registration was successful
729
+ result - The registered AztecAddress.
747
730
 
748
731
  ***
749
732
 
750
- ### aztec\_registerContractClass
733
+ ### aztec\_removeSender
751
734
 
752
- > **aztec\_registerContractClass**: `object`
735
+ > **aztec\_removeSender**: `object`
753
736
 
754
- Defined in: [aztec/rpc-wallet/src/types.ts:238](https://github.com/WalletMesh/walletmesh-packages/blob/65bc501d5bed45d0e6d444f53e29595da551d59e/aztec/rpc-wallet/src/types.ts#L238)
737
+ Defined in: [aztec/rpc-wallet/src/types.ts:229](https://github.com/WalletMesh/walletmesh-packages/blob/c22c9775e630bf48780e547c01c8f5442dc5b36c/aztec/rpc-wallet/src/types.ts#L229)
755
738
 
756
- Registers a contract class in the user's PXE.
739
+ Removes an AztecAddress from the list of authorized senders.
757
740
 
758
741
  #### params
759
742
 
760
- > **params**: `object`
761
-
762
- ##### params.artifact
763
-
764
- > **artifact**: `ContractArtifact`
743
+ > **params**: \[`AztecAddress`\]
765
744
 
766
745
  #### result
767
746
 
@@ -769,233 +748,238 @@ Registers a contract class in the user's PXE.
769
748
 
770
749
  #### Param
771
750
 
772
- The contract artifact to register
751
+ A tuple containing the sender's address.
752
+
753
+ #### Param
754
+
755
+ senderAddress - The AztecAddress to de-authorize.
773
756
 
774
757
  #### Returns
775
758
 
776
- True if registration was successful
759
+ result - `true` if removal was successful.
777
760
 
778
761
  ***
779
762
 
780
- ### aztec\_registerSender
763
+ ### aztec\_sendTx
781
764
 
782
- > **aztec\_registerSender**: `object`
765
+ > **aztec\_sendTx**: `object`
783
766
 
784
- Defined in: [aztec/rpc-wallet/src/types.ts:210](https://github.com/WalletMesh/walletmesh-packages/blob/65bc501d5bed45d0e6d444f53e29595da551d59e/aztec/rpc-wallet/src/types.ts#L210)
767
+ Defined in: [aztec/rpc-wallet/src/types.ts:302](https://github.com/WalletMesh/walletmesh-packages/blob/c22c9775e630bf48780e547c01c8f5442dc5b36c/aztec/rpc-wallet/src/types.ts#L302)
785
768
 
786
- Registers a contact in the user's PXE
769
+ Sends a proven Tx (transaction) to the network.
787
770
 
788
771
  #### params
789
772
 
790
- > **params**: `object`
773
+ > **params**: \[`Tx`\]
791
774
 
792
- ##### params.sender
775
+ #### result
793
776
 
794
- > **sender**: `AztecAddress`
777
+ > **result**: `TxHash`
795
778
 
796
- #### result
779
+ #### Param
797
780
 
798
- > **result**: `AztecAddress`
781
+ A tuple containing the proven transaction.
799
782
 
800
783
  #### Param
801
784
 
802
- The sender (contact) address to register
785
+ tx - The proven Tx object to send.
803
786
 
804
787
  #### Returns
805
788
 
806
- True if registration was successful
789
+ result - The TxHash of the sent transaction.
807
790
 
808
791
  ***
809
792
 
810
- ### aztec\_removeSender
811
-
812
- > **aztec\_removeSender**: `object`
793
+ ### aztec\_simulateTx
813
794
 
814
- Defined in: [aztec/rpc-wallet/src/types.ts:212](https://github.com/WalletMesh/walletmesh-packages/blob/65bc501d5bed45d0e6d444f53e29595da551d59e/aztec/rpc-wallet/src/types.ts#L212)
795
+ > **aztec\_simulateTx**: `object`
815
796
 
816
- #### params
797
+ Defined in: [aztec/rpc-wallet/src/types.ts:326](https://github.com/WalletMesh/walletmesh-packages/blob/c22c9775e630bf48780e547c01c8f5442dc5b36c/aztec/rpc-wallet/src/types.ts#L326)
817
798
 
818
- > **params**: `object`
799
+ Simulates a TxExecutionRequest without sending it to the network.
819
800
 
820
- ##### params.sender
801
+ #### params
821
802
 
822
- > **sender**: `AztecAddress`
803
+ > **params**: \[`TxExecutionRequest`, `boolean`?, `AztecAddress`?, `boolean`?, `boolean`?\]
823
804
 
824
805
  #### result
825
806
 
826
- > **result**: `boolean`
827
-
828
- ***
807
+ > **result**: `TxSimulationResult`
829
808
 
830
- ### aztec\_sendTransaction
809
+ #### Param
831
810
 
832
- > **aztec\_sendTransaction**: `object`
811
+ A tuple containing the simulation parameters.
833
812
 
834
- Defined in: [aztec/rpc-wallet/src/types.ts:101](https://github.com/WalletMesh/walletmesh-packages/blob/65bc501d5bed45d0e6d444f53e29595da551d59e/aztec/rpc-wallet/src/types.ts#L101)
813
+ #### Param
835
814
 
836
- Sends transactions to the Aztec network.
815
+ txRequest - The TxExecutionRequest to simulate.
837
816
 
838
- #### params
817
+ #### Param
839
818
 
840
- > **params**: [`TransactionParams`](../type-aliases/TransactionParams.md)
819
+ simulatePublic - Optional: Whether to simulate public parts. Defaults to `false`.
841
820
 
842
- #### result
821
+ #### Param
843
822
 
844
- > **result**: `string`
823
+ msgSender - Optional: AztecAddress for simulation context.
845
824
 
846
825
  #### Param
847
826
 
848
- The transactions to execute and optional authorization witnesses
827
+ skipTxValidation - Optional: Flag to skip validation. Defaults to `false`.
849
828
 
850
- #### Returns
829
+ #### Param
851
830
 
852
- The transaction hash as a string
831
+ skipFeeEnforcement - Optional: Flag to skip fee enforcement. Defaults to `false`.
853
832
 
854
- #### Inherited from
833
+ #### Returns
855
834
 
856
- [`AztecWalletBaseMethodMap`](AztecWalletBaseMethodMap.md).[`aztec_sendTransaction`](AztecWalletBaseMethodMap.md#aztec_sendtransaction)
835
+ result - The TxSimulationResult.
857
836
 
858
837
  ***
859
838
 
860
- ### aztec\_sendTx
839
+ ### aztec\_simulateUtility
861
840
 
862
- > **aztec\_sendTx**: `object`
841
+ > **aztec\_simulateUtility**: `object`
842
+
843
+ Defined in: [aztec/rpc-wallet/src/types.ts:364](https://github.com/WalletMesh/walletmesh-packages/blob/c22c9775e630bf48780e547c01c8f5442dc5b36c/aztec/rpc-wallet/src/types.ts#L364)
863
844
 
864
- Defined in: [aztec/rpc-wallet/src/types.ts:243](https://github.com/WalletMesh/walletmesh-packages/blob/65bc501d5bed45d0e6d444f53e29595da551d59e/aztec/rpc-wallet/src/types.ts#L243)
845
+ Simulates a utility (view) function call.
865
846
 
866
847
  #### params
867
848
 
868
- > **params**: `object`
849
+ > **params**: \[`string`, `unknown`[], `AztecAddress`, `AuthWitness`[]?, `AztecAddress`?\]
869
850
 
870
- ##### params.tx
851
+ #### result
871
852
 
872
- > **tx**: `Tx`
853
+ > **result**: `UtilitySimulationResult`
873
854
 
874
- #### result
855
+ #### Param
875
856
 
876
- > **result**: `TxHash`
857
+ A tuple containing the utility call parameters.
877
858
 
878
- ***
859
+ #### Param
879
860
 
880
- ### aztec\_setScopes
861
+ functionName - Name of the utility function.
881
862
 
882
- > **aztec\_setScopes**: `object`
863
+ #### Param
883
864
 
884
- Defined in: [aztec/rpc-wallet/src/types.ts:173](https://github.com/WalletMesh/walletmesh-packages/blob/65bc501d5bed45d0e6d444f53e29595da551d59e/aztec/rpc-wallet/src/types.ts#L173)
865
+ args - Arguments for the function.
885
866
 
886
- #### params
867
+ #### Param
887
868
 
888
- > **params**: `object`
869
+ to - AztecAddress of the contract/account.
889
870
 
890
- ##### params.scopes
871
+ #### Param
891
872
 
892
- > **scopes**: `AztecAddress`[]
873
+ authWits - Optional: Array of AuthWitness.
893
874
 
894
- #### result
875
+ #### Param
895
876
 
896
- > **result**: `boolean`
877
+ from - Optional: Sender AztecAddress.
878
+
879
+ #### Returns
880
+
881
+ result - The UtilitySimulationResult.
897
882
 
898
883
  ***
899
884
 
900
- ### aztec\_simulateTransaction
885
+ ### aztec\_wmDeployContract
901
886
 
902
- > **aztec\_simulateTransaction**: `object`
887
+ > **aztec\_wmDeployContract**: `object`
903
888
 
904
- Defined in: [aztec/rpc-wallet/src/types.ts:111](https://github.com/WalletMesh/walletmesh-packages/blob/65bc501d5bed45d0e6d444f53e29595da551d59e/aztec/rpc-wallet/src/types.ts#L111)
889
+ Defined in: [aztec/rpc-wallet/src/types.ts:434](https://github.com/WalletMesh/walletmesh-packages/blob/c22c9775e630bf48780e547c01c8f5442dc5b36c/aztec/rpc-wallet/src/types.ts#L434)
905
890
 
906
- Simulates a transaction without executing it.
891
+ WalletMesh specific: Deploys a new contract using its artifact and constructor arguments.
892
+ The wallet handles address computation, proving, and sending the deployment transaction.
907
893
 
908
894
  #### params
909
895
 
910
- > **params**: [`TransactionFunctionCall`](../type-aliases/TransactionFunctionCall.md)
896
+ > **params**: \[\{ `args`: `unknown`[]; `artifact`: `ContractArtifact`; `constructorName?`: `string`; \}\]
911
897
 
912
898
  #### result
913
899
 
914
- > **result**: `unknown`
900
+ > **result**: `object`
915
901
 
916
- #### Param
917
-
918
- The transaction to simulate
902
+ ##### result.contractAddress
919
903
 
920
- #### Returns
904
+ > **contractAddress**: `AztecAddress`
921
905
 
922
- The simulation result
906
+ ##### result.txHash
923
907
 
924
- #### Inherited from
908
+ > **txHash**: `TxHash`
925
909
 
926
- [`AztecWalletBaseMethodMap`](AztecWalletBaseMethodMap.md).[`aztec_simulateTransaction`](AztecWalletBaseMethodMap.md#aztec_simulatetransaction)
910
+ #### Param
927
911
 
928
- ***
912
+ A tuple containing the deployment parameters.
929
913
 
930
- ### aztec\_simulateTx
914
+ #### Param
931
915
 
932
- > **aztec\_simulateTx**: `object`
916
+ deploymentParams - Object containing `artifact` (ContractArtifact), `args` (array),
917
+ and optional `constructorName` (string).
933
918
 
934
- Defined in: [aztec/rpc-wallet/src/types.ts:252](https://github.com/WalletMesh/walletmesh-packages/blob/65bc501d5bed45d0e6d444f53e29595da551d59e/aztec/rpc-wallet/src/types.ts#L252)
919
+ #### Returns
935
920
 
936
- #### params
921
+ result - An object with `txHash` (TxHash) and `contractAddress` (AztecAddress).
937
922
 
938
- > **params**: `object`
923
+ ***
939
924
 
940
- ##### params.enforceFeePayment?
925
+ ### aztec\_wmExecuteTx
941
926
 
942
- > `optional` **enforceFeePayment**: `boolean`
927
+ > **aztec\_wmExecuteTx**: `object`
943
928
 
944
- ##### params.msgSender?
929
+ Defined in: [aztec/rpc-wallet/src/types.ts:421](https://github.com/WalletMesh/walletmesh-packages/blob/c22c9775e630bf48780e547c01c8f5442dc5b36c/aztec/rpc-wallet/src/types.ts#L421)
945
930
 
946
- > `optional` **msgSender**: `AztecAddress`
931
+ WalletMesh specific: Executes a contract function interaction using a pre-constructed ExecutionPayload.
932
+ The wallet handles simulation, proving, and sending.
947
933
 
948
- ##### params.profile?
934
+ #### params
949
935
 
950
- > `optional` **profile**: `boolean`
936
+ > **params**: \[`ExecutionPayload`\]
951
937
 
952
- ##### params.simulatePublic
938
+ #### result
953
939
 
954
- > **simulatePublic**: `boolean`
940
+ > **result**: `TxHash`
955
941
 
956
- ##### params.skipTxValidation?
942
+ #### Param
957
943
 
958
- > `optional` **skipTxValidation**: `boolean`
944
+ A tuple containing the execution payload.
959
945
 
960
- ##### params.txRequest
946
+ #### Param
961
947
 
962
- > **txRequest**: `TxExecutionRequest`
948
+ executionPayload - The ExecutionPayload to execute.
963
949
 
964
- #### result
950
+ #### Returns
965
951
 
966
- > **result**: `TxSimulationResult`
952
+ result - The TxHash of the sent transaction.
967
953
 
968
954
  ***
969
955
 
970
- ### aztec\_simulateUnconstrained
971
-
972
- > **aztec\_simulateUnconstrained**: `object`
956
+ ### aztec\_wmSimulateTx
973
957
 
974
- Defined in: [aztec/rpc-wallet/src/types.ts:263](https://github.com/WalletMesh/walletmesh-packages/blob/65bc501d5bed45d0e6d444f53e29595da551d59e/aztec/rpc-wallet/src/types.ts#L263)
958
+ > **aztec\_wmSimulateTx**: `object`
975
959
 
976
- #### params
960
+ Defined in: [aztec/rpc-wallet/src/types.ts:454](https://github.com/WalletMesh/walletmesh-packages/blob/c22c9775e630bf48780e547c01c8f5442dc5b36c/aztec/rpc-wallet/src/types.ts#L454)
977
961
 
978
- > **params**: `object`
962
+ WalletMesh specific: Simulates a contract function interaction using a pre-constructed ExecutionPayload.
979
963
 
980
- ##### params.args
964
+ #### params
981
965
 
982
- > **args**: `unknown`[]
966
+ > **params**: \[`ExecutionPayload`\]
983
967
 
984
- ##### params.from?
968
+ #### result
985
969
 
986
- > `optional` **from**: `AztecAddress`
970
+ > **result**: `TxSimulationResult`
987
971
 
988
- ##### params.functionName
972
+ #### Param
989
973
 
990
- > **functionName**: `string`
974
+ A tuple containing the execution payload.
991
975
 
992
- ##### params.to
976
+ #### Param
993
977
 
994
- > **to**: `AztecAddress`
978
+ executionPayload - The ExecutionPayload to simulate.
995
979
 
996
- #### result
980
+ #### Returns
997
981
 
998
- > **result**: `AbiDecoded`
982
+ result - The TxSimulationResult.
999
983
 
1000
984
  ***
1001
985
 
@@ -1003,18 +987,27 @@ Defined in: [aztec/rpc-wallet/src/types.ts:263](https://github.com/WalletMesh/wa
1003
987
 
1004
988
  > **wm\_getSupportedMethods**: `object`
1005
989
 
1006
- Defined in: [aztec/rpc-wallet/src/types.ts:120](https://github.com/WalletMesh/walletmesh-packages/blob/65bc501d5bed45d0e6d444f53e29595da551d59e/aztec/rpc-wallet/src/types.ts#L120)
990
+ Defined in: [aztec/rpc-wallet/src/types.ts:126](https://github.com/WalletMesh/walletmesh-packages/blob/c22c9775e630bf48780e547c01c8f5442dc5b36c/aztec/rpc-wallet/src/types.ts#L126)
1007
991
 
1008
- Returns the list of supported methods for the wallet.
992
+ Retrieves a list of all JSON-RPC methods supported by this wallet implementation.
993
+ Allows clients to discover the capabilities of the wallet.
994
+
995
+ #### params
996
+
997
+ > **params**: \[\]
1009
998
 
1010
999
  #### result
1011
1000
 
1012
1001
  > **result**: `string`[]
1013
1002
 
1003
+ #### Param
1004
+
1005
+ No parameters.
1006
+
1014
1007
  #### Returns
1015
1008
 
1016
- An array of supported methods
1009
+ result - An array of strings, where each string is a supported method name.
1017
1010
 
1018
- #### Inherited from
1011
+ #### Overrides
1019
1012
 
1020
- [`AztecWalletBaseMethodMap`](AztecWalletBaseMethodMap.md).[`wm_getSupportedMethods`](AztecWalletBaseMethodMap.md#wm_getsupportedmethods)
1013
+ `WalletMethodMap.wm_getSupportedMethods`