File tree 3 files changed +10
-3
lines changed
3 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 2
2
"packages" : [
3
3
" packages/*"
4
4
],
5
- "version" : " 5.6.3 " ,
5
+ "version" : " 5.6.4-alpha.0 " ,
6
6
"$schema" : " node_modules/lerna/schemas/lerna-schema.json"
7
7
}
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @streamflow/stream" ,
3
- "version" : " 5.6.3 " ,
3
+ "version" : " 5.6.4-alpha.0 " ,
4
4
"description" : " JavaScript SDK to interact with Streamflow protocol." ,
5
5
"main" : " dist/index.js" ,
6
6
"homepage" : " https://github.com/streamflow-finance/js-sdk/" ,
Original file line number Diff line number Diff line change @@ -193,7 +193,14 @@ export async function signAllTransactionWithRecipients(
193
193
return { tx : t . tx , recipient : t . recipient } ;
194
194
} ) ;
195
195
} else if ( isWallet ) {
196
- const signedTxs = await sender . signAllTransactions ( items . map ( ( t ) => t . tx ) ) ;
196
+ const signedTxs =
197
+ sender . name === "SquadsX"
198
+ ? await Promise . all (
199
+ items . map ( ( t ) => {
200
+ return sender . signTransaction ( t . tx ) ;
201
+ } )
202
+ )
203
+ : await sender . signAllTransactions ( items . map ( ( t ) => t . tx ) ) ;
197
204
return items . map ( ( item , index ) => ( {
198
205
...item ,
199
206
tx : signedTxs [ index ] ,
You can’t perform that action at this time.
0 commit comments