@@ -366,7 +366,7 @@ fn create_order(
366
366
} )
367
367
}
368
368
369
- pub fn create_order_request (
369
+ pub async fn create_order_request (
370
370
seed : & str ,
371
371
wallet_str : & str ,
372
372
id : & str ,
@@ -379,9 +379,9 @@ pub fn create_order_request(
379
379
allow_external_matches : bool ,
380
380
key_type : & str ,
381
381
new_public_key : Option < String > ,
382
+ sign_message : Option < Function > ,
382
383
) -> Result < CreateOrderRequest , JsError > {
383
384
let mut new_wallet = deserialize_wallet ( wallet_str) ;
384
- let old_sk_root = derive_sk_root_scalars ( seed, & new_wallet. key_chain . public_keys . nonce ) ;
385
385
386
386
let next_public_key = wrap_eyre ! ( handle_key_rotation(
387
387
& mut new_wallet,
@@ -407,19 +407,20 @@ pub fn create_order_request(
407
407
new_wallet. reblind_wallet ( ) ;
408
408
409
409
// Sign a commitment to the new shares
410
- let comm = new_wallet. get_wallet_share_commitment ( ) ;
411
- let sig = wrap_eyre ! ( sign_commitment( & old_sk_root, comm) ) . unwrap ( ) ;
410
+ let statement_sig = sign_wallet_commitment ( & new_wallet, seed, key_type, sign_message. as_ref ( ) )
411
+ . await
412
+ . map_err ( |e| JsError :: new ( & e. to_string ( ) ) ) ?;
412
413
413
414
let update_auth = WalletUpdateAuthorization {
414
- statement_sig : sig . to_vec ( ) ,
415
+ statement_sig,
415
416
new_root_key : next_public_key,
416
417
} ;
417
418
418
419
Ok ( CreateOrderRequest { order, update_auth } )
419
420
}
420
421
421
422
#[ wasm_bindgen]
422
- pub fn new_order (
423
+ pub async fn new_order (
423
424
seed : & str ,
424
425
wallet_str : & str ,
425
426
id : & str ,
@@ -432,6 +433,7 @@ pub fn new_order(
432
433
allow_external_matches : bool ,
433
434
key_type : & str ,
434
435
new_public_key : Option < String > ,
436
+ sign_message : Option < Function > ,
435
437
) -> Result < JsValue , JsError > {
436
438
let req = create_order_request (
437
439
seed,
@@ -446,12 +448,14 @@ pub fn new_order(
446
448
allow_external_matches,
447
449
key_type,
448
450
new_public_key,
449
- ) ?;
451
+ sign_message,
452
+ )
453
+ . await ?;
450
454
Ok ( JsValue :: from_str ( & serde_json:: to_string ( & req) . unwrap ( ) ) )
451
455
}
452
456
453
457
#[ wasm_bindgen]
454
- pub fn new_order_in_matching_pool (
458
+ pub async fn new_order_in_matching_pool (
455
459
seed : & str ,
456
460
wallet_str : & str ,
457
461
id : & str ,
@@ -465,6 +469,7 @@ pub fn new_order_in_matching_pool(
465
469
matching_pool : & str ,
466
470
key_type : & str ,
467
471
new_public_key : Option < String > ,
472
+ sign_message : Option < Function > ,
468
473
) -> Result < JsValue , JsError > {
469
474
let create_order_req = create_order_request (
470
475
seed,
@@ -479,7 +484,8 @@ pub fn new_order_in_matching_pool(
479
484
allow_external_matches,
480
485
key_type,
481
486
new_public_key,
482
- ) ?;
487
+ sign_message,
488
+ ) . await ?;
483
489
let req = CreateOrderInMatchingPoolRequest {
484
490
order : create_order_req. order ,
485
491
update_auth : create_order_req. update_auth ,
0 commit comments