@skip-go/client 0.14.7 → 0.14.8
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 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1262,6 +1262,7 @@ type MsgsDirectRequestBaseJSON = {
|
|
|
1262
1262
|
smart_swap_options?: SmartSwapOptionsJSON;
|
|
1263
1263
|
allow_swaps?: boolean;
|
|
1264
1264
|
enable_gas_warnings?: boolean;
|
|
1265
|
+
go_fast?: boolean;
|
|
1265
1266
|
};
|
|
1266
1267
|
type MsgsDirectRequestGivenInJSON = MsgsDirectRequestBaseJSON & {
|
|
1267
1268
|
amount_in: string;
|
|
@@ -1295,6 +1296,7 @@ type MsgsDirectRequestBase = {
|
|
|
1295
1296
|
smartSwapOptions?: SmartSwapOptions;
|
|
1296
1297
|
allowSwaps?: boolean;
|
|
1297
1298
|
enableGasWarnings?: boolean;
|
|
1299
|
+
goFast?: boolean;
|
|
1298
1300
|
};
|
|
1299
1301
|
type MsgsDirectRequestGivenIn = MsgsDirectRequestBase & {
|
|
1300
1302
|
amountIn: string;
|