@ensofinance/checkout-widget 0.0.16 → 0.0.18
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/checkout-widget.es.js +22025 -33937
- package/dist/checkout-widget.es.js.map +1 -1
- package/dist/checkout-widget.umd.js +61 -46
- package/dist/checkout-widget.umd.js.map +1 -1
- package/dist/index.d.ts +3 -1
- package/orval.config.ts +14 -9
- package/package.json +2 -2
- package/src/components/Checkout.tsx +3 -2
- package/src/components/steps/ExchangeFlow.tsx +526 -157
- package/src/enso-api/api.ts +19 -42
- package/src/enso-api/index.ts +1114 -1070
- package/src/enso-api/model/action.ts +1 -1
- package/src/enso-api/model/actionAction.ts +3 -1
- package/src/enso-api/model/actionInputs.ts +1 -1
- package/src/enso-api/model/actionToBundle.ts +1 -1
- package/src/enso-api/model/actionToBundleAction.ts +3 -1
- package/src/enso-api/model/actionToBundleArgs.ts +1 -1
- package/src/enso-api/model/approveActionDto.ts +1 -1
- package/src/enso-api/model/approveArgsDto.ts +1 -1
- package/src/enso-api/model/approveArgsDtoAmount.ts +1 -1
- package/src/enso-api/model/balanceActionDto.ts +1 -1
- package/src/enso-api/model/balanceArgsDto.ts +1 -1
- package/src/enso-api/model/borrowActionDto.ts +1 -1
- package/src/enso-api/model/borrowArgsDto.ts +1 -1
- package/src/enso-api/model/borrowArgsDtoAmountOut.ts +1 -1
- package/src/enso-api/model/bridgeActionDto.ts +1 -1
- package/src/enso-api/model/bridgeArgsDto.ts +1 -1
- package/src/enso-api/model/bridgeArgsDtoAmountIn.ts +1 -1
- package/src/enso-api/model/bridgeArgsDtoCallbackItem.ts +1 -1
- package/src/enso-api/model/bridgeLatencyEstimate.ts +33 -0
- package/src/enso-api/model/bridgeTransactionResponse.ts +37 -0
- package/src/enso-api/model/bridgeTransactionResponseStatus.ts +25 -0
- package/src/enso-api/model/bundleControllerBundleShortcutTransactionBodyItem.ts +1 -1
- package/src/enso-api/model/bundleControllerBundleShortcutTransactionParams.ts +1 -1
- package/src/enso-api/model/bundleControllerBundleShortcutTransactionRoutingStrategy.ts +2 -2
- package/src/enso-api/model/bundleShortcutTransaction.ts +13 -4
- package/src/enso-api/model/bundleShortcutTransactionAmountsOut.ts +1 -1
- package/src/enso-api/model/bundleShortcutTransactionFeeAmount.ts +1 -1
- package/src/enso-api/model/bundleShortcutTransactionMinAmountsOut.ts +15 -0
- package/src/enso-api/model/callActionDto.ts +1 -1
- package/src/enso-api/model/callArgsDto.ts +1 -1
- package/src/enso-api/model/callArgsDtoArgsItem.ts +1 -1
- package/src/enso-api/model/callArgsDtoArgsItemAnyOf.ts +1 -1
- package/src/enso-api/model/callArgsDtoValue.ts +1 -1
- package/src/enso-api/model/callOutput.ts +1 -1
- package/src/enso-api/model/connectedNetwork.ts +1 -1
- package/src/enso-api/model/depositActionDto.ts +1 -1
- package/src/enso-api/model/depositArgsDto.ts +1 -1
- package/src/enso-api/model/depositArgsDtoAmountIn.ts +1 -1
- package/src/enso-api/model/depositArgsDtoAmountInOneOfItem.ts +1 -1
- package/src/enso-api/model/depositArgsDtoTokenIn.ts +1 -1
- package/src/enso-api/model/depositArgsDtoTokenOut.ts +1 -1
- package/src/enso-api/model/depositCLMMActionDto.ts +1 -1
- package/src/enso-api/model/depositCLMMArgsDto.ts +1 -1
- package/src/enso-api/model/depositCLMMArgsDtoAmountInItem.ts +1 -1
- package/src/enso-api/model/depositCLMMArgsDtoAmountInItemAnyOf.ts +1 -1
- package/src/enso-api/model/ensoEvent.ts +30 -0
- package/src/enso-api/model/ensoFeeActionDto.ts +1 -1
- package/src/enso-api/model/ensoFeeArgsDto.ts +1 -1
- package/src/enso-api/model/ensoFeeArgsDtoAmount.ts +1 -1
- package/src/enso-api/model/ensoMetadata.ts +23 -0
- package/src/enso-api/model/feeActionDto.ts +1 -1
- package/src/enso-api/model/feeArgsDto.ts +1 -1
- package/src/enso-api/model/feeArgsDtoAmount.ts +1 -1
- package/src/enso-api/model/harvestActionDto.ts +1 -1
- package/src/enso-api/model/harvestArgsDto.ts +1 -1
- package/src/enso-api/model/hop.ts +1 -1
- package/src/enso-api/model/hopArgs.ts +1 -1
- package/src/enso-api/model/index.ts +63 -54
- package/src/enso-api/model/iporControllerIporShortcutTransactionParams.ts +1 -1
- package/src/enso-api/model/iporShortcutInput.ts +1 -1
- package/src/enso-api/model/iporShortcutTransaction.ts +1 -1
- package/src/enso-api/model/lZDestinationTokenData.ts +1 -1
- package/src/enso-api/model/lZPoolLookupResponse.ts +1 -1
- package/src/enso-api/model/layerZeroControllerCheckBridgeTransactionParams.ts +21 -0
- package/src/enso-api/model/layerZeroControllerGetPoolAddressParams.ts +1 -1
- package/src/enso-api/model/layerZeroMessageStatus.ts +39 -0
- package/src/enso-api/model/mergeActionDto.ts +1 -1
- package/src/enso-api/model/mergeArgsDto.ts +1 -1
- package/src/enso-api/model/mergeArgsDtoAmountInItem.ts +1 -1
- package/src/enso-api/model/minAmountOutActionDto.ts +1 -1
- package/src/enso-api/model/minAmountOutArgsDto.ts +1 -1
- package/src/enso-api/model/minAmountOutArgsDtoAmountOut.ts +1 -1
- package/src/enso-api/model/minAmountOutArgsDtoMinAmountOut.ts +1 -1
- package/src/enso-api/model/multiDepositActionDto.ts +1 -1
- package/src/enso-api/model/multiDepositArgsDto.ts +1 -1
- package/src/enso-api/model/multiDepositArgsDtoAmountInItem.ts +1 -1
- package/src/enso-api/model/multiDepositArgsDtoAmountInItemAnyOf.ts +1 -1
- package/src/enso-api/model/multiOutSingleDepositActionDto.ts +1 -1
- package/src/enso-api/model/multiOutSingleDepositArgsDto.ts +1 -1
- package/src/enso-api/model/multiOutSingleDepositArgsDtoAmountIn.ts +1 -1
- package/src/enso-api/model/multiRedeemActionDto.ts +1 -1
- package/src/enso-api/model/multiRedeemArgs2Dto.ts +1 -1
- package/src/enso-api/model/multiRedeemArgs2DtoAmountIn.ts +1 -1
- package/src/enso-api/model/network.ts +1 -1
- package/src/enso-api/model/networksControllerNetworksParams.ts +1 -1
- package/src/enso-api/model/nonTokenizedControllerTokens200.ts +1 -1
- package/src/enso-api/model/nonTokenizedControllerTokens200AllOf.ts +1 -1
- package/src/enso-api/model/nonTokenizedControllerTokensParams.ts +6 -2
- package/src/enso-api/model/nonTokenizedModel.ts +1 -1
- package/src/enso-api/model/nontokenizedControllerRouteNontokenizedShorcutTransactionParams.ts +2 -2
- package/src/enso-api/model/nontokenizedControllerRouteNontokenizedShorcutTransactionRoutingStrategy.ts +1 -1
- package/src/enso-api/model/nontokenizedRouteShortcutTransaction.ts +4 -1
- package/src/enso-api/model/paginatedResult.ts +1 -1
- package/src/enso-api/model/paginationMeta.ts +1 -1
- package/src/enso-api/model/paymasterFeeActionDto.ts +1 -1
- package/src/enso-api/model/paymasterFeeArgsDto.ts +1 -1
- package/src/enso-api/model/paymasterFeeArgsDtoAmount.ts +1 -1
- package/src/enso-api/model/permitTransferFromActionDto.ts +1 -1
- package/src/enso-api/model/permitTransferFromArgsDto.ts +1 -1
- package/src/enso-api/model/permitTransferFromArgsDtoAmount.ts +1 -1
- package/src/enso-api/model/permitTransferFromArgsDtoAmountOneOfItem.ts +1 -1
- package/src/enso-api/model/permitTransferFromArgsDtoToken.ts +1 -1
- package/src/enso-api/model/positionModel.ts +1 -1
- package/src/enso-api/model/price.ts +1 -1
- package/src/enso-api/model/pricesControllerGetPricesParams.ts +1 -1
- package/src/enso-api/model/project.ts +1 -1
- package/src/enso-api/model/protocol.ts +1 -1
- package/src/enso-api/model/protocolModel.ts +1 -1
- package/src/enso-api/model/protocolsControllerFindAllParams.ts +1 -1
- package/src/enso-api/model/redeemActionDto.ts +1 -1
- package/src/enso-api/model/redeemArgsDto.ts +1 -1
- package/src/enso-api/model/redeemArgsDtoAmountIn.ts +1 -1
- package/src/enso-api/model/redeemArgsDtoTokenOut.ts +1 -1
- package/src/enso-api/model/redeemCLMMActionDto.ts +1 -1
- package/src/enso-api/model/redeemCLMMArgsDto.ts +1 -1
- package/src/enso-api/model/redeemCLMMArgsDtoLiquidity.ts +1 -1
- package/src/enso-api/model/refundDetails.ts +21 -0
- package/src/enso-api/model/repayActionDto.ts +1 -1
- package/src/enso-api/model/repayArgsDto.ts +1 -1
- package/src/enso-api/model/repayArgsDtoAmountIn.ts +1 -1
- package/src/enso-api/model/routeActionDto.ts +1 -1
- package/src/enso-api/model/routeArgsDto.ts +1 -1
- package/src/enso-api/model/routeArgsDtoAmountIn.ts +1 -1
- package/src/enso-api/model/routeShortcutTransaction.ts +7 -4
- package/src/enso-api/model/routeShortcutVariableInputs.ts +2 -2
- package/src/enso-api/model/routeShortcutVariableInputsRoutingStrategy.ts +2 -2
- package/src/enso-api/model/routeShortcutVariableInputsVariableEstimates.ts +1 -1
- package/src/enso-api/model/routerControllerRouteShortcutTransactionParams.ts +1 -1
- package/src/enso-api/model/routerControllerRouteShortcutTransactionRoutingStrategy.ts +2 -2
- package/src/enso-api/model/singleDepositActionDto.ts +1 -1
- package/src/enso-api/model/singleDepositArgsDto.ts +1 -1
- package/src/enso-api/model/singleDepositArgsDtoAmountIn.ts +1 -1
- package/src/enso-api/model/singleRedeemActionDto.ts +1 -1
- package/src/enso-api/model/singleRedeemArgs2Dto.ts +1 -1
- package/src/enso-api/model/singleRedeemArgs2DtoAmountIn.ts +1 -1
- package/src/enso-api/model/slippageActionDto.ts +1 -1
- package/src/enso-api/model/slippageArgsDto.ts +1 -1
- package/src/enso-api/model/slippageArgsDtoAmountOut.ts +1 -1
- package/src/enso-api/model/splitActionDto.ts +1 -1
- package/src/enso-api/model/splitArgsDto.ts +1 -1
- package/src/enso-api/model/splitArgsDtoAmountIn.ts +1 -1
- package/src/enso-api/model/standard.ts +1 -1
- package/src/enso-api/model/standardAction.ts +1 -1
- package/src/enso-api/model/standardActionAction.ts +3 -1
- package/src/enso-api/model/swapActionDto.ts +1 -1
- package/src/enso-api/model/swapArgsDto.ts +1 -1
- package/src/enso-api/model/swapArgsDtoAmountIn.ts +1 -1
- package/src/enso-api/model/tokenModel.ts +1 -1
- package/src/enso-api/model/tokenizedMultiDepositActionDto.ts +1 -1
- package/src/enso-api/model/tokenizedMultiDepositArgsDto.ts +1 -1
- package/src/enso-api/model/tokenizedMultiDepositArgsDtoAmountInItem.ts +1 -1
- package/src/enso-api/model/tokenizedMultiDepositArgsDtoAmountInItemAnyOf.ts +1 -1
- package/src/enso-api/model/tokenizedMultiRedeemActionDto.ts +1 -1
- package/src/enso-api/model/tokenizedMultiRedeemArgsDto.ts +1 -1
- package/src/enso-api/model/tokenizedMultiRedeemArgsDtoAmountIn.ts +1 -1
- package/src/enso-api/model/tokenizedSingleDepositActionDto.ts +1 -1
- package/src/enso-api/model/tokenizedSingleDepositArgsDto.ts +1 -1
- package/src/enso-api/model/tokenizedSingleDepositArgsDtoAmountIn.ts +1 -1
- package/src/enso-api/model/tokenizedSingleRedeemActionDto.ts +1 -1
- package/src/enso-api/model/tokenizedSingleRedeemArgsDto.ts +1 -1
- package/src/enso-api/model/tokenizedSingleRedeemArgsDtoAmountIn.ts +1 -1
- package/src/enso-api/model/tokensControllerTokens200.ts +1 -1
- package/src/enso-api/model/tokensControllerTokens200AllOf.ts +1 -1
- package/src/enso-api/model/tokensControllerTokensLiquidityType.ts +1 -1
- package/src/enso-api/model/tokensControllerTokensParams.ts +1 -1
- package/src/enso-api/model/tokensControllerTokensType.ts +1 -1
- package/src/enso-api/model/transaction.ts +1 -1
- package/src/enso-api/model/transferActionDto.ts +1 -1
- package/src/enso-api/model/transferArgsDto.ts +1 -1
- package/src/enso-api/model/transferArgsDtoAmount.ts +1 -1
- package/src/enso-api/model/transferFromActionDto.ts +1 -1
- package/src/enso-api/model/transferFromArgsDto.ts +1 -1
- package/src/enso-api/model/transferFromArgsDtoAmount.ts +1 -1
- package/src/enso-api/model/userOperation.ts +7 -7
- package/src/enso-api/model/walletApproveTransaction.ts +1 -1
- package/src/enso-api/model/walletApproveTransactionTx.ts +1 -1
- package/src/enso-api/model/walletBalance.ts +21 -9
- package/src/enso-api/model/walletControllerCreateApproveTransactionParams.ts +1 -1
- package/src/enso-api/model/walletControllerCreateApproveTransactionRoutingStrategy.ts +2 -2
- package/src/enso-api/model/walletControllerWalletBalancesParams.ts +4 -4
- package/src/index.ts +3 -0
- package/src/types/index.ts +2 -0
- package/src/util/constants.tsx +19 -0
- package/src/util/tx-tracker.tsx +162 -1
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v7.11.1 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* #### Enso API
|
|
5
|
+
- Find detailed documentation on [docs.enso.finance](https://docs.enso.finance).
|
|
6
|
+
- To use the API, **you must include your API Key in the Authorization header** (Bearer format).
|
|
7
|
+
- For testing, Swagger pre-authorizes you using the key: `1e02632d-6feb-4a75-a157-documentation` (1rps).
|
|
8
|
+
- Get your own API Key at [enso.finance/developers](https://developers.enso.build/).
|
|
9
|
+
* OpenAPI spec version: 1.0
|
|
10
|
+
*/
|
|
11
|
+
import type { RefundDetails } from "./refundDetails";
|
|
12
|
+
|
|
13
|
+
export interface EnsoEvent {
|
|
14
|
+
/** Account ID from ShortcutExecuted event */
|
|
15
|
+
accountId?: string;
|
|
16
|
+
/** Request ID from ShortcutExecuted event */
|
|
17
|
+
requestId?: string;
|
|
18
|
+
/** Block number where the event was emitted */
|
|
19
|
+
blockNumber: number;
|
|
20
|
+
/** Transaction hash */
|
|
21
|
+
transactionHash: string;
|
|
22
|
+
/** Chain ID where the event was emitted */
|
|
23
|
+
chainId: number;
|
|
24
|
+
/** Whether the shortcut execution was successful */
|
|
25
|
+
success: boolean;
|
|
26
|
+
/** Error data if execution failed */
|
|
27
|
+
error?: string;
|
|
28
|
+
/** Refund details if execution failed and funds were returned */
|
|
29
|
+
refundDetails?: RefundDetails;
|
|
30
|
+
}
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
- Find detailed documentation on [docs.enso.finance](https://docs.enso.finance).
|
|
6
6
|
- To use the API, **you must include your API Key in the Authorization header** (Bearer format).
|
|
7
7
|
- For testing, Swagger pre-authorizes you using the key: `1e02632d-6feb-4a75-a157-documentation` (1rps).
|
|
8
|
-
- Get your own API Key at [enso.finance/developers](https://enso.
|
|
8
|
+
- Get your own API Key at [enso.finance/developers](https://developers.enso.build/).
|
|
9
9
|
* OpenAPI spec version: 1.0
|
|
10
10
|
*/
|
|
11
11
|
import type { EnsoFeeArgsDto } from "./ensoFeeArgsDto";
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
- Find detailed documentation on [docs.enso.finance](https://docs.enso.finance).
|
|
6
6
|
- To use the API, **you must include your API Key in the Authorization header** (Bearer format).
|
|
7
7
|
- For testing, Swagger pre-authorizes you using the key: `1e02632d-6feb-4a75-a157-documentation` (1rps).
|
|
8
|
-
- Get your own API Key at [enso.finance/developers](https://enso.
|
|
8
|
+
- Get your own API Key at [enso.finance/developers](https://developers.enso.build/).
|
|
9
9
|
* OpenAPI spec version: 1.0
|
|
10
10
|
*/
|
|
11
11
|
import type { EnsoFeeArgsDtoAmount } from "./ensoFeeArgsDtoAmount";
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
- Find detailed documentation on [docs.enso.finance](https://docs.enso.finance).
|
|
6
6
|
- To use the API, **you must include your API Key in the Authorization header** (Bearer format).
|
|
7
7
|
- For testing, Swagger pre-authorizes you using the key: `1e02632d-6feb-4a75-a157-documentation` (1rps).
|
|
8
|
-
- Get your own API Key at [enso.finance/developers](https://enso.
|
|
8
|
+
- Get your own API Key at [enso.finance/developers](https://developers.enso.build/).
|
|
9
9
|
* OpenAPI spec version: 1.0
|
|
10
10
|
*/
|
|
11
11
|
import type { CallOutput } from "./callOutput";
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v7.11.1 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* #### Enso API
|
|
5
|
+
- Find detailed documentation on [docs.enso.finance](https://docs.enso.finance).
|
|
6
|
+
- To use the API, **you must include your API Key in the Authorization header** (Bearer format).
|
|
7
|
+
- For testing, Swagger pre-authorizes you using the key: `1e02632d-6feb-4a75-a157-documentation` (1rps).
|
|
8
|
+
- Get your own API Key at [enso.finance/developers](https://developers.enso.build/).
|
|
9
|
+
* OpenAPI spec version: 1.0
|
|
10
|
+
*/
|
|
11
|
+
|
|
12
|
+
export interface EnsoMetadata {
|
|
13
|
+
/** Token in address */
|
|
14
|
+
tokenIn?: string;
|
|
15
|
+
/** Token out address */
|
|
16
|
+
tokenOut?: string;
|
|
17
|
+
/** Amount in */
|
|
18
|
+
amountIn?: string;
|
|
19
|
+
/** Chain ID from the request */
|
|
20
|
+
chainId?: number;
|
|
21
|
+
/** Timestamp of the request */
|
|
22
|
+
timestamp?: number;
|
|
23
|
+
}
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
- Find detailed documentation on [docs.enso.finance](https://docs.enso.finance).
|
|
6
6
|
- To use the API, **you must include your API Key in the Authorization header** (Bearer format).
|
|
7
7
|
- For testing, Swagger pre-authorizes you using the key: `1e02632d-6feb-4a75-a157-documentation` (1rps).
|
|
8
|
-
- Get your own API Key at [enso.finance/developers](https://enso.
|
|
8
|
+
- Get your own API Key at [enso.finance/developers](https://developers.enso.build/).
|
|
9
9
|
* OpenAPI spec version: 1.0
|
|
10
10
|
*/
|
|
11
11
|
import type { FeeArgsDto } from "./feeArgsDto";
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
- Find detailed documentation on [docs.enso.finance](https://docs.enso.finance).
|
|
6
6
|
- To use the API, **you must include your API Key in the Authorization header** (Bearer format).
|
|
7
7
|
- For testing, Swagger pre-authorizes you using the key: `1e02632d-6feb-4a75-a157-documentation` (1rps).
|
|
8
|
-
- Get your own API Key at [enso.finance/developers](https://enso.
|
|
8
|
+
- Get your own API Key at [enso.finance/developers](https://developers.enso.build/).
|
|
9
9
|
* OpenAPI spec version: 1.0
|
|
10
10
|
*/
|
|
11
11
|
import type { FeeArgsDtoAmount } from "./feeArgsDtoAmount";
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
- Find detailed documentation on [docs.enso.finance](https://docs.enso.finance).
|
|
6
6
|
- To use the API, **you must include your API Key in the Authorization header** (Bearer format).
|
|
7
7
|
- For testing, Swagger pre-authorizes you using the key: `1e02632d-6feb-4a75-a157-documentation` (1rps).
|
|
8
|
-
- Get your own API Key at [enso.finance/developers](https://enso.
|
|
8
|
+
- Get your own API Key at [enso.finance/developers](https://developers.enso.build/).
|
|
9
9
|
* OpenAPI spec version: 1.0
|
|
10
10
|
*/
|
|
11
11
|
import type { CallOutput } from "./callOutput";
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
- Find detailed documentation on [docs.enso.finance](https://docs.enso.finance).
|
|
6
6
|
- To use the API, **you must include your API Key in the Authorization header** (Bearer format).
|
|
7
7
|
- For testing, Swagger pre-authorizes you using the key: `1e02632d-6feb-4a75-a157-documentation` (1rps).
|
|
8
|
-
- Get your own API Key at [enso.finance/developers](https://enso.
|
|
8
|
+
- Get your own API Key at [enso.finance/developers](https://developers.enso.build/).
|
|
9
9
|
* OpenAPI spec version: 1.0
|
|
10
10
|
*/
|
|
11
11
|
import type { HarvestArgsDto } from "./harvestArgsDto";
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
- Find detailed documentation on [docs.enso.finance](https://docs.enso.finance).
|
|
6
6
|
- To use the API, **you must include your API Key in the Authorization header** (Bearer format).
|
|
7
7
|
- For testing, Swagger pre-authorizes you using the key: `1e02632d-6feb-4a75-a157-documentation` (1rps).
|
|
8
|
-
- Get your own API Key at [enso.finance/developers](https://enso.
|
|
8
|
+
- Get your own API Key at [enso.finance/developers](https://developers.enso.build/).
|
|
9
9
|
* OpenAPI spec version: 1.0
|
|
10
10
|
*/
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
- Find detailed documentation on [docs.enso.finance](https://docs.enso.finance).
|
|
6
6
|
- To use the API, **you must include your API Key in the Authorization header** (Bearer format).
|
|
7
7
|
- For testing, Swagger pre-authorizes you using the key: `1e02632d-6feb-4a75-a157-documentation` (1rps).
|
|
8
|
-
- Get your own API Key at [enso.finance/developers](https://enso.
|
|
8
|
+
- Get your own API Key at [enso.finance/developers](https://developers.enso.build/).
|
|
9
9
|
* OpenAPI spec version: 1.0
|
|
10
10
|
*/
|
|
11
11
|
import type { HopArgs } from "./hopArgs";
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
- Find detailed documentation on [docs.enso.finance](https://docs.enso.finance).
|
|
6
6
|
- To use the API, **you must include your API Key in the Authorization header** (Bearer format).
|
|
7
7
|
- For testing, Swagger pre-authorizes you using the key: `1e02632d-6feb-4a75-a157-documentation` (1rps).
|
|
8
|
-
- Get your own API Key at [enso.finance/developers](https://enso.
|
|
8
|
+
- Get your own API Key at [enso.finance/developers](https://developers.enso.build/).
|
|
9
9
|
* OpenAPI spec version: 1.0
|
|
10
10
|
*/
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
- Find detailed documentation on [docs.enso.finance](https://docs.enso.finance).
|
|
6
6
|
- To use the API, **you must include your API Key in the Authorization header** (Bearer format).
|
|
7
7
|
- For testing, Swagger pre-authorizes you using the key: `1e02632d-6feb-4a75-a157-documentation` (1rps).
|
|
8
|
-
- Get your own API Key at [enso.finance/developers](https://enso.
|
|
8
|
+
- Get your own API Key at [enso.finance/developers](https://developers.enso.build/).
|
|
9
9
|
* OpenAPI spec version: 1.0
|
|
10
10
|
*/
|
|
11
11
|
|
|
@@ -15,59 +15,6 @@ export * from "./actionInputs";
|
|
|
15
15
|
export * from "./actionToBundle";
|
|
16
16
|
export * from "./actionToBundleAction";
|
|
17
17
|
export * from "./actionToBundleArgs";
|
|
18
|
-
export * from "./bundleControllerBundleShortcutTransactionParams";
|
|
19
|
-
export * from "./bundleControllerBundleShortcutTransactionRoutingStrategy";
|
|
20
|
-
export * from "./bundleShortcutTransaction";
|
|
21
|
-
export * from "./bundleShortcutTransactionAmountsOut";
|
|
22
|
-
export * from "./bundleShortcutTransactionFeeAmount";
|
|
23
|
-
export * from "./connectedNetwork";
|
|
24
|
-
export * from "./hop";
|
|
25
|
-
export * from "./hopArgs";
|
|
26
|
-
export * from "./iporControllerIporShortcutTransactionParams";
|
|
27
|
-
export * from "./iporShortcutInput";
|
|
28
|
-
export * from "./iporShortcutTransaction";
|
|
29
|
-
export * from "./lZDestinationTokenData";
|
|
30
|
-
export * from "./lZPoolLookupResponse";
|
|
31
|
-
export * from "./layerZeroControllerGetPoolAddressParams";
|
|
32
|
-
export * from "./network";
|
|
33
|
-
export * from "./networksControllerNetworksParams";
|
|
34
|
-
export * from "./nonTokenizedControllerTokens200";
|
|
35
|
-
export * from "./nonTokenizedControllerTokens200AllOf";
|
|
36
|
-
export * from "./nonTokenizedControllerTokensParams";
|
|
37
|
-
export * from "./nonTokenizedModel";
|
|
38
|
-
export * from "./nontokenizedControllerRouteNontokenizedShorcutTransactionParams";
|
|
39
|
-
export * from "./nontokenizedControllerRouteNontokenizedShorcutTransactionRoutingStrategy";
|
|
40
|
-
export * from "./paginatedResult";
|
|
41
|
-
export * from "./paginationMeta";
|
|
42
|
-
export * from "./positionModel";
|
|
43
|
-
export * from "./price";
|
|
44
|
-
export * from "./pricesControllerGetPricesParams";
|
|
45
|
-
export * from "./project";
|
|
46
|
-
export * from "./protocol";
|
|
47
|
-
export * from "./protocolModel";
|
|
48
|
-
export * from "./protocolsControllerFindAllParams";
|
|
49
|
-
export * from "./routeShortcutTransaction";
|
|
50
|
-
export * from "./routeShortcutVariableInputs";
|
|
51
|
-
export * from "./routeShortcutVariableInputsRoutingStrategy";
|
|
52
|
-
export * from "./routeShortcutVariableInputsVariableEstimates";
|
|
53
|
-
export * from "./routerControllerRouteShortcutTransactionParams";
|
|
54
|
-
export * from "./routerControllerRouteShortcutTransactionRoutingStrategy";
|
|
55
|
-
export * from "./standard";
|
|
56
|
-
export * from "./standardAction";
|
|
57
|
-
export * from "./standardActionAction";
|
|
58
|
-
export * from "./tokenModel";
|
|
59
|
-
export * from "./tokensControllerTokens200";
|
|
60
|
-
export * from "./tokensControllerTokens200AllOf";
|
|
61
|
-
export * from "./tokensControllerTokensParams";
|
|
62
|
-
export * from "./tokensControllerTokensType";
|
|
63
|
-
export * from "./transaction";
|
|
64
|
-
export * from "./userOperation";
|
|
65
|
-
export * from "./walletApproveTransaction";
|
|
66
|
-
export * from "./walletApproveTransactionTx";
|
|
67
|
-
export * from "./walletBalance";
|
|
68
|
-
export * from "./walletControllerCreateApproveTransactionParams";
|
|
69
|
-
export * from "./walletControllerCreateApproveTransactionRoutingStrategy";
|
|
70
|
-
export * from "./walletControllerWalletBalancesParams";
|
|
71
18
|
export * from "./approveActionDto";
|
|
72
19
|
export * from "./approveArgsDto";
|
|
73
20
|
export * from "./approveArgsDtoAmount";
|
|
@@ -80,13 +27,23 @@ export * from "./bridgeActionDto";
|
|
|
80
27
|
export * from "./bridgeArgsDto";
|
|
81
28
|
export * from "./bridgeArgsDtoAmountIn";
|
|
82
29
|
export * from "./bridgeArgsDtoCallbackItem";
|
|
30
|
+
export * from "./bridgeLatencyEstimate";
|
|
31
|
+
export * from "./bridgeTransactionResponse";
|
|
32
|
+
export * from "./bridgeTransactionResponseStatus";
|
|
83
33
|
export * from "./bundleControllerBundleShortcutTransactionBodyItem";
|
|
34
|
+
export * from "./bundleControllerBundleShortcutTransactionParams";
|
|
35
|
+
export * from "./bundleControllerBundleShortcutTransactionRoutingStrategy";
|
|
36
|
+
export * from "./bundleShortcutTransaction";
|
|
37
|
+
export * from "./bundleShortcutTransactionAmountsOut";
|
|
38
|
+
export * from "./bundleShortcutTransactionFeeAmount";
|
|
39
|
+
export * from "./bundleShortcutTransactionMinAmountsOut";
|
|
84
40
|
export * from "./callActionDto";
|
|
85
41
|
export * from "./callArgsDto";
|
|
86
42
|
export * from "./callArgsDtoArgsItem";
|
|
87
43
|
export * from "./callArgsDtoArgsItemAnyOf";
|
|
88
44
|
export * from "./callArgsDtoValue";
|
|
89
45
|
export * from "./callOutput";
|
|
46
|
+
export * from "./connectedNetwork";
|
|
90
47
|
export * from "./depositActionDto";
|
|
91
48
|
export * from "./depositArgsDto";
|
|
92
49
|
export * from "./depositArgsDtoAmountIn";
|
|
@@ -97,14 +54,26 @@ export * from "./depositCLMMActionDto";
|
|
|
97
54
|
export * from "./depositCLMMArgsDto";
|
|
98
55
|
export * from "./depositCLMMArgsDtoAmountInItem";
|
|
99
56
|
export * from "./depositCLMMArgsDtoAmountInItemAnyOf";
|
|
57
|
+
export * from "./ensoEvent";
|
|
100
58
|
export * from "./ensoFeeActionDto";
|
|
101
59
|
export * from "./ensoFeeArgsDto";
|
|
102
60
|
export * from "./ensoFeeArgsDtoAmount";
|
|
61
|
+
export * from "./ensoMetadata";
|
|
103
62
|
export * from "./feeActionDto";
|
|
104
63
|
export * from "./feeArgsDto";
|
|
105
64
|
export * from "./feeArgsDtoAmount";
|
|
106
65
|
export * from "./harvestActionDto";
|
|
107
66
|
export * from "./harvestArgsDto";
|
|
67
|
+
export * from "./hop";
|
|
68
|
+
export * from "./hopArgs";
|
|
69
|
+
export * from "./iporControllerIporShortcutTransactionParams";
|
|
70
|
+
export * from "./iporShortcutInput";
|
|
71
|
+
export * from "./iporShortcutTransaction";
|
|
72
|
+
export * from "./lZDestinationTokenData";
|
|
73
|
+
export * from "./lZPoolLookupResponse";
|
|
74
|
+
export * from "./layerZeroControllerCheckBridgeTransactionParams";
|
|
75
|
+
export * from "./layerZeroControllerGetPoolAddressParams";
|
|
76
|
+
export * from "./layerZeroMessageStatus";
|
|
108
77
|
export * from "./mergeActionDto";
|
|
109
78
|
export * from "./mergeArgsDto";
|
|
110
79
|
export * from "./mergeArgsDtoAmountInItem";
|
|
@@ -122,7 +91,17 @@ export * from "./multiOutSingleDepositArgsDtoAmountIn";
|
|
|
122
91
|
export * from "./multiRedeemActionDto";
|
|
123
92
|
export * from "./multiRedeemArgs2Dto";
|
|
124
93
|
export * from "./multiRedeemArgs2DtoAmountIn";
|
|
94
|
+
export * from "./network";
|
|
95
|
+
export * from "./networksControllerNetworksParams";
|
|
96
|
+
export * from "./nonTokenizedControllerTokens200";
|
|
97
|
+
export * from "./nonTokenizedControllerTokens200AllOf";
|
|
98
|
+
export * from "./nonTokenizedControllerTokensParams";
|
|
99
|
+
export * from "./nonTokenizedModel";
|
|
100
|
+
export * from "./nontokenizedControllerRouteNontokenizedShorcutTransactionParams";
|
|
101
|
+
export * from "./nontokenizedControllerRouteNontokenizedShorcutTransactionRoutingStrategy";
|
|
125
102
|
export * from "./nontokenizedRouteShortcutTransaction";
|
|
103
|
+
export * from "./paginatedResult";
|
|
104
|
+
export * from "./paginationMeta";
|
|
126
105
|
export * from "./paymasterFeeActionDto";
|
|
127
106
|
export * from "./paymasterFeeArgsDto";
|
|
128
107
|
export * from "./paymasterFeeArgsDtoAmount";
|
|
@@ -131,6 +110,13 @@ export * from "./permitTransferFromArgsDto";
|
|
|
131
110
|
export * from "./permitTransferFromArgsDtoAmount";
|
|
132
111
|
export * from "./permitTransferFromArgsDtoAmountOneOfItem";
|
|
133
112
|
export * from "./permitTransferFromArgsDtoToken";
|
|
113
|
+
export * from "./positionModel";
|
|
114
|
+
export * from "./price";
|
|
115
|
+
export * from "./pricesControllerGetPricesParams";
|
|
116
|
+
export * from "./project";
|
|
117
|
+
export * from "./protocol";
|
|
118
|
+
export * from "./protocolModel";
|
|
119
|
+
export * from "./protocolsControllerFindAllParams";
|
|
134
120
|
export * from "./redeemActionDto";
|
|
135
121
|
export * from "./redeemArgsDto";
|
|
136
122
|
export * from "./redeemArgsDtoAmountIn";
|
|
@@ -138,12 +124,19 @@ export * from "./redeemArgsDtoTokenOut";
|
|
|
138
124
|
export * from "./redeemCLMMActionDto";
|
|
139
125
|
export * from "./redeemCLMMArgsDto";
|
|
140
126
|
export * from "./redeemCLMMArgsDtoLiquidity";
|
|
127
|
+
export * from "./refundDetails";
|
|
141
128
|
export * from "./repayActionDto";
|
|
142
129
|
export * from "./repayArgsDto";
|
|
143
130
|
export * from "./repayArgsDtoAmountIn";
|
|
144
131
|
export * from "./routeActionDto";
|
|
145
132
|
export * from "./routeArgsDto";
|
|
146
133
|
export * from "./routeArgsDtoAmountIn";
|
|
134
|
+
export * from "./routeShortcutTransaction";
|
|
135
|
+
export * from "./routeShortcutVariableInputs";
|
|
136
|
+
export * from "./routeShortcutVariableInputsRoutingStrategy";
|
|
137
|
+
export * from "./routeShortcutVariableInputsVariableEstimates";
|
|
138
|
+
export * from "./routerControllerRouteShortcutTransactionParams";
|
|
139
|
+
export * from "./routerControllerRouteShortcutTransactionRoutingStrategy";
|
|
147
140
|
export * from "./singleDepositActionDto";
|
|
148
141
|
export * from "./singleDepositArgsDto";
|
|
149
142
|
export * from "./singleDepositArgsDtoAmountIn";
|
|
@@ -156,9 +149,13 @@ export * from "./slippageArgsDtoAmountOut";
|
|
|
156
149
|
export * from "./splitActionDto";
|
|
157
150
|
export * from "./splitArgsDto";
|
|
158
151
|
export * from "./splitArgsDtoAmountIn";
|
|
152
|
+
export * from "./standard";
|
|
153
|
+
export * from "./standardAction";
|
|
154
|
+
export * from "./standardActionAction";
|
|
159
155
|
export * from "./swapActionDto";
|
|
160
156
|
export * from "./swapArgsDto";
|
|
161
157
|
export * from "./swapArgsDtoAmountIn";
|
|
158
|
+
export * from "./tokenModel";
|
|
162
159
|
export * from "./tokenizedMultiDepositActionDto";
|
|
163
160
|
export * from "./tokenizedMultiDepositArgsDto";
|
|
164
161
|
export * from "./tokenizedMultiDepositArgsDtoAmountInItem";
|
|
@@ -172,10 +169,22 @@ export * from "./tokenizedSingleDepositArgsDtoAmountIn";
|
|
|
172
169
|
export * from "./tokenizedSingleRedeemActionDto";
|
|
173
170
|
export * from "./tokenizedSingleRedeemArgsDto";
|
|
174
171
|
export * from "./tokenizedSingleRedeemArgsDtoAmountIn";
|
|
172
|
+
export * from "./tokensControllerTokens200";
|
|
173
|
+
export * from "./tokensControllerTokens200AllOf";
|
|
175
174
|
export * from "./tokensControllerTokensLiquidityType";
|
|
175
|
+
export * from "./tokensControllerTokensParams";
|
|
176
|
+
export * from "./tokensControllerTokensType";
|
|
177
|
+
export * from "./transaction";
|
|
176
178
|
export * from "./transferActionDto";
|
|
177
179
|
export * from "./transferArgsDto";
|
|
178
180
|
export * from "./transferArgsDtoAmount";
|
|
179
181
|
export * from "./transferFromActionDto";
|
|
180
182
|
export * from "./transferFromArgsDto";
|
|
181
183
|
export * from "./transferFromArgsDtoAmount";
|
|
184
|
+
export * from "./userOperation";
|
|
185
|
+
export * from "./walletApproveTransaction";
|
|
186
|
+
export * from "./walletApproveTransactionTx";
|
|
187
|
+
export * from "./walletBalance";
|
|
188
|
+
export * from "./walletControllerCreateApproveTransactionParams";
|
|
189
|
+
export * from "./walletControllerCreateApproveTransactionRoutingStrategy";
|
|
190
|
+
export * from "./walletControllerWalletBalancesParams";
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
- Find detailed documentation on [docs.enso.finance](https://docs.enso.finance).
|
|
6
6
|
- To use the API, **you must include your API Key in the Authorization header** (Bearer format).
|
|
7
7
|
- For testing, Swagger pre-authorizes you using the key: `1e02632d-6feb-4a75-a157-documentation` (1rps).
|
|
8
|
-
- Get your own API Key at [enso.finance/developers](https://enso.
|
|
8
|
+
- Get your own API Key at [enso.finance/developers](https://developers.enso.build/).
|
|
9
9
|
* OpenAPI spec version: 1.0
|
|
10
10
|
*/
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
- Find detailed documentation on [docs.enso.finance](https://docs.enso.finance).
|
|
6
6
|
- To use the API, **you must include your API Key in the Authorization header** (Bearer format).
|
|
7
7
|
- For testing, Swagger pre-authorizes you using the key: `1e02632d-6feb-4a75-a157-documentation` (1rps).
|
|
8
|
-
- Get your own API Key at [enso.finance/developers](https://enso.
|
|
8
|
+
- Get your own API Key at [enso.finance/developers](https://developers.enso.build/).
|
|
9
9
|
* OpenAPI spec version: 1.0
|
|
10
10
|
*/
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
- Find detailed documentation on [docs.enso.finance](https://docs.enso.finance).
|
|
6
6
|
- To use the API, **you must include your API Key in the Authorization header** (Bearer format).
|
|
7
7
|
- For testing, Swagger pre-authorizes you using the key: `1e02632d-6feb-4a75-a157-documentation` (1rps).
|
|
8
|
-
- Get your own API Key at [enso.finance/developers](https://enso.
|
|
8
|
+
- Get your own API Key at [enso.finance/developers](https://developers.enso.build/).
|
|
9
9
|
* OpenAPI spec version: 1.0
|
|
10
10
|
*/
|
|
11
11
|
import type { Transaction } from "./transaction";
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
- Find detailed documentation on [docs.enso.finance](https://docs.enso.finance).
|
|
6
6
|
- To use the API, **you must include your API Key in the Authorization header** (Bearer format).
|
|
7
7
|
- For testing, Swagger pre-authorizes you using the key: `1e02632d-6feb-4a75-a157-documentation` (1rps).
|
|
8
|
-
- Get your own API Key at [enso.finance/developers](https://enso.
|
|
8
|
+
- Get your own API Key at [enso.finance/developers](https://developers.enso.build/).
|
|
9
9
|
* OpenAPI spec version: 1.0
|
|
10
10
|
*/
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
- Find detailed documentation on [docs.enso.finance](https://docs.enso.finance).
|
|
6
6
|
- To use the API, **you must include your API Key in the Authorization header** (Bearer format).
|
|
7
7
|
- For testing, Swagger pre-authorizes you using the key: `1e02632d-6feb-4a75-a157-documentation` (1rps).
|
|
8
|
-
- Get your own API Key at [enso.finance/developers](https://enso.
|
|
8
|
+
- Get your own API Key at [enso.finance/developers](https://developers.enso.build/).
|
|
9
9
|
* OpenAPI spec version: 1.0
|
|
10
10
|
*/
|
|
11
11
|
import type { LZDestinationTokenData } from "./lZDestinationTokenData";
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v7.11.1 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* #### Enso API
|
|
5
|
+
- Find detailed documentation on [docs.enso.finance](https://docs.enso.finance).
|
|
6
|
+
- To use the API, **you must include your API Key in the Authorization header** (Bearer format).
|
|
7
|
+
- For testing, Swagger pre-authorizes you using the key: `1e02632d-6feb-4a75-a157-documentation` (1rps).
|
|
8
|
+
- Get your own API Key at [enso.finance/developers](https://developers.enso.build/).
|
|
9
|
+
* OpenAPI spec version: 1.0
|
|
10
|
+
*/
|
|
11
|
+
|
|
12
|
+
export type LayerZeroControllerCheckBridgeTransactionParams = {
|
|
13
|
+
/**
|
|
14
|
+
* Chain ID of the source transaction
|
|
15
|
+
*/
|
|
16
|
+
chainId: number;
|
|
17
|
+
/**
|
|
18
|
+
* Transaction hash
|
|
19
|
+
*/
|
|
20
|
+
txHash: string;
|
|
21
|
+
};
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
- Find detailed documentation on [docs.enso.finance](https://docs.enso.finance).
|
|
6
6
|
- To use the API, **you must include your API Key in the Authorization header** (Bearer format).
|
|
7
7
|
- For testing, Swagger pre-authorizes you using the key: `1e02632d-6feb-4a75-a157-documentation` (1rps).
|
|
8
|
-
- Get your own API Key at [enso.finance/developers](https://enso.
|
|
8
|
+
- Get your own API Key at [enso.finance/developers](https://developers.enso.build/).
|
|
9
9
|
* OpenAPI spec version: 1.0
|
|
10
10
|
*/
|
|
11
11
|
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v7.11.1 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* #### Enso API
|
|
5
|
+
- Find detailed documentation on [docs.enso.finance](https://docs.enso.finance).
|
|
6
|
+
- To use the API, **you must include your API Key in the Authorization header** (Bearer format).
|
|
7
|
+
- For testing, Swagger pre-authorizes you using the key: `1e02632d-6feb-4a75-a157-documentation` (1rps).
|
|
8
|
+
- Get your own API Key at [enso.finance/developers](https://developers.enso.build/).
|
|
9
|
+
* OpenAPI spec version: 1.0
|
|
10
|
+
*/
|
|
11
|
+
|
|
12
|
+
export interface LayerZeroMessageStatus {
|
|
13
|
+
/** Source chain endpoint ID */
|
|
14
|
+
srcEid: number;
|
|
15
|
+
/** Destination chain endpoint ID */
|
|
16
|
+
dstEid: number;
|
|
17
|
+
/** Source chain ID (EVM) */
|
|
18
|
+
srcChainId?: number;
|
|
19
|
+
/** Destination chain ID (EVM) */
|
|
20
|
+
dstChainId?: number;
|
|
21
|
+
/** Message status from LayerZero */
|
|
22
|
+
status: string;
|
|
23
|
+
/** Source transaction hash */
|
|
24
|
+
srcTxHash?: string;
|
|
25
|
+
/** Destination transaction hash (if delivered) */
|
|
26
|
+
dstTxHash?: string;
|
|
27
|
+
/** Source block number */
|
|
28
|
+
srcBlockNumber?: number;
|
|
29
|
+
/** Destination block number (if delivered) */
|
|
30
|
+
dstBlockNumber?: number;
|
|
31
|
+
/** Source timestamp */
|
|
32
|
+
srcTimestamp?: string;
|
|
33
|
+
/** Destination timestamp (if delivered) */
|
|
34
|
+
dstTimestamp?: string;
|
|
35
|
+
/** Sender address */
|
|
36
|
+
sender?: string;
|
|
37
|
+
/** Receiver address */
|
|
38
|
+
receiver?: string;
|
|
39
|
+
}
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
- Find detailed documentation on [docs.enso.finance](https://docs.enso.finance).
|
|
6
6
|
- To use the API, **you must include your API Key in the Authorization header** (Bearer format).
|
|
7
7
|
- For testing, Swagger pre-authorizes you using the key: `1e02632d-6feb-4a75-a157-documentation` (1rps).
|
|
8
|
-
- Get your own API Key at [enso.finance/developers](https://enso.
|
|
8
|
+
- Get your own API Key at [enso.finance/developers](https://developers.enso.build/).
|
|
9
9
|
* OpenAPI spec version: 1.0
|
|
10
10
|
*/
|
|
11
11
|
import type { MergeArgsDto } from "./mergeArgsDto";
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
- Find detailed documentation on [docs.enso.finance](https://docs.enso.finance).
|
|
6
6
|
- To use the API, **you must include your API Key in the Authorization header** (Bearer format).
|
|
7
7
|
- For testing, Swagger pre-authorizes you using the key: `1e02632d-6feb-4a75-a157-documentation` (1rps).
|
|
8
|
-
- Get your own API Key at [enso.finance/developers](https://enso.
|
|
8
|
+
- Get your own API Key at [enso.finance/developers](https://developers.enso.build/).
|
|
9
9
|
* OpenAPI spec version: 1.0
|
|
10
10
|
*/
|
|
11
11
|
import type { MergeArgsDtoAmountInItem } from "./mergeArgsDtoAmountInItem";
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
- Find detailed documentation on [docs.enso.finance](https://docs.enso.finance).
|
|
6
6
|
- To use the API, **you must include your API Key in the Authorization header** (Bearer format).
|
|
7
7
|
- For testing, Swagger pre-authorizes you using the key: `1e02632d-6feb-4a75-a157-documentation` (1rps).
|
|
8
|
-
- Get your own API Key at [enso.finance/developers](https://enso.
|
|
8
|
+
- Get your own API Key at [enso.finance/developers](https://developers.enso.build/).
|
|
9
9
|
* OpenAPI spec version: 1.0
|
|
10
10
|
*/
|
|
11
11
|
import type { CallOutput } from "./callOutput";
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
- Find detailed documentation on [docs.enso.finance](https://docs.enso.finance).
|
|
6
6
|
- To use the API, **you must include your API Key in the Authorization header** (Bearer format).
|
|
7
7
|
- For testing, Swagger pre-authorizes you using the key: `1e02632d-6feb-4a75-a157-documentation` (1rps).
|
|
8
|
-
- Get your own API Key at [enso.finance/developers](https://enso.
|
|
8
|
+
- Get your own API Key at [enso.finance/developers](https://developers.enso.build/).
|
|
9
9
|
* OpenAPI spec version: 1.0
|
|
10
10
|
*/
|
|
11
11
|
import type { MinAmountOutArgsDto } from "./minAmountOutArgsDto";
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
- Find detailed documentation on [docs.enso.finance](https://docs.enso.finance).
|
|
6
6
|
- To use the API, **you must include your API Key in the Authorization header** (Bearer format).
|
|
7
7
|
- For testing, Swagger pre-authorizes you using the key: `1e02632d-6feb-4a75-a157-documentation` (1rps).
|
|
8
|
-
- Get your own API Key at [enso.finance/developers](https://enso.
|
|
8
|
+
- Get your own API Key at [enso.finance/developers](https://developers.enso.build/).
|
|
9
9
|
* OpenAPI spec version: 1.0
|
|
10
10
|
*/
|
|
11
11
|
import type { MinAmountOutArgsDtoAmountOut } from "./minAmountOutArgsDtoAmountOut";
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
- Find detailed documentation on [docs.enso.finance](https://docs.enso.finance).
|
|
6
6
|
- To use the API, **you must include your API Key in the Authorization header** (Bearer format).
|
|
7
7
|
- For testing, Swagger pre-authorizes you using the key: `1e02632d-6feb-4a75-a157-documentation` (1rps).
|
|
8
|
-
- Get your own API Key at [enso.finance/developers](https://enso.
|
|
8
|
+
- Get your own API Key at [enso.finance/developers](https://developers.enso.build/).
|
|
9
9
|
* OpenAPI spec version: 1.0
|
|
10
10
|
*/
|
|
11
11
|
import type { CallOutput } from "./callOutput";
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
- Find detailed documentation on [docs.enso.finance](https://docs.enso.finance).
|
|
6
6
|
- To use the API, **you must include your API Key in the Authorization header** (Bearer format).
|
|
7
7
|
- For testing, Swagger pre-authorizes you using the key: `1e02632d-6feb-4a75-a157-documentation` (1rps).
|
|
8
|
-
- Get your own API Key at [enso.finance/developers](https://enso.
|
|
8
|
+
- Get your own API Key at [enso.finance/developers](https://developers.enso.build/).
|
|
9
9
|
* OpenAPI spec version: 1.0
|
|
10
10
|
*/
|
|
11
11
|
import type { CallOutput } from "./callOutput";
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
- Find detailed documentation on [docs.enso.finance](https://docs.enso.finance).
|
|
6
6
|
- To use the API, **you must include your API Key in the Authorization header** (Bearer format).
|
|
7
7
|
- For testing, Swagger pre-authorizes you using the key: `1e02632d-6feb-4a75-a157-documentation` (1rps).
|
|
8
|
-
- Get your own API Key at [enso.finance/developers](https://enso.
|
|
8
|
+
- Get your own API Key at [enso.finance/developers](https://developers.enso.build/).
|
|
9
9
|
* OpenAPI spec version: 1.0
|
|
10
10
|
*/
|
|
11
11
|
import type { MultiDepositArgsDto } from "./multiDepositArgsDto";
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
- Find detailed documentation on [docs.enso.finance](https://docs.enso.finance).
|
|
6
6
|
- To use the API, **you must include your API Key in the Authorization header** (Bearer format).
|
|
7
7
|
- For testing, Swagger pre-authorizes you using the key: `1e02632d-6feb-4a75-a157-documentation` (1rps).
|
|
8
|
-
- Get your own API Key at [enso.finance/developers](https://enso.
|
|
8
|
+
- Get your own API Key at [enso.finance/developers](https://developers.enso.build/).
|
|
9
9
|
* OpenAPI spec version: 1.0
|
|
10
10
|
*/
|
|
11
11
|
import type { MultiDepositArgsDtoAmountInItem } from "./multiDepositArgsDtoAmountInItem";
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
- Find detailed documentation on [docs.enso.finance](https://docs.enso.finance).
|
|
6
6
|
- To use the API, **you must include your API Key in the Authorization header** (Bearer format).
|
|
7
7
|
- For testing, Swagger pre-authorizes you using the key: `1e02632d-6feb-4a75-a157-documentation` (1rps).
|
|
8
|
-
- Get your own API Key at [enso.finance/developers](https://enso.
|
|
8
|
+
- Get your own API Key at [enso.finance/developers](https://developers.enso.build/).
|
|
9
9
|
* OpenAPI spec version: 1.0
|
|
10
10
|
*/
|
|
11
11
|
import type { MultiDepositArgsDtoAmountInItemAnyOf } from "./multiDepositArgsDtoAmountInItemAnyOf";
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
- Find detailed documentation on [docs.enso.finance](https://docs.enso.finance).
|
|
6
6
|
- To use the API, **you must include your API Key in the Authorization header** (Bearer format).
|
|
7
7
|
- For testing, Swagger pre-authorizes you using the key: `1e02632d-6feb-4a75-a157-documentation` (1rps).
|
|
8
|
-
- Get your own API Key at [enso.finance/developers](https://enso.
|
|
8
|
+
- Get your own API Key at [enso.finance/developers](https://developers.enso.build/).
|
|
9
9
|
* OpenAPI spec version: 1.0
|
|
10
10
|
*/
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
- Find detailed documentation on [docs.enso.finance](https://docs.enso.finance).
|
|
6
6
|
- To use the API, **you must include your API Key in the Authorization header** (Bearer format).
|
|
7
7
|
- For testing, Swagger pre-authorizes you using the key: `1e02632d-6feb-4a75-a157-documentation` (1rps).
|
|
8
|
-
- Get your own API Key at [enso.finance/developers](https://enso.
|
|
8
|
+
- Get your own API Key at [enso.finance/developers](https://developers.enso.build/).
|
|
9
9
|
* OpenAPI spec version: 1.0
|
|
10
10
|
*/
|
|
11
11
|
import type { MultiOutSingleDepositArgsDto } from "./multiOutSingleDepositArgsDto";
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
- Find detailed documentation on [docs.enso.finance](https://docs.enso.finance).
|
|
6
6
|
- To use the API, **you must include your API Key in the Authorization header** (Bearer format).
|
|
7
7
|
- For testing, Swagger pre-authorizes you using the key: `1e02632d-6feb-4a75-a157-documentation` (1rps).
|
|
8
|
-
- Get your own API Key at [enso.finance/developers](https://enso.
|
|
8
|
+
- Get your own API Key at [enso.finance/developers](https://developers.enso.build/).
|
|
9
9
|
* OpenAPI spec version: 1.0
|
|
10
10
|
*/
|
|
11
11
|
import type { MultiOutSingleDepositArgsDtoAmountIn } from "./multiOutSingleDepositArgsDtoAmountIn";
|