@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
|
@@ -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 { ActionAction } from "./actionAction";
|
|
@@ -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
|
|
|
@@ -21,6 +21,7 @@ export const ActionAction = {
|
|
|
21
21
|
singledeposit: "singledeposit",
|
|
22
22
|
singledepositwithpositionid: "singledepositwithpositionid",
|
|
23
23
|
multideposit: "multideposit",
|
|
24
|
+
multidepositwithpositionid: "multidepositwithpositionid",
|
|
24
25
|
tokenizedsingledeposit: "tokenizedsingledeposit",
|
|
25
26
|
tokenizedmultideposit: "tokenizedmultideposit",
|
|
26
27
|
multioutsingledeposit: "multioutsingledeposit",
|
|
@@ -49,4 +50,5 @@ export const ActionAction = {
|
|
|
49
50
|
fee: "fee",
|
|
50
51
|
ensofee: "ensofee",
|
|
51
52
|
paymasterfee: "paymasterfee",
|
|
53
|
+
depositposition: "depositposition",
|
|
52
54
|
} as const;
|
|
@@ -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 { ActionToBundleAction } from "./actionToBundleAction";
|
|
@@ -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
|
|
|
@@ -22,6 +22,7 @@ export const ActionToBundleAction = {
|
|
|
22
22
|
singledeposit: "singledeposit",
|
|
23
23
|
singledepositwithpositionid: "singledepositwithpositionid",
|
|
24
24
|
multideposit: "multideposit",
|
|
25
|
+
multidepositwithpositionid: "multidepositwithpositionid",
|
|
25
26
|
tokenizedsingledeposit: "tokenizedsingledeposit",
|
|
26
27
|
tokenizedmultideposit: "tokenizedmultideposit",
|
|
27
28
|
multioutsingledeposit: "multioutsingledeposit",
|
|
@@ -50,4 +51,5 @@ export const ActionToBundleAction = {
|
|
|
50
51
|
fee: "fee",
|
|
51
52
|
ensofee: "ensofee",
|
|
52
53
|
paymasterfee: "paymasterfee",
|
|
54
|
+
depositposition: "depositposition",
|
|
53
55
|
} as const;
|
|
@@ -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 { ApproveArgsDto } from "./approveArgsDto";
|
|
@@ -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 { ApproveArgsDtoAmount } from "./approveArgsDtoAmount";
|
|
@@ -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 { BalanceArgsDto } from "./balanceArgsDto";
|
|
@@ -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 { BorrowArgsDto } from "./borrowArgsDto";
|
|
@@ -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 { BorrowArgsDtoAmountOut } from "./borrowArgsDtoAmountOut";
|
|
@@ -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 { BridgeArgsDto } from "./bridgeArgsDto";
|
|
@@ -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 { BridgeArgsDtoAmountIn } from "./bridgeArgsDtoAmountIn";
|
|
@@ -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 { RouteActionDto } from "./routeActionDto";
|
|
@@ -0,0 +1,33 @@
|
|
|
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 BridgeLatencyEstimate {
|
|
13
|
+
fromChainId: number;
|
|
14
|
+
toChainId: number;
|
|
15
|
+
/** Token bridged to the destination chain */
|
|
16
|
+
token: string;
|
|
17
|
+
/** Estimated bridge latency in seconds */
|
|
18
|
+
estimatedSeconds: number;
|
|
19
|
+
/** Send confirmations used for the estimation */
|
|
20
|
+
sendConfirmations?: number;
|
|
21
|
+
/** Receive confirmations */
|
|
22
|
+
receiveConfirmations?: number;
|
|
23
|
+
/** Average block time assumed for the source chain (seconds) */
|
|
24
|
+
sendBlockTimeSeconds?: number;
|
|
25
|
+
/** Average block time assumed for the destination chain (seconds) */
|
|
26
|
+
receiveBlockTimeSeconds?: number;
|
|
27
|
+
/** Bridge implementation or provider that produced the estimate */
|
|
28
|
+
bridge?: string;
|
|
29
|
+
/** Source of the data (defaults, override, fallback) */
|
|
30
|
+
source?: string;
|
|
31
|
+
/** Optional note describing overrides or fallbacks applied */
|
|
32
|
+
note?: string;
|
|
33
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
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 { BridgeTransactionResponseStatus } from "./bridgeTransactionResponseStatus";
|
|
12
|
+
import type { LayerZeroMessageStatus } from "./layerZeroMessageStatus";
|
|
13
|
+
import type { EnsoEvent } from "./ensoEvent";
|
|
14
|
+
import type { EnsoMetadata } from "./ensoMetadata";
|
|
15
|
+
|
|
16
|
+
export interface BridgeTransactionResponse {
|
|
17
|
+
/** Source chain ID */
|
|
18
|
+
sourceChainId: number;
|
|
19
|
+
/** Source transaction hash */
|
|
20
|
+
sourceTxHash: string;
|
|
21
|
+
/** Destination chain ID (if known) */
|
|
22
|
+
destinationChainId?: number;
|
|
23
|
+
/** Destination transaction hash (if completed) */
|
|
24
|
+
destinationTxHash?: string;
|
|
25
|
+
/** Overall bridge status */
|
|
26
|
+
status: BridgeTransactionResponseStatus;
|
|
27
|
+
/** LayerZero message information */
|
|
28
|
+
layerZeroMessage?: LayerZeroMessageStatus;
|
|
29
|
+
/** Enso shortcut event from source chain (ShortcutExecuted + execution result) */
|
|
30
|
+
ensoSourceEvent?: EnsoEvent;
|
|
31
|
+
/** Enso shortcut event from destination chain (ShortcutExecuted + execution result) */
|
|
32
|
+
ensoDestinationEvent?: EnsoEvent;
|
|
33
|
+
/** Enso transaction metadata */
|
|
34
|
+
ensoMetadata?: EnsoMetadata;
|
|
35
|
+
/** Error message if something went wrong */
|
|
36
|
+
error?: string;
|
|
37
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
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
|
+
/**
|
|
13
|
+
* Overall bridge status
|
|
14
|
+
*/
|
|
15
|
+
export type BridgeTransactionResponseStatus =
|
|
16
|
+
(typeof BridgeTransactionResponseStatus)[keyof typeof BridgeTransactionResponseStatus];
|
|
17
|
+
|
|
18
|
+
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
19
|
+
export const BridgeTransactionResponseStatus = {
|
|
20
|
+
pending: "pending",
|
|
21
|
+
inflight: "inflight",
|
|
22
|
+
delivered: "delivered",
|
|
23
|
+
failed: "failed",
|
|
24
|
+
unknown: "unknown",
|
|
25
|
+
} as const;
|
|
@@ -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 { RouteActionDto } from "./routeActionDto";
|
|
@@ -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 { BundleControllerBundleShortcutTransactionRoutingStrategy } from "./bundleControllerBundleShortcutTransactionRoutingStrategy";
|
|
@@ -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,7 +15,7 @@ export type BundleControllerBundleShortcutTransactionRoutingStrategy =
|
|
|
15
15
|
|
|
16
16
|
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
17
17
|
export const BundleControllerBundleShortcutTransactionRoutingStrategy = {
|
|
18
|
-
ensowallet: "ensowallet",
|
|
18
|
+
"ensowallet-v2": "ensowallet-v2",
|
|
19
19
|
router: "router",
|
|
20
20
|
delegate: "delegate",
|
|
21
21
|
"router-legacy": "router-legacy",
|
|
@@ -5,15 +5,17 @@
|
|
|
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 { ActionToBundle } from "./actionToBundle";
|
|
12
12
|
import type { BundleShortcutTransactionAmountsOut } from "./bundleShortcutTransactionAmountsOut";
|
|
13
13
|
import type { Hop } from "./hop";
|
|
14
14
|
import type { Transaction } from "./transaction";
|
|
15
|
+
import type { BundleShortcutTransactionMinAmountsOut } from "./bundleShortcutTransactionMinAmountsOut";
|
|
15
16
|
import type { BundleShortcutTransactionFeeAmount } from "./bundleShortcutTransactionFeeAmount";
|
|
16
17
|
import type { UserOperation } from "./userOperation";
|
|
18
|
+
import type { BridgeLatencyEstimate } from "./bridgeLatencyEstimate";
|
|
17
19
|
|
|
18
20
|
export interface BundleShortcutTransaction {
|
|
19
21
|
bundle: ActionToBundle[];
|
|
@@ -27,9 +29,16 @@ export interface BundleShortcutTransaction {
|
|
|
27
29
|
createdAt: number;
|
|
28
30
|
/** The tx object to use in `ethers` */
|
|
29
31
|
tx: Transaction;
|
|
30
|
-
/**
|
|
31
|
-
|
|
32
|
-
|
|
32
|
+
/** Expected minimal output amounts by token address */
|
|
33
|
+
minAmountsOut?: BundleShortcutTransactionMinAmountsOut;
|
|
34
|
+
/**
|
|
35
|
+
* Price impact in basis points, null if USD price not found
|
|
36
|
+
* @nullable
|
|
37
|
+
*/
|
|
38
|
+
priceImpact: number | null;
|
|
39
|
+
feeAmount?: BundleShortcutTransactionFeeAmount;
|
|
33
40
|
/** The ERC-4337 user operation object */
|
|
34
41
|
userOp: UserOperation;
|
|
42
|
+
/** Estimated bridging durations for any bridge hops */
|
|
43
|
+
bridgingEstimates?: BridgeLatencyEstimate[];
|
|
35
44
|
}
|
|
@@ -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
|
|
|
@@ -0,0 +1,15 @@
|
|
|
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
|
+
/**
|
|
13
|
+
* Expected minimal output amounts by token address
|
|
14
|
+
*/
|
|
15
|
+
export type BundleShortcutTransactionMinAmountsOut = { [key: string]: unknown };
|
|
@@ -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 { CallArgsDto } from "./callArgsDto";
|
|
@@ -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 { CallArgsDtoArgsItem } from "./callArgsDtoArgsItem";
|
|
@@ -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 { CallArgsDtoArgsItemAnyOf } from "./callArgsDtoArgsItemAnyOf";
|
|
@@ -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 { 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
|
|
|
@@ -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 { DepositArgsDto } from "./depositArgsDto";
|
|
@@ -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 { DepositArgsDtoTokenIn } from "./depositArgsDtoTokenIn";
|
|
@@ -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
|
|
|
@@ -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 { DepositCLMMArgsDto } from "./depositCLMMArgsDto";
|
|
@@ -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 { DepositCLMMArgsDtoAmountInItem } from "./depositCLMMArgsDtoAmountInItem";
|
|
@@ -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 { DepositCLMMArgsDtoAmountInItemAnyOf } from "./depositCLMMArgsDtoAmountInItemAnyOf";
|
|
@@ -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
|
|