@triadxyz/triad-protocol 2.8.8-beta → 2.8.9-beta
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/dist/index.d.ts +1 -1
- package/dist/index.js +1 -6
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -430,7 +430,7 @@ export default class TriadProtocolClient {
|
|
|
430
430
|
*
|
|
431
431
|
* @param options - RPC options
|
|
432
432
|
*/
|
|
433
|
-
marketBidOrder({ marketId, amount, direction, mint, feeBps, isTrdPayout }: MarketBidOrderArgs, options?: RpcOptions): Promise<
|
|
433
|
+
marketBidOrder({ marketId, amount, direction, mint, feeBps, isTrdPayout }: MarketBidOrderArgs, options?: RpcOptions): Promise<string>;
|
|
434
434
|
/**
|
|
435
435
|
* Market Ask Order
|
|
436
436
|
* @param args.marketId - The ID of the Market
|
package/dist/index.js
CHANGED
|
@@ -975,12 +975,7 @@ class TriadProtocolClient {
|
|
|
975
975
|
if (ixs.length === 0) {
|
|
976
976
|
throw new Error('No matching orders found to fill the requested amount');
|
|
977
977
|
}
|
|
978
|
-
|
|
979
|
-
// this.program,
|
|
980
|
-
// ixs,
|
|
981
|
-
// options,
|
|
982
|
-
// addressLookupTableAccounts
|
|
983
|
-
// )
|
|
978
|
+
return (0, sendVersionedTransaction_1.default)(this.program, ixs, options, addressLookupTableAccounts);
|
|
984
979
|
});
|
|
985
980
|
}
|
|
986
981
|
/**
|