@aztec/aztec.js 0.0.1-commit.03f7ef2 → 0.0.1-commit.04852196a
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dest/account/account.d.ts +25 -40
- package/dest/account/account.d.ts.map +1 -1
- package/dest/account/account.js +19 -47
- package/dest/account/account_contract.d.ts +8 -9
- package/dest/account/account_contract.d.ts.map +1 -1
- package/dest/account/account_with_secret_key.d.ts +19 -7
- package/dest/account/account_with_secret_key.d.ts.map +1 -1
- package/dest/account/account_with_secret_key.js +21 -4
- package/dest/account/index.d.ts +3 -2
- package/dest/account/index.d.ts.map +1 -1
- package/dest/account/index.js +2 -0
- package/dest/account/signerless_account.d.ts +5 -6
- package/dest/account/signerless_account.d.ts.map +1 -1
- package/dest/account/signerless_account.js +8 -11
- package/dest/api/abi.d.ts +2 -2
- package/dest/api/abi.d.ts.map +1 -1
- package/dest/api/account.d.ts +2 -4
- package/dest/api/account.d.ts.map +1 -1
- package/dest/api/account.js +1 -3
- package/dest/api/authorization.d.ts +2 -2
- package/dest/api/authorization.d.ts.map +1 -1
- package/dest/api/authorization.js +1 -1
- package/dest/api/contract.d.ts +18 -12
- package/dest/api/contract.d.ts.map +1 -1
- package/dest/api/contract.js +16 -10
- package/dest/api/deployment.d.ts +1 -2
- package/dest/api/deployment.d.ts.map +1 -1
- package/dest/api/deployment.js +0 -1
- package/dest/api/events.d.ts +18 -6
- package/dest/api/events.d.ts.map +1 -1
- package/dest/api/events.js +37 -22
- package/dest/api/fields.d.ts +2 -1
- package/dest/api/fields.d.ts.map +1 -1
- package/dest/api/fields.js +1 -0
- package/dest/api/keys.d.ts +1 -1
- package/dest/api/keys.js +1 -1
- package/dest/api/node.d.ts +8 -4
- package/dest/api/node.d.ts.map +1 -1
- package/dest/api/node.js +7 -3
- package/dest/api/protocol.d.ts +7 -1
- package/dest/api/protocol.d.ts.map +1 -1
- package/dest/api/protocol.js +6 -0
- package/dest/api/tx.d.ts +2 -2
- package/dest/api/tx.d.ts.map +1 -1
- package/dest/api/tx.js +1 -1
- package/dest/api/wallet.d.ts +3 -2
- package/dest/api/wallet.d.ts.map +1 -1
- package/dest/api/wallet.js +2 -1
- package/dest/authorization/call_authorization_request.d.ts +22 -1
- package/dest/authorization/call_authorization_request.d.ts.map +1 -1
- package/dest/contract/base_contract_interaction.d.ts +8 -10
- package/dest/contract/base_contract_interaction.d.ts.map +1 -1
- package/dest/contract/base_contract_interaction.js +5 -17
- package/dest/contract/batch_call.d.ts +3 -3
- package/dest/contract/batch_call.d.ts.map +1 -1
- package/dest/contract/batch_call.js +20 -9
- package/dest/contract/contract_base.d.ts +4 -1
- package/dest/contract/contract_base.d.ts.map +1 -1
- package/dest/contract/contract_function_interaction.d.ts +7 -16
- package/dest/contract/contract_function_interaction.d.ts.map +1 -1
- package/dest/contract/contract_function_interaction.js +107 -18
- package/dest/contract/deploy_method.d.ts +91 -19
- package/dest/contract/deploy_method.d.ts.map +1 -1
- package/dest/contract/deploy_method.js +73 -34
- package/dest/contract/get_gas_limits.js +3 -3
- package/dest/contract/interaction_options.d.ts +99 -21
- package/dest/contract/interaction_options.d.ts.map +1 -1
- package/dest/contract/interaction_options.js +41 -1
- package/dest/contract/protocol_contracts/auth-registry.d.ts +36 -0
- package/dest/contract/protocol_contracts/auth-registry.d.ts.map +1 -0
- package/dest/contract/protocol_contracts/auth-registry.js +1005 -0
- package/dest/contract/protocol_contracts/contract-class-registry.d.ts +15 -0
- package/dest/contract/protocol_contracts/contract-class-registry.d.ts.map +1 -0
- package/dest/contract/protocol_contracts/contract-class-registry.js +139 -0
- package/dest/contract/protocol_contracts/contract-instance-registry.d.ts +22 -0
- package/dest/contract/protocol_contracts/contract-instance-registry.d.ts.map +1 -0
- package/dest/contract/protocol_contracts/contract-instance-registry.js +465 -0
- package/dest/contract/protocol_contracts/fee-juice.d.ts +21 -0
- package/dest/contract/protocol_contracts/fee-juice.d.ts.map +1 -0
- package/dest/contract/protocol_contracts/fee-juice.js +434 -0
- package/dest/contract/protocol_contracts/multi-call-entrypoint.d.ts +34 -0
- package/dest/contract/protocol_contracts/multi-call-entrypoint.d.ts.map +1 -0
- package/dest/contract/protocol_contracts/multi-call-entrypoint.js +601 -0
- package/dest/contract/protocol_contracts/public-checks.d.ts +26 -0
- package/dest/contract/protocol_contracts/public-checks.d.ts.map +1 -0
- package/dest/contract/protocol_contracts/public-checks.js +609 -0
- package/dest/contract/wait_for_proven.d.ts +2 -2
- package/dest/contract/wait_for_proven.d.ts.map +1 -1
- package/dest/contract/wait_for_proven.js +1 -1
- package/dest/contract/wait_opts.d.ts +16 -0
- package/dest/contract/wait_opts.d.ts.map +1 -0
- package/dest/contract/wait_opts.js +5 -0
- package/dest/deployment/publish_class.js +2 -2
- package/dest/deployment/publish_instance.d.ts +2 -2
- package/dest/deployment/publish_instance.d.ts.map +1 -1
- package/dest/deployment/publish_instance.js +3 -3
- package/dest/ethereum/portal_manager.d.ts +7 -4
- package/dest/ethereum/portal_manager.d.ts.map +1 -1
- package/dest/ethereum/portal_manager.js +15 -16
- package/dest/fee/fee_juice_payment_method_with_claim.js +6 -6
- package/dest/fee/private_fee_payment_method.d.ts +2 -1
- package/dest/fee/private_fee_payment_method.d.ts.map +1 -1
- package/dest/fee/private_fee_payment_method.js +11 -10
- package/dest/fee/public_fee_payment_method.d.ts +2 -1
- package/dest/fee/public_fee_payment_method.d.ts.map +1 -1
- package/dest/fee/public_fee_payment_method.js +11 -10
- package/dest/fee/sponsored_fee_payment.js +3 -3
- package/dest/scripts/generate_protocol_contract_types.d.ts +2 -0
- package/dest/scripts/generate_protocol_contract_types.d.ts.map +1 -0
- package/dest/scripts/generate_protocol_contract_types.js +120 -0
- package/dest/utils/abi_types.d.ts +6 -1
- package/dest/utils/abi_types.d.ts.map +1 -1
- package/dest/utils/abi_types.js +1 -1
- package/dest/utils/authwit.d.ts +8 -6
- package/dest/utils/authwit.d.ts.map +1 -1
- package/dest/utils/authwit.js +15 -15
- package/dest/utils/cross_chain.d.ts +3 -8
- package/dest/utils/cross_chain.d.ts.map +1 -1
- package/dest/utils/cross_chain.js +8 -15
- package/dest/utils/node.d.ts +12 -1
- package/dest/utils/node.d.ts.map +1 -1
- package/dest/utils/node.js +46 -0
- package/dest/wallet/account_entrypoint_meta_payment_method.d.ts +5 -8
- package/dest/wallet/account_entrypoint_meta_payment_method.d.ts.map +1 -1
- package/dest/wallet/account_entrypoint_meta_payment_method.js +28 -43
- package/dest/wallet/account_manager.d.ts +5 -8
- package/dest/wallet/account_manager.d.ts.map +1 -1
- package/dest/wallet/account_manager.js +5 -11
- package/dest/wallet/capabilities.d.ts +452 -0
- package/dest/wallet/capabilities.d.ts.map +1 -0
- package/dest/wallet/capabilities.js +3 -0
- package/dest/wallet/deploy_account_method.d.ts +46 -7
- package/dest/wallet/deploy_account_method.d.ts.map +1 -1
- package/dest/wallet/deploy_account_method.js +33 -5
- package/dest/wallet/index.d.ts +2 -1
- package/dest/wallet/index.d.ts.map +1 -1
- package/dest/wallet/index.js +1 -0
- package/dest/wallet/wallet.d.ts +1810 -2493
- package/dest/wallet/wallet.d.ts.map +1 -1
- package/dest/wallet/wallet.js +230 -108
- package/package.json +25 -14
- package/src/account/account.ts +34 -58
- package/src/account/account_contract.ts +6 -7
- package/src/account/account_with_secret_key.ts +33 -8
- package/src/account/index.ts +2 -1
- package/src/account/signerless_account.ts +13 -12
- package/src/api/abi.ts +1 -0
- package/src/api/account.ts +9 -3
- package/src/api/authorization.ts +1 -0
- package/src/api/contract.ts +31 -9
- package/src/api/deployment.ts +0 -1
- package/src/api/events.ts +50 -32
- package/src/api/fields.ts +1 -0
- package/src/api/keys.ts +2 -2
- package/src/api/node.ts +7 -3
- package/src/api/protocol.ts +7 -0
- package/src/api/tx.ts +2 -0
- package/src/api/wallet.ts +48 -3
- package/src/contract/base_contract_interaction.ts +28 -15
- package/src/contract/batch_call.ts +20 -15
- package/src/contract/contract_function_interaction.ts +114 -26
- package/src/contract/deploy_method.ts +179 -41
- package/src/contract/get_gas_limits.ts +3 -3
- package/src/contract/interaction_options.ts +141 -23
- package/src/contract/protocol_contracts/auth-registry.ts +553 -0
- package/src/contract/protocol_contracts/contract-class-registry.ts +99 -0
- package/src/contract/protocol_contracts/contract-instance-registry.ts +302 -0
- package/src/contract/protocol_contracts/fee-juice.ts +266 -0
- package/src/contract/protocol_contracts/multi-call-entrypoint.ts +336 -0
- package/src/contract/protocol_contracts/public-checks.ts +320 -0
- package/src/contract/wait_for_proven.ts +1 -1
- package/src/contract/wait_opts.ts +21 -0
- package/src/deployment/publish_class.ts +2 -2
- package/src/deployment/publish_instance.ts +3 -6
- package/src/ethereum/portal_manager.ts +17 -21
- package/src/fee/fee_juice_payment_method_with_claim.ts +5 -5
- package/src/fee/private_fee_payment_method.ts +8 -7
- package/src/fee/public_fee_payment_method.ts +9 -8
- package/src/fee/sponsored_fee_payment.ts +3 -3
- package/src/scripts/generate_protocol_contract_types.ts +150 -0
- package/src/utils/abi_types.ts +7 -0
- package/src/utils/authwit.ts +34 -24
- package/src/utils/cross_chain.ts +9 -18
- package/src/utils/node.ts +62 -0
- package/src/wallet/account_entrypoint_meta_payment_method.ts +28 -60
- package/src/wallet/account_manager.ts +5 -13
- package/src/wallet/capabilities.ts +500 -0
- package/src/wallet/deploy_account_method.ts +74 -13
- package/src/wallet/index.ts +1 -0
- package/src/wallet/wallet.ts +367 -128
- package/dest/account/interface.d.ts +0 -19
- package/dest/account/interface.d.ts.map +0 -1
- package/dest/account/interface.js +0 -5
- package/dest/contract/deploy_sent_tx.d.ts +0 -48
- package/dest/contract/deploy_sent_tx.d.ts.map +0 -1
- package/dest/contract/deploy_sent_tx.js +0 -46
- package/dest/contract/protocol_contracts.d.ts +0 -9
- package/dest/contract/protocol_contracts.d.ts.map +0 -1
- package/dest/contract/protocol_contracts.js +0 -26
- package/dest/contract/sent_tx.d.ts +0 -50
- package/dest/contract/sent_tx.d.ts.map +0 -1
- package/dest/contract/sent_tx.js +0 -90
- package/dest/contract/unsafe_contract.d.ts +0 -15
- package/dest/contract/unsafe_contract.d.ts.map +0 -1
- package/dest/contract/unsafe_contract.js +0 -6
- package/dest/deployment/broadcast_function.d.ts +0 -24
- package/dest/deployment/broadcast_function.d.ts.map +0 -1
- package/dest/deployment/broadcast_function.js +0 -74
- package/src/account/interface.ts +0 -25
- package/src/contract/deploy_sent_tx.ts +0 -75
- package/src/contract/protocol_contracts.ts +0 -35
- package/src/contract/sent_tx.ts +0 -129
- package/src/contract/unsafe_contract.ts +0 -19
- 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,
|
|
1
|
+
{"version":3,"file":"wallet.d.ts","sourceRoot":"","sources":["../../src/wallet/wallet.ts"],"names":[],"mappings":"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"}
|
package/dest/wallet/wallet.js
CHANGED
|
@@ -1,23 +1,15 @@
|
|
|
1
1
|
import { BlockNumberPositiveSchema } from '@aztec/foundation/branded-types';
|
|
2
|
-
import { AbiTypeSchema, ContractArtifactSchema,
|
|
2
|
+
import { AbiTypeSchema, ContractArtifactSchema, FunctionCall } from '@aztec/stdlib/abi';
|
|
3
3
|
import { AuthWitness } from '@aztec/stdlib/auth-witness';
|
|
4
|
-
import {
|
|
4
|
+
import { ContractInstanceWithAddressSchema } from '@aztec/stdlib/contract';
|
|
5
5
|
import { Gas } from '@aztec/stdlib/gas';
|
|
6
|
+
import { LogId } from '@aztec/stdlib/logs';
|
|
6
7
|
import { AbiDecodedSchema, optional, schemas, zodFor } from '@aztec/stdlib/schemas';
|
|
7
|
-
import { Capsule, HashedValues, TxHash, TxProfileResult, TxReceipt, TxSimulationResult,
|
|
8
|
+
import { Capsule, HashedValues, TxHash, TxProfileResult, TxReceipt, TxSimulationResult, UtilityExecutionResult, inTxSchema } from '@aztec/stdlib/tx';
|
|
8
9
|
import { z } from 'zod';
|
|
9
|
-
|
|
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
|
-
});
|
|
10
|
+
import { NO_WAIT } from '../contract/interaction_options.js';
|
|
19
11
|
export const ExecutionPayloadSchema = z.object({
|
|
20
|
-
calls: z.array(
|
|
12
|
+
calls: z.array(FunctionCall.schema),
|
|
21
13
|
authWitnesses: z.array(AuthWitness.schema),
|
|
22
14
|
capsules: z.array(Capsule.schema),
|
|
23
15
|
extraHashedArgs: z.array(HashedValues.schema),
|
|
@@ -41,11 +33,22 @@ export const WalletSimulationFeeOptionSchema = GasSettingsOptionSchema.extend({
|
|
|
41
33
|
estimatedGasPadding: optional(z.number()),
|
|
42
34
|
estimateGas: optional(z.boolean())
|
|
43
35
|
});
|
|
36
|
+
export const WaitOptsSchema = z.object({
|
|
37
|
+
ignoreDroppedReceiptsFor: optional(z.number()),
|
|
38
|
+
timeout: optional(z.number()),
|
|
39
|
+
interval: optional(z.number()),
|
|
40
|
+
dontThrowOnRevert: optional(z.boolean())
|
|
41
|
+
});
|
|
44
42
|
export const SendOptionsSchema = z.object({
|
|
45
43
|
from: schemas.AztecAddress,
|
|
46
44
|
authWitnesses: optional(z.array(AuthWitness.schema)),
|
|
47
45
|
capsules: optional(z.array(Capsule.schema)),
|
|
48
|
-
fee: optional(GasSettingsOptionSchema)
|
|
46
|
+
fee: optional(GasSettingsOptionSchema),
|
|
47
|
+
wait: optional(z.union([
|
|
48
|
+
z.literal(NO_WAIT),
|
|
49
|
+
WaitOptsSchema
|
|
50
|
+
])),
|
|
51
|
+
additionalScopes: optional(z.array(schemas.AztecAddress))
|
|
49
52
|
});
|
|
50
53
|
export const SimulateOptionsSchema = z.object({
|
|
51
54
|
from: schemas.AztecAddress,
|
|
@@ -54,7 +57,8 @@ export const SimulateOptionsSchema = z.object({
|
|
|
54
57
|
fee: optional(WalletSimulationFeeOptionSchema),
|
|
55
58
|
skipTxValidation: optional(z.boolean()),
|
|
56
59
|
skipFeeEnforcement: optional(z.boolean()),
|
|
57
|
-
includeMetadata: optional(z.boolean())
|
|
60
|
+
includeMetadata: optional(z.boolean()),
|
|
61
|
+
additionalScopes: optional(z.array(schemas.AztecAddress))
|
|
58
62
|
});
|
|
59
63
|
export const ProfileOptionsSchema = SimulateOptionsSchema.extend({
|
|
60
64
|
profileMode: z.enum([
|
|
@@ -65,97 +69,199 @@ export const ProfileOptionsSchema = SimulateOptionsSchema.extend({
|
|
|
65
69
|
skipProofGeneration: optional(z.boolean())
|
|
66
70
|
});
|
|
67
71
|
export const MessageHashOrIntentSchema = z.union([
|
|
68
|
-
schemas.Fr,
|
|
69
72
|
z.object({
|
|
70
73
|
consumer: schemas.AztecAddress,
|
|
71
74
|
innerHash: schemas.Fr
|
|
72
75
|
}),
|
|
73
76
|
z.object({
|
|
74
77
|
caller: schemas.AztecAddress,
|
|
75
|
-
call:
|
|
76
|
-
})
|
|
77
|
-
]);
|
|
78
|
-
export const BatchedMethodSchema = z.union([
|
|
79
|
-
z.object({
|
|
80
|
-
name: z.literal('registerSender'),
|
|
81
|
-
args: z.tuple([
|
|
82
|
-
schemas.AztecAddress,
|
|
83
|
-
optional(z.string())
|
|
84
|
-
])
|
|
85
|
-
}),
|
|
86
|
-
z.object({
|
|
87
|
-
name: z.literal('registerContract'),
|
|
88
|
-
args: z.tuple([
|
|
89
|
-
ContractInstanceWithAddressSchema,
|
|
90
|
-
optional(ContractArtifactSchema),
|
|
91
|
-
optional(schemas.Fr)
|
|
92
|
-
])
|
|
93
|
-
}),
|
|
94
|
-
z.object({
|
|
95
|
-
name: z.literal('sendTx'),
|
|
96
|
-
args: z.tuple([
|
|
97
|
-
ExecutionPayloadSchema,
|
|
98
|
-
SendOptionsSchema
|
|
99
|
-
])
|
|
100
|
-
}),
|
|
101
|
-
z.object({
|
|
102
|
-
name: z.literal('simulateUtility'),
|
|
103
|
-
args: z.tuple([
|
|
104
|
-
FunctionCallSchema,
|
|
105
|
-
optional(z.array(AuthWitness.schema))
|
|
106
|
-
])
|
|
107
|
-
}),
|
|
108
|
-
z.object({
|
|
109
|
-
name: z.literal('simulateTx'),
|
|
110
|
-
args: z.tuple([
|
|
111
|
-
ExecutionPayloadSchema,
|
|
112
|
-
SimulateOptionsSchema
|
|
113
|
-
])
|
|
78
|
+
call: FunctionCall.schema
|
|
114
79
|
})
|
|
115
80
|
]);
|
|
116
|
-
export const ContractMetadataSchema = zodFor()(z.object({
|
|
117
|
-
contractInstance: z.union([
|
|
118
|
-
ContractInstanceWithAddressSchema,
|
|
119
|
-
z.undefined()
|
|
120
|
-
]),
|
|
121
|
-
isContractInitialized: z.boolean(),
|
|
122
|
-
isContractPublished: z.boolean()
|
|
123
|
-
}));
|
|
124
|
-
export const ContractClassMetadataSchema = zodFor()(z.object({
|
|
125
|
-
contractClass: z.union([
|
|
126
|
-
ContractClassWithIdSchema,
|
|
127
|
-
z.undefined()
|
|
128
|
-
]),
|
|
129
|
-
isContractClassPubliclyRegistered: z.boolean(),
|
|
130
|
-
artifact: z.union([
|
|
131
|
-
ContractArtifactSchema,
|
|
132
|
-
z.undefined()
|
|
133
|
-
])
|
|
134
|
-
}));
|
|
135
81
|
export const EventMetadataDefinitionSchema = z.object({
|
|
136
82
|
eventSelector: schemas.EventSelector,
|
|
137
83
|
abiType: AbiTypeSchema,
|
|
138
84
|
fieldNames: z.array(z.string())
|
|
139
85
|
});
|
|
86
|
+
const EventFilterBaseSchema = z.object({
|
|
87
|
+
txHash: optional(TxHash.schema),
|
|
88
|
+
fromBlock: optional(BlockNumberPositiveSchema),
|
|
89
|
+
toBlock: optional(BlockNumberPositiveSchema),
|
|
90
|
+
afterLog: optional(LogId.schema)
|
|
91
|
+
});
|
|
92
|
+
export const PrivateEventFilterSchema = EventFilterBaseSchema.extend({
|
|
93
|
+
contractAddress: schemas.AztecAddress,
|
|
94
|
+
scopes: z.array(schemas.AztecAddress)
|
|
95
|
+
});
|
|
96
|
+
export const PublicEventFilterSchema = EventFilterBaseSchema.extend({
|
|
97
|
+
contractAddress: optional(schemas.AztecAddress)
|
|
98
|
+
});
|
|
140
99
|
export const PrivateEventSchema = zodFor()(z.object({
|
|
141
100
|
event: AbiDecodedSchema,
|
|
142
101
|
metadata: inTxSchema()
|
|
143
102
|
}));
|
|
144
|
-
export const
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
103
|
+
export const PublicEventSchema = zodFor()(z.object({
|
|
104
|
+
event: AbiDecodedSchema,
|
|
105
|
+
metadata: z.intersection(inTxSchema(), z.object({
|
|
106
|
+
contractAddress: schemas.AztecAddress
|
|
107
|
+
}))
|
|
108
|
+
}));
|
|
109
|
+
export const ContractMetadataSchema = z.object({
|
|
110
|
+
instance: optional(ContractInstanceWithAddressSchema),
|
|
111
|
+
isContractInitialized: z.boolean(),
|
|
112
|
+
isContractPublished: z.boolean(),
|
|
113
|
+
isContractUpdated: z.boolean(),
|
|
114
|
+
updatedContractClassId: optional(schemas.Fr)
|
|
150
115
|
});
|
|
151
|
-
export const
|
|
116
|
+
export const ContractClassMetadataSchema = z.object({
|
|
117
|
+
isArtifactRegistered: z.boolean(),
|
|
118
|
+
isContractClassPubliclyRegistered: z.boolean()
|
|
119
|
+
});
|
|
120
|
+
export const ContractFunctionPatternSchema = z.object({
|
|
121
|
+
contract: z.union([
|
|
122
|
+
schemas.AztecAddress,
|
|
123
|
+
z.literal('*')
|
|
124
|
+
]),
|
|
125
|
+
function: z.union([
|
|
126
|
+
z.string(),
|
|
127
|
+
z.literal('*')
|
|
128
|
+
]),
|
|
129
|
+
additionalScopes: optional(z.union([
|
|
130
|
+
z.array(schemas.AztecAddress),
|
|
131
|
+
z.literal('*')
|
|
132
|
+
]))
|
|
133
|
+
});
|
|
134
|
+
export const AccountsCapabilitySchema = z.object({
|
|
135
|
+
type: z.literal('accounts'),
|
|
136
|
+
canGet: optional(z.boolean()),
|
|
137
|
+
canCreateAuthWit: optional(z.boolean())
|
|
138
|
+
});
|
|
139
|
+
export const GrantedAccountsCapabilitySchema = AccountsCapabilitySchema.extend({
|
|
140
|
+
accounts: z.array(z.object({
|
|
141
|
+
alias: z.string(),
|
|
142
|
+
item: schemas.AztecAddress
|
|
143
|
+
}))
|
|
144
|
+
});
|
|
145
|
+
export const ContractsCapabilitySchema = z.object({
|
|
146
|
+
type: z.literal('contracts'),
|
|
147
|
+
contracts: z.union([
|
|
148
|
+
z.literal('*'),
|
|
149
|
+
z.array(schemas.AztecAddress)
|
|
150
|
+
]),
|
|
151
|
+
canRegister: optional(z.boolean()),
|
|
152
|
+
canGetMetadata: optional(z.boolean())
|
|
153
|
+
});
|
|
154
|
+
export const GrantedContractsCapabilitySchema = ContractsCapabilitySchema;
|
|
155
|
+
export const ContractClassesCapabilitySchema = z.object({
|
|
156
|
+
type: z.literal('contractClasses'),
|
|
157
|
+
classes: z.union([
|
|
158
|
+
z.literal('*'),
|
|
159
|
+
z.array(schemas.Fr)
|
|
160
|
+
]),
|
|
161
|
+
canGetMetadata: z.boolean()
|
|
162
|
+
});
|
|
163
|
+
export const GrantedContractClassesCapabilitySchema = ContractClassesCapabilitySchema;
|
|
164
|
+
export const SimulationCapabilitySchema = z.object({
|
|
165
|
+
type: z.literal('simulation'),
|
|
166
|
+
transactions: optional(z.object({
|
|
167
|
+
scope: z.union([
|
|
168
|
+
z.literal('*'),
|
|
169
|
+
z.array(ContractFunctionPatternSchema)
|
|
170
|
+
])
|
|
171
|
+
})),
|
|
172
|
+
utilities: optional(z.object({
|
|
173
|
+
scope: z.union([
|
|
174
|
+
z.literal('*'),
|
|
175
|
+
z.array(ContractFunctionPatternSchema)
|
|
176
|
+
])
|
|
177
|
+
}))
|
|
178
|
+
});
|
|
179
|
+
export const GrantedSimulationCapabilitySchema = SimulationCapabilitySchema;
|
|
180
|
+
export const TransactionCapabilitySchema = z.object({
|
|
181
|
+
type: z.literal('transaction'),
|
|
182
|
+
scope: z.union([
|
|
183
|
+
z.literal('*'),
|
|
184
|
+
z.array(ContractFunctionPatternSchema)
|
|
185
|
+
])
|
|
186
|
+
});
|
|
187
|
+
export const GrantedTransactionCapabilitySchema = TransactionCapabilitySchema;
|
|
188
|
+
export const DataCapabilitySchema = z.object({
|
|
189
|
+
type: z.literal('data'),
|
|
190
|
+
addressBook: optional(z.boolean()),
|
|
191
|
+
privateEvents: optional(z.object({
|
|
192
|
+
contracts: z.union([
|
|
193
|
+
z.literal('*'),
|
|
194
|
+
z.array(schemas.AztecAddress)
|
|
195
|
+
])
|
|
196
|
+
}))
|
|
197
|
+
});
|
|
198
|
+
export const GrantedDataCapabilitySchema = DataCapabilitySchema;
|
|
199
|
+
export const CapabilitySchema = z.discriminatedUnion('type', [
|
|
200
|
+
AccountsCapabilitySchema,
|
|
201
|
+
ContractsCapabilitySchema,
|
|
202
|
+
ContractClassesCapabilitySchema,
|
|
203
|
+
SimulationCapabilitySchema,
|
|
204
|
+
TransactionCapabilitySchema,
|
|
205
|
+
DataCapabilitySchema
|
|
206
|
+
]);
|
|
207
|
+
export const GrantedCapabilitySchema = z.discriminatedUnion('type', [
|
|
208
|
+
GrantedAccountsCapabilitySchema,
|
|
209
|
+
GrantedContractsCapabilitySchema,
|
|
210
|
+
GrantedContractClassesCapabilitySchema,
|
|
211
|
+
GrantedSimulationCapabilitySchema,
|
|
212
|
+
GrantedTransactionCapabilitySchema,
|
|
213
|
+
GrantedDataCapabilitySchema
|
|
214
|
+
]);
|
|
215
|
+
export const AppCapabilitiesSchema = z.object({
|
|
216
|
+
version: z.literal('1.0'),
|
|
217
|
+
metadata: z.object({
|
|
218
|
+
name: z.string(),
|
|
219
|
+
version: z.string(),
|
|
220
|
+
description: optional(z.string()),
|
|
221
|
+
url: optional(z.string()),
|
|
222
|
+
icon: optional(z.string())
|
|
223
|
+
}),
|
|
224
|
+
capabilities: z.array(CapabilitySchema),
|
|
225
|
+
behavior: optional(z.object({
|
|
226
|
+
mode: optional(z.enum([
|
|
227
|
+
'strict',
|
|
228
|
+
'permissive'
|
|
229
|
+
])),
|
|
230
|
+
expiration: optional(z.number())
|
|
231
|
+
}))
|
|
232
|
+
});
|
|
233
|
+
export const WalletCapabilitiesSchema = z.object({
|
|
234
|
+
version: z.literal('1.0'),
|
|
235
|
+
granted: z.array(GrantedCapabilitySchema),
|
|
236
|
+
wallet: z.object({
|
|
237
|
+
name: z.string(),
|
|
238
|
+
version: z.string()
|
|
239
|
+
}),
|
|
240
|
+
expiresAt: optional(z.number())
|
|
241
|
+
});
|
|
242
|
+
const OffchainEffectSchema = z.object({
|
|
243
|
+
data: z.array(schemas.Fr),
|
|
244
|
+
contractAddress: schemas.AztecAddress
|
|
245
|
+
});
|
|
246
|
+
const OffchainMessageSchema = z.object({
|
|
247
|
+
recipient: schemas.AztecAddress,
|
|
248
|
+
payload: z.array(schemas.Fr),
|
|
249
|
+
contractAddress: schemas.AztecAddress
|
|
250
|
+
});
|
|
251
|
+
const OffchainOutputSchema = z.object({
|
|
252
|
+
offchainEffects: z.array(OffchainEffectSchema),
|
|
253
|
+
offchainMessages: z.array(OffchainMessageSchema)
|
|
254
|
+
});
|
|
255
|
+
/**
|
|
256
|
+
* Record of all wallet method schemas (excluding batch).
|
|
257
|
+
* This is the single source of truth for method schemas - batch schemas are derived from this.
|
|
258
|
+
*/ const WalletMethodSchemas = {
|
|
152
259
|
getChainInfo: z.function().args().returns(z.object({
|
|
153
260
|
chainId: schemas.Fr,
|
|
154
261
|
version: schemas.Fr
|
|
155
262
|
})),
|
|
156
|
-
getContractClassMetadata: z.function().args(schemas.Fr, optional(z.boolean())).returns(ContractClassMetadataSchema),
|
|
157
263
|
getContractMetadata: z.function().args(schemas.AztecAddress).returns(ContractMetadataSchema),
|
|
158
|
-
|
|
264
|
+
getContractClassMetadata: z.function().args(schemas.Fr).returns(ContractClassMetadataSchema),
|
|
159
265
|
getPrivateEvents: z.function().args(EventMetadataDefinitionSchema, PrivateEventFilterSchema).returns(z.array(PrivateEventSchema)),
|
|
160
266
|
registerSender: z.function().args(schemas.AztecAddress, optional(z.string())).returns(schemas.AztecAddress),
|
|
161
267
|
getAddressBook: z.function().args().returns(z.array(z.object({
|
|
@@ -168,31 +274,47 @@ export const WalletSchema = {
|
|
|
168
274
|
}))),
|
|
169
275
|
registerContract: z.function().args(ContractInstanceWithAddressSchema, optional(ContractArtifactSchema), optional(schemas.Fr)).returns(ContractInstanceWithAddressSchema),
|
|
170
276
|
simulateTx: z.function().args(ExecutionPayloadSchema, SimulateOptionsSchema).returns(TxSimulationResult.schema),
|
|
171
|
-
|
|
277
|
+
executeUtility: z.function().args(FunctionCall.schema, z.object({
|
|
278
|
+
scope: schemas.AztecAddress,
|
|
279
|
+
authWitnesses: optional(z.array(AuthWitness.schema))
|
|
280
|
+
})).returns(UtilityExecutionResult.schema),
|
|
172
281
|
profileTx: z.function().args(ExecutionPayloadSchema, ProfileOptionsSchema).returns(TxProfileResult.schema),
|
|
173
|
-
sendTx: z.function().args(ExecutionPayloadSchema, SendOptionsSchema).returns(
|
|
174
|
-
createAuthWit: z.function().args(schemas.AztecAddress, MessageHashOrIntentSchema).returns(AuthWitness.schema),
|
|
175
|
-
// @ts-expect-error - ApiSchemaFor cannot properly type generic methods with readonly arrays
|
|
176
|
-
batch: z.function().args(z.array(BatchedMethodSchema)).returns(z.array(z.discriminatedUnion('name', [
|
|
177
|
-
z.object({
|
|
178
|
-
name: z.literal('registerSender'),
|
|
179
|
-
result: schemas.AztecAddress
|
|
180
|
-
}),
|
|
181
|
-
z.object({
|
|
182
|
-
name: z.literal('registerContract'),
|
|
183
|
-
result: ContractInstanceWithAddressSchema
|
|
184
|
-
}),
|
|
282
|
+
sendTx: z.function().args(ExecutionPayloadSchema, SendOptionsSchema).returns(z.union([
|
|
185
283
|
z.object({
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
}),
|
|
284
|
+
txHash: TxHash.schema
|
|
285
|
+
}).merge(OffchainOutputSchema),
|
|
189
286
|
z.object({
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
287
|
+
receipt: TxReceipt.schema
|
|
288
|
+
}).merge(OffchainOutputSchema)
|
|
289
|
+
])),
|
|
290
|
+
createAuthWit: z.function().args(schemas.AztecAddress, MessageHashOrIntentSchema).returns(AuthWitness.schema),
|
|
291
|
+
requestCapabilities: z.function().args(AppCapabilitiesSchema).returns(WalletCapabilitiesSchema)
|
|
292
|
+
};
|
|
293
|
+
/**
|
|
294
|
+
* Creates batch schemas from the individual wallet methods.
|
|
295
|
+
* This allows us to define them once and derive batch schemas automatically,
|
|
296
|
+
* reducing duplication and ensuring consistency.
|
|
297
|
+
*/ function createBatchSchemas(methodSchemas) {
|
|
298
|
+
const names = Object.keys(methodSchemas);
|
|
299
|
+
const namesAndArgs = names.map((name)=>z.object({
|
|
300
|
+
name: z.literal(name),
|
|
301
|
+
args: methodSchemas[name].parameters()
|
|
302
|
+
}));
|
|
303
|
+
const namesAndReturns = names.map((name)=>z.object({
|
|
304
|
+
name: z.literal(name),
|
|
305
|
+
result: methodSchemas[name].returnType()
|
|
306
|
+
}));
|
|
307
|
+
// Type assertion needed because discriminatedUnion expects a tuple type [T, T, ...T[]]
|
|
308
|
+
// but we're building the array dynamically. The runtime behavior is correct.
|
|
309
|
+
return {
|
|
310
|
+
input: z.discriminatedUnion('name', namesAndArgs),
|
|
311
|
+
output: z.discriminatedUnion('name', namesAndReturns)
|
|
312
|
+
};
|
|
313
|
+
}
|
|
314
|
+
const { input: BatchedMethodSchema, output: BatchedResultSchema } = createBatchSchemas(WalletMethodSchemas);
|
|
315
|
+
export { BatchedMethodSchema, BatchedResultSchema };
|
|
316
|
+
export const WalletSchema = {
|
|
317
|
+
...WalletMethodSchemas,
|
|
318
|
+
// @ts-expect-error - ApiSchemaFor cannot properly type generic methods with readonly arrays
|
|
319
|
+
batch: z.function().args(z.array(BatchedMethodSchema)).returns(z.array(BatchedResultSchema))
|
|
198
320
|
};
|
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.
|
|
4
|
+
"version": "0.0.1-commit.04852196a",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
7
7
|
"./abi": "./dest/api/abi.js",
|
|
@@ -30,16 +30,26 @@
|
|
|
30
30
|
},
|
|
31
31
|
"typedocOptions": {
|
|
32
32
|
"entryPoints": [
|
|
33
|
-
"./src/
|
|
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"
|
|
37
46
|
},
|
|
38
47
|
"scripts": {
|
|
39
|
-
"build": "yarn clean && ../scripts/tsc.sh",
|
|
48
|
+
"build": "yarn clean && yarn generate && ../scripts/tsc.sh",
|
|
40
49
|
"build:dev": "../scripts/tsc.sh --watch",
|
|
41
|
-
"build:ts": "
|
|
42
|
-
"clean": "rm -rf ./dest .tsbuildinfo ./src/account_contract/artifacts",
|
|
50
|
+
"build:ts": "../scripts/tsc.sh",
|
|
51
|
+
"clean": "rm -rf ./dest .tsbuildinfo ./src/account_contract/artifacts ./src/contract/protocol_contracts",
|
|
52
|
+
"generate": "node --no-warnings --loader @swc-node/register/esm src/scripts/generate_protocol_contract_types.ts && run -T prettier -w src/contract/protocol_contracts",
|
|
43
53
|
"test": "NODE_NO_WARNINGS=1 node --experimental-vm-modules ../node_modules/.bin/jest --passWithNoTests --maxWorkers=${JEST_MAX_WORKERS:-8}"
|
|
44
54
|
},
|
|
45
55
|
"inherits": [
|
|
@@ -84,23 +94,24 @@
|
|
|
84
94
|
]
|
|
85
95
|
},
|
|
86
96
|
"dependencies": {
|
|
87
|
-
"@aztec/constants": "0.0.1-commit.
|
|
88
|
-
"@aztec/entrypoints": "0.0.1-commit.
|
|
89
|
-
"@aztec/ethereum": "0.0.1-commit.
|
|
90
|
-
"@aztec/foundation": "0.0.1-commit.
|
|
91
|
-
"@aztec/l1-artifacts": "0.0.1-commit.
|
|
92
|
-
"@aztec/protocol-contracts": "0.0.1-commit.
|
|
93
|
-
"@aztec/stdlib": "0.0.1-commit.
|
|
94
|
-
"axios": "^1.
|
|
97
|
+
"@aztec/constants": "0.0.1-commit.04852196a",
|
|
98
|
+
"@aztec/entrypoints": "0.0.1-commit.04852196a",
|
|
99
|
+
"@aztec/ethereum": "0.0.1-commit.04852196a",
|
|
100
|
+
"@aztec/foundation": "0.0.1-commit.04852196a",
|
|
101
|
+
"@aztec/l1-artifacts": "0.0.1-commit.04852196a",
|
|
102
|
+
"@aztec/protocol-contracts": "0.0.1-commit.04852196a",
|
|
103
|
+
"@aztec/stdlib": "0.0.1-commit.04852196a",
|
|
104
|
+
"axios": "^1.13.5",
|
|
95
105
|
"tslib": "^2.4.0",
|
|
96
106
|
"viem": "npm:@aztec/viem@2.38.2",
|
|
97
107
|
"zod": "^3.23.8"
|
|
98
108
|
},
|
|
99
109
|
"devDependencies": {
|
|
110
|
+
"@aztec/builder": "0.0.1-commit.04852196a",
|
|
100
111
|
"@jest/globals": "^30.0.0",
|
|
101
112
|
"@types/jest": "^30.0.0",
|
|
102
113
|
"@types/node": "^22.15.17",
|
|
103
|
-
"@typescript/native-preview": "7.0.0-dev.
|
|
114
|
+
"@typescript/native-preview": "7.0.0-dev.20260113.1",
|
|
104
115
|
"buffer": "^6.0.3",
|
|
105
116
|
"crypto-browserify": "^3.12.1",
|
|
106
117
|
"jest": "^30.0.0",
|
package/src/account/account.ts
CHANGED
|
@@ -1,96 +1,72 @@
|
|
|
1
1
|
import type { DefaultAccountEntrypointOptions } from '@aztec/entrypoints/account';
|
|
2
|
-
import {
|
|
2
|
+
import type { AuthWitnessProvider, ChainInfo, EntrypointInterface } from '@aztec/entrypoints/interfaces';
|
|
3
3
|
import { AuthWitness } from '@aztec/stdlib/auth-witness';
|
|
4
|
+
import type { AztecAddress } from '@aztec/stdlib/aztec-address';
|
|
5
|
+
import type { CompleteAddress } from '@aztec/stdlib/contract';
|
|
4
6
|
import type { GasSettings } from '@aztec/stdlib/gas';
|
|
5
7
|
import type { ExecutionPayload, TxExecutionRequest } from '@aztec/stdlib/tx';
|
|
6
8
|
|
|
7
9
|
import { type CallIntent, type IntentInnerHash, computeAuthWitMessageHash } from '../utils/authwit.js';
|
|
8
|
-
import type { AccountInterface } from './interface.js';
|
|
9
10
|
|
|
10
11
|
/**
|
|
11
|
-
*
|
|
12
|
-
* with an intent as input, as opposed to just a precomputed inner hash
|
|
12
|
+
* Provides authorization for actions via the AuthWitness mechanism.
|
|
13
13
|
*/
|
|
14
|
-
interface
|
|
14
|
+
export interface AuthorizationProvider {
|
|
15
15
|
/**
|
|
16
|
-
* Creates
|
|
17
|
-
* during function execution
|
|
16
|
+
* Creates an authentication witness from an inner hash with consumer, or a call intent
|
|
18
17
|
* @param intent - The action (or inner hash) to authorize
|
|
18
|
+
* @param chainInfo - Chain information needed for message hash computation
|
|
19
19
|
*/
|
|
20
|
-
createAuthWit(intent: IntentInnerHash | CallIntent
|
|
20
|
+
createAuthWit(intent: IntentInnerHash | CallIntent, chainInfo: ChainInfo): Promise<AuthWitness>;
|
|
21
21
|
}
|
|
22
22
|
|
|
23
|
+
// docs:start:account-interface
|
|
23
24
|
/**
|
|
24
|
-
*
|
|
25
|
-
* to authenticate transaction execution requests.
|
|
25
|
+
* Minimal interface for transaction execution and authorization.
|
|
26
26
|
*/
|
|
27
|
-
export type Account =
|
|
27
|
+
export type Account = EntrypointInterface &
|
|
28
|
+
AuthorizationProvider & {
|
|
29
|
+
/** Returns the complete address for this account. */
|
|
30
|
+
getCompleteAddress(): CompleteAddress;
|
|
31
|
+
/** Returns the address for this account. */
|
|
32
|
+
getAddress(): AztecAddress;
|
|
33
|
+
};
|
|
34
|
+
// docs:end:account-interface
|
|
28
35
|
|
|
29
36
|
/**
|
|
30
37
|
* An account implementation that uses authwits as an authentication mechanism
|
|
31
38
|
* and can assemble transaction execution requests for an entrypoint.
|
|
32
39
|
*/
|
|
33
40
|
export class BaseAccount implements Account {
|
|
34
|
-
constructor(
|
|
41
|
+
constructor(
|
|
42
|
+
private entrypoint: EntrypointInterface,
|
|
43
|
+
private authWitnessProvider: AuthWitnessProvider,
|
|
44
|
+
private completeAddress: CompleteAddress,
|
|
45
|
+
) {}
|
|
35
46
|
|
|
36
47
|
createTxExecutionRequest(
|
|
37
48
|
exec: ExecutionPayload,
|
|
38
49
|
gasSettings: GasSettings,
|
|
50
|
+
chainInfo: ChainInfo,
|
|
39
51
|
options: DefaultAccountEntrypointOptions,
|
|
40
52
|
): Promise<TxExecutionRequest> {
|
|
41
|
-
return this.
|
|
53
|
+
return this.entrypoint.createTxExecutionRequest(exec, gasSettings, chainInfo, options);
|
|
42
54
|
}
|
|
43
55
|
|
|
44
|
-
|
|
45
|
-
return this.
|
|
56
|
+
wrapExecutionPayload(exec: ExecutionPayload, options?: any): Promise<ExecutionPayload> {
|
|
57
|
+
return this.entrypoint.wrapExecutionPayload(exec, options);
|
|
46
58
|
}
|
|
47
59
|
|
|
48
|
-
|
|
49
|
-
|
|
60
|
+
async createAuthWit(messageHashOrIntent: CallIntent | IntentInnerHash, chainInfo: ChainInfo): Promise<AuthWitness> {
|
|
61
|
+
const messageHash = await computeAuthWitMessageHash(messageHashOrIntent, chainInfo);
|
|
62
|
+
return this.authWitnessProvider.createAuthWit(messageHash);
|
|
50
63
|
}
|
|
51
64
|
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
return this.account.getCompleteAddress();
|
|
65
|
+
getCompleteAddress(): CompleteAddress {
|
|
66
|
+
return this.completeAddress;
|
|
55
67
|
}
|
|
56
68
|
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
return this.getCompleteAddress().address;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
/**
|
|
63
|
-
* Computes an authentication witness from either a message hash or an intent.
|
|
64
|
-
*
|
|
65
|
-
* If a message hash is provided, it will create a witness for the hash directly.
|
|
66
|
-
* Otherwise, it will compute the message hash using the intent, along with the
|
|
67
|
-
* chain id and the version values provided by the wallet.
|
|
68
|
-
*
|
|
69
|
-
* @param messageHashOrIntent - The message hash of the intent to approve
|
|
70
|
-
* @returns The authentication witness
|
|
71
|
-
*/
|
|
72
|
-
async createAuthWit(messageHashOrIntent: Fr | Buffer | CallIntent | IntentInnerHash): Promise<AuthWitness> {
|
|
73
|
-
let messageHash: Fr;
|
|
74
|
-
if (Buffer.isBuffer(messageHashOrIntent)) {
|
|
75
|
-
messageHash = Fr.fromBuffer(messageHashOrIntent);
|
|
76
|
-
} else if (messageHashOrIntent instanceof Fr) {
|
|
77
|
-
messageHash = messageHashOrIntent;
|
|
78
|
-
} else {
|
|
79
|
-
messageHash = await this.getMessageHash(messageHashOrIntent);
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
return this.account.createAuthWit(messageHash);
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
/**
|
|
86
|
-
* Returns the message hash for the given intent
|
|
87
|
-
*
|
|
88
|
-
* @param intent - A tuple of (consumer and inner hash) or (caller and action)
|
|
89
|
-
* @returns The message hash
|
|
90
|
-
*/
|
|
91
|
-
private getMessageHash(intent: IntentInnerHash | CallIntent): Promise<Fr> {
|
|
92
|
-
const chainId = this.getChainId();
|
|
93
|
-
const version = this.getVersion();
|
|
94
|
-
return computeAuthWitMessageHash(intent, { chainId, version });
|
|
69
|
+
getAddress(): AztecAddress {
|
|
70
|
+
return this.completeAddress.address;
|
|
95
71
|
}
|
|
96
72
|
}
|