aftermath-ts-sdk 2.0.0-temp.0 → 2.0.0-temp.1
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 +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3621,7 +3621,7 @@ type ApiPerpetualsDeallocateCollateralBody = {
|
|
|
3621
3621
|
*/
|
|
3622
3622
|
interface SdkPerpetualsPlaceStopOrdersInputs {
|
|
3623
3623
|
/** Stop orders to place (without objectId, which is created on-chain). */
|
|
3624
|
-
stopOrders: Omit<PerpetualsStopOrderData, "objectId">[];
|
|
3624
|
+
stopOrders: Omit<PerpetualsStopOrderData, "objectId" | "orderState">[];
|
|
3625
3625
|
/** Optional transaction to embed the call in. */
|
|
3626
3626
|
tx?: Transaction;
|
|
3627
3627
|
/** Optional gas coin for sponsored or custom gas usage. */
|
|
@@ -3636,7 +3636,7 @@ interface SdkPerpetualsPlaceStopOrdersInputs {
|
|
|
3636
3636
|
*/
|
|
3637
3637
|
type ApiPerpetualsPlaceStopOrdersBody = {
|
|
3638
3638
|
walletAddress: SuiAddress;
|
|
3639
|
-
stopOrders: Omit<PerpetualsStopOrderData, "objectId">[];
|
|
3639
|
+
stopOrders: Omit<PerpetualsStopOrderData, "objectId" | "orderState">[];
|
|
3640
3640
|
gasCoinArg?: TransactionObjectArgument;
|
|
3641
3641
|
isSponsoredTx?: boolean;
|
|
3642
3642
|
sponsor?: PerpetualsSponsorConfig;
|