@nightlylabs/dex-sdk 0.1.59 → 0.1.60
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.cjs +2 -1
- package/dist/index.js +2 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -2199,7 +2199,8 @@ var Client = class _Client {
|
|
|
2199
2199
|
params.tokenAddress,
|
|
2200
2200
|
toSystemValue(params.amount),
|
|
2201
2201
|
params.borrow,
|
|
2202
|
-
params.recipient
|
|
2202
|
+
params.recipient,
|
|
2203
|
+
params.max
|
|
2203
2204
|
]
|
|
2204
2205
|
});
|
|
2205
2206
|
return await this.createAndSubmitTransaction(aptosPayload);
|
package/dist/index.js
CHANGED
|
@@ -2148,7 +2148,8 @@ var Client = class _Client {
|
|
|
2148
2148
|
params.tokenAddress,
|
|
2149
2149
|
toSystemValue(params.amount),
|
|
2150
2150
|
params.borrow,
|
|
2151
|
-
params.recipient
|
|
2151
|
+
params.recipient,
|
|
2152
|
+
params.max
|
|
2152
2153
|
]
|
|
2153
2154
|
});
|
|
2154
2155
|
return await this.createAndSubmitTransaction(aptosPayload);
|