Skip to content

Commit abc7dc5

Browse files
committed
wasm, core: impl external key create order action
1 parent 9c4d434 commit abc7dc5

File tree

3 files changed

+43
-24
lines changed

3 files changed

+43
-24
lines changed

packages/core/src/actions/createOrder.ts

+22-11
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import invariant from 'tiny-invariant'
22
import { type Address, type Hex, toHex } from 'viem'
33
import { WALLET_ORDERS_ROUTE } from '../constants.js'
4-
import type { Config } from '../createConfig.js'
4+
import type { RenegadeConfig } from '../createConfig.js'
55
import type { BaseErrorType } from '../errors/base.js'
66
import { stringifyForWasm } from '../utils/bigJSON.js'
77
import { postRelayerWithAuth } from '../utils/http.js'
@@ -25,7 +25,7 @@ export type CreateOrderReturnType = { taskId: string }
2525
export type CreateOrderErrorType = BaseErrorType
2626

2727
export async function createOrder(
28-
config: Config,
28+
config: RenegadeConfig,
2929
parameters: CreateOrderParameters,
3030
): Promise<CreateOrderReturnType> {
3131
const {
@@ -39,19 +39,29 @@ export async function createOrder(
3939
allowExternalMatches = false,
4040
newPublicKey,
4141
} = parameters
42-
const {
43-
getBaseUrl,
44-
utils,
45-
state: { seed },
46-
renegadeKeyType,
47-
} = config
48-
invariant(seed, 'Seed is required')
42+
const { getBaseUrl, utils, renegadeKeyType } = config
4943

5044
const walletId = getWalletId(config)
5145
const wallet = await getBackOfQueueWallet(config)
5246

53-
const body = utils.new_order(
54-
seed,
47+
const seed = renegadeKeyType === 'internal' ? config.state.seed : undefined
48+
const signMessage =
49+
renegadeKeyType === 'external' ? config.signMessage : undefined
50+
51+
// TODO: Add invariants to other actions
52+
if (renegadeKeyType === 'external') {
53+
invariant(
54+
signMessage !== undefined,
55+
'Sign message function is required for external key type',
56+
)
57+
}
58+
if (renegadeKeyType === 'internal') {
59+
invariant(seed !== undefined, 'Seed is required for internal key type')
60+
}
61+
62+
const body = await utils.new_order(
63+
// TODO: Change Rust to accept Option<String>
64+
seed ?? '',
5565
stringifyForWasm(wallet),
5666
id,
5767
base,
@@ -63,6 +73,7 @@ export async function createOrder(
6373
allowExternalMatches,
6474
renegadeKeyType,
6575
newPublicKey,
76+
signMessage,
6677
)
6778

6879
try {

packages/core/src/utils.d.ts

+6-4
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,10 @@ export function withdraw(seed: string, wallet_str: string, mint: string, amount:
6060
* @param {boolean} allow_external_matches
6161
* @param {string} key_type
6262
* @param {string | undefined} [new_public_key]
63-
* @returns {any}
63+
* @param {Function | undefined} [sign_message]
64+
* @returns {Promise<any>}
6465
*/
65-
export function new_order(seed: string, wallet_str: string, id: string, base_mint: string, quote_mint: string, side: string, amount: string, worst_case_price: string, min_fill_size: string, allow_external_matches: boolean, key_type: string, new_public_key?: string): any;
66+
export function new_order(seed: string, wallet_str: string, id: string, base_mint: string, quote_mint: string, side: string, amount: string, worst_case_price: string, min_fill_size: string, allow_external_matches: boolean, key_type: string, new_public_key?: string, sign_message?: Function): Promise<any>;
6667
/**
6768
* @param {string} seed
6869
* @param {string} wallet_str
@@ -77,9 +78,10 @@ export function new_order(seed: string, wallet_str: string, id: string, base_min
7778
* @param {string} matching_pool
7879
* @param {string} key_type
7980
* @param {string | undefined} [new_public_key]
80-
* @returns {any}
81+
* @param {Function | undefined} [sign_message]
82+
* @returns {Promise<any>}
8183
*/
82-
export function new_order_in_matching_pool(seed: string, wallet_str: string, id: string, base_mint: string, quote_mint: string, side: string, amount: string, worst_case_price: string, min_fill_size: string, allow_external_matches: boolean, matching_pool: string, key_type: string, new_public_key?: string): any;
84+
export function new_order_in_matching_pool(seed: string, wallet_str: string, id: string, base_mint: string, quote_mint: string, side: string, amount: string, worst_case_price: string, min_fill_size: string, allow_external_matches: boolean, matching_pool: string, key_type: string, new_public_key?: string, sign_message?: Function): Promise<any>;
8385
/**
8486
* @param {string} seed
8587
* @param {string} wallet_str

wasm/src/external_api/http.rs

+15-9
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,7 @@ fn create_order(
366366
})
367367
}
368368

369-
pub fn create_order_request(
369+
pub async fn create_order_request(
370370
seed: &str,
371371
wallet_str: &str,
372372
id: &str,
@@ -379,9 +379,9 @@ pub fn create_order_request(
379379
allow_external_matches: bool,
380380
key_type: &str,
381381
new_public_key: Option<String>,
382+
sign_message: Option<Function>,
382383
) -> Result<CreateOrderRequest, JsError> {
383384
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);
385385

386386
let next_public_key = wrap_eyre!(handle_key_rotation(
387387
&mut new_wallet,
@@ -407,19 +407,20 @@ pub fn create_order_request(
407407
new_wallet.reblind_wallet();
408408

409409
// 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()))?;
412413

413414
let update_auth = WalletUpdateAuthorization {
414-
statement_sig: sig.to_vec(),
415+
statement_sig,
415416
new_root_key: next_public_key,
416417
};
417418

418419
Ok(CreateOrderRequest { order, update_auth })
419420
}
420421

421422
#[wasm_bindgen]
422-
pub fn new_order(
423+
pub async fn new_order(
423424
seed: &str,
424425
wallet_str: &str,
425426
id: &str,
@@ -432,6 +433,7 @@ pub fn new_order(
432433
allow_external_matches: bool,
433434
key_type: &str,
434435
new_public_key: Option<String>,
436+
sign_message: Option<Function>,
435437
) -> Result<JsValue, JsError> {
436438
let req = create_order_request(
437439
seed,
@@ -446,12 +448,14 @@ pub fn new_order(
446448
allow_external_matches,
447449
key_type,
448450
new_public_key,
449-
)?;
451+
sign_message,
452+
)
453+
.await?;
450454
Ok(JsValue::from_str(&serde_json::to_string(&req).unwrap()))
451455
}
452456

453457
#[wasm_bindgen]
454-
pub fn new_order_in_matching_pool(
458+
pub async fn new_order_in_matching_pool(
455459
seed: &str,
456460
wallet_str: &str,
457461
id: &str,
@@ -465,6 +469,7 @@ pub fn new_order_in_matching_pool(
465469
matching_pool: &str,
466470
key_type: &str,
467471
new_public_key: Option<String>,
472+
sign_message: Option<Function>,
468473
) -> Result<JsValue, JsError> {
469474
let create_order_req = create_order_request(
470475
seed,
@@ -479,7 +484,8 @@ pub fn new_order_in_matching_pool(
479484
allow_external_matches,
480485
key_type,
481486
new_public_key,
482-
)?;
487+
sign_message,
488+
).await?;
483489
let req = CreateOrderInMatchingPoolRequest {
484490
order: create_order_req.order,
485491
update_auth: create_order_req.update_auth,

0 commit comments

Comments
 (0)