@@ -19,6 +19,20 @@ export type EngineAccountOptions = {
19
19
* The backend wallet to use for sending transactions inside engine.
20
20
*/
21
21
walletAddress : string ;
22
+ overrides ?: {
23
+ /**
24
+ * The address of the smart account to act on behalf of. Requires your backend wallet to be a valid signer on that smart account.
25
+ */
26
+ accountAddress ?: string ;
27
+ /**
28
+ * The address of the smart account factory to use for creating smart accounts.
29
+ */
30
+ accountFactoryAddress ?: string ;
31
+ /**
32
+ * The salt to use for creating the smart account.
33
+ */
34
+ accountSalt ?: Hex ;
35
+ } ;
22
36
/**
23
37
* The chain to use for signing messages and typed data (smart backend wallet only).
24
38
*/
@@ -55,7 +69,7 @@ export type EngineAccountOptions = {
55
69
* ```
56
70
*/
57
71
export function engineAccount ( options : EngineAccountOptions ) : Account {
58
- const { engineUrl, authToken, walletAddress, chain } = options ;
72
+ const { engineUrl, authToken, walletAddress, chain, overrides } = options ;
59
73
60
74
// these are shared across all methods
61
75
const headers : HeadersInit = {
@@ -64,6 +78,16 @@ export function engineAccount(options: EngineAccountOptions): Account {
64
78
"Content-Type" : "application/json" ,
65
79
} ;
66
80
81
+ if ( overrides ?. accountAddress ) {
82
+ headers [ "x-account-address" ] = overrides . accountAddress ;
83
+ }
84
+ if ( overrides ?. accountFactoryAddress ) {
85
+ headers [ "x-account-factory-address" ] = overrides . accountFactoryAddress ;
86
+ }
87
+ if ( overrides ?. accountSalt ) {
88
+ headers [ "x-account-salt" ] = overrides . accountSalt ;
89
+ }
90
+
67
91
return {
68
92
address : walletAddress ,
69
93
sendTransaction : async ( transaction : SendTransactionOption ) => {
@@ -181,12 +205,14 @@ export function engineAccount(options: EngineAccountOptions): Account {
181
205
domain : _typedData . domain ,
182
206
types : _typedData . types ,
183
207
value : _typedData . message ,
208
+ primaryType : _typedData . primaryType ,
209
+ chainId : chain ?. id ,
184
210
} ) ,
185
211
} ) ;
186
212
if ( ! engineRes . ok ) {
187
- engineRes . body ?. cancel ( ) ;
213
+ const body = await engineRes . text ( ) ;
188
214
throw new Error (
189
- `Engine request failed with status ${ engineRes . status } ` ,
215
+ `Engine request failed with status ${ engineRes . status } - ${ body } ` ,
190
216
) ;
191
217
}
192
218
const engineJson = ( await engineRes . json ( ) ) as {
0 commit comments