@northstake/northstakeapi 1.0.12 → 1.0.13
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/.openapi-generator/FILES +30 -27
- package/api/accountApi.ts +38 -18
- package/api/apis.ts +17 -17
- package/api/depositAddressesApi.ts +71 -34
- package/api/linkedWalletsApi.ts +104 -50
- package/api/liquidityProviderApi.ts +37 -17
- package/api/{stakingPartnerManagedUsersApi.ts → managedUsersApi.ts} +151 -82
- package/api/{stakingPartnerManagedUsersDepositAddressesApi.ts → managedUsersDepositAddressesApi.ts} +44 -25
- package/api/{stakingPartnerManagedUsersLinkedWalletsApi.ts → managedUsersLinkedWalletsApi.ts} +115 -65
- package/api/{stakingPartnerManagedUsersOrdersApi.ts → managedUsersOrdersApi.ts} +151 -84
- package/api/{stakingPartnerManagedUsersPortfolioApi.ts → managedUsersPortfolioApi.ts} +44 -25
- package/api/{stakingPartnerManagedUsersStatsApi.ts → managedUsersTransactionsApi.ts} +83 -28
- package/api/{stakingPartnerManagedUsersValidatorsApi.ts → managedUsersValidatorsApi.ts} +43 -24
- package/api/ordersApi.ts +141 -69
- package/api/portfolioApi.ts +38 -18
- package/api/{statsApi.ts → transactionsApi.ts} +73 -33
- package/api/validatorMarketplaceBuyersApi.ts +145 -77
- package/api/validatorMarketplaceSellersApi.ts +228 -128
- package/api/validatorMarketplaceWebhooksApi.ts +106 -52
- package/api/validatorsApi.ts +42 -24
- package/api.ts +174 -89
- package/dist/api/accountApi.d.ts +7 -9
- package/dist/api/accountApi.js +3 -2
- package/dist/api/apis.d.ts +17 -17
- package/dist/api/apis.js +17 -17
- package/dist/api/depositAddressesApi.d.ts +8 -10
- package/dist/api/depositAddressesApi.js +8 -6
- package/dist/api/linkedWalletsApi.d.ts +11 -13
- package/dist/api/linkedWalletsApi.js +15 -11
- package/dist/api/liquidityProviderApi.d.ts +8 -10
- package/dist/api/liquidityProviderApi.js +3 -2
- package/dist/api/{stakingPartnerManagedUsersApi.d.ts → managedUsersApi.d.ts} +18 -20
- package/dist/api/{stakingPartnerManagedUsersApi.js → managedUsersApi.js} +34 -30
- package/dist/api/{stakingPartnerManagedUsersDepositAddressesApi.d.ts → managedUsersDepositAddressesApi.d.ts} +11 -13
- package/dist/api/{stakingPartnerManagedUsersDepositAddressesApi.js → managedUsersDepositAddressesApi.js} +15 -14
- package/dist/api/{stakingPartnerManagedUsersLinkedWalletsApi.d.ts → managedUsersLinkedWalletsApi.d.ts} +13 -15
- package/dist/api/{stakingPartnerManagedUsersLinkedWalletsApi.js → managedUsersLinkedWalletsApi.js} +32 -29
- package/dist/api/managedUsersOrdersApi.d.ts +94 -0
- package/dist/api/{stakingPartnerManagedUsersOrdersApi.js → managedUsersOrdersApi.js} +39 -35
- package/dist/api/{stakingPartnerManagedUsersPortfolioApi.d.ts → managedUsersPortfolioApi.d.ts} +10 -12
- package/dist/api/{stakingPartnerManagedUsersPortfolioApi.js → managedUsersPortfolioApi.js} +15 -14
- package/dist/api/managedUsersTransactionsApi.d.ts +68 -0
- package/dist/api/{stakingPartnerManagedUsersStatsApi.js → managedUsersTransactionsApi.js} +43 -18
- package/dist/api/{stakingPartnerManagedUsersValidatorsApi.d.ts → managedUsersValidatorsApi.d.ts} +9 -11
- package/dist/api/{stakingPartnerManagedUsersValidatorsApi.js → managedUsersValidatorsApi.js} +14 -13
- package/dist/api/ordersApi.d.ts +15 -17
- package/dist/api/ordersApi.js +23 -18
- package/dist/api/portfolioApi.d.ts +7 -9
- package/dist/api/portfolioApi.js +3 -2
- package/dist/api/{statsApi.d.ts → transactionsApi.d.ts} +26 -15
- package/dist/api/{statsApi.js → transactionsApi.js} +33 -20
- package/dist/api/validatorMarketplaceBuyersApi.d.ts +15 -17
- package/dist/api/validatorMarketplaceBuyersApi.js +26 -22
- package/dist/api/validatorMarketplaceSellersApi.d.ts +29 -32
- package/dist/api/validatorMarketplaceSellersApi.js +58 -52
- package/dist/api/validatorMarketplaceWebhooksApi.d.ts +15 -17
- package/dist/api/validatorMarketplaceWebhooksApi.js +17 -14
- package/dist/api/validatorsApi.d.ts +7 -9
- package/dist/api/validatorsApi.js +3 -2
- package/dist/api.d.ts +130 -89
- package/dist/api.js +153 -90
- package/dist/model/accountEntity.d.ts +3 -1
- package/dist/model/accountEntity.js +3 -5
- package/dist/model/{getAllManagedUsers200Response.d.ts → allManagedUsersResponse.d.ts} +1 -1
- package/dist/model/{getAllManagedUsers200Response.js → allManagedUsersResponse.js} +6 -6
- package/dist/model/baseOrder.d.ts +6 -11
- package/dist/model/baseOrder.js +0 -13
- package/dist/model/createManagedUserRequest.d.ts +1 -1
- package/dist/model/createManagedUserRequest.js +1 -1
- package/dist/model/createOrderForManagedUserRequest.d.ts +8 -11
- package/dist/model/createOrderForManagedUserRequest.js +3 -11
- package/dist/model/{validatorKeyKeystoreCryptoChecksum.d.ts → createRFQRequest.d.ts} +3 -3
- package/dist/model/{createRFQDocumentRequest.js → createRFQRequest.js} +8 -8
- package/dist/model/depositAccount.d.ts +3 -0
- package/dist/model/depositAccount.js +3 -0
- package/dist/model/{getDepositAddressesForManagedUser200Response.d.ts → depositAddressesForManagedUserResponse.d.ts} +1 -1
- package/dist/model/{getDepositAddressesForManagedUser200Response.js → depositAddressesForManagedUserResponse.js} +6 -6
- package/dist/model/errorResponse.d.ts +3 -0
- package/dist/model/errorResponse.js +3 -0
- package/dist/model/{validatorKey.d.ts → ethereumValidatorKey.d.ts} +6 -14
- package/dist/model/{validatorKey.js → ethereumValidatorKey.js} +10 -17
- package/dist/model/ethereumValidatorKeyKeystore.d.ts +31 -0
- package/dist/model/{validatorKeyKeystore.js → ethereumValidatorKeyKeystore.js} +7 -7
- package/dist/model/ethereumValidatorKeyKeystoreCrypto.d.ts +30 -0
- package/dist/model/{validatorKeyKeystoreCrypto.js → ethereumValidatorKeyKeystoreCrypto.js} +9 -9
- package/dist/model/ethereumValidatorKeyKeystoreCryptoChecksum.d.ts +27 -0
- package/dist/model/{validatorKeyKeystoreCryptoCipher.js → ethereumValidatorKeyKeystoreCryptoChecksum.js} +8 -8
- package/dist/model/ethereumValidatorKeyKeystoreCryptoCipher.d.ts +28 -0
- package/dist/model/ethereumValidatorKeyKeystoreCryptoCipher.js +38 -0
- package/dist/model/{submitQuoteForRFQDocumentRequest.d.ts → ethereumValidatorKeyKeystoreCryptoCipherParams.d.ts} +2 -2
- package/dist/model/{validatorKeyKeystoreCryptoCipherParams.js → ethereumValidatorKeyKeystoreCryptoCipherParams.js} +6 -6
- package/dist/model/{getTransactionStatistics200ResponseInner.d.ts → ethereumValidatorKeyKeystoreCryptoKdf.d.ts} +5 -7
- package/dist/model/ethereumValidatorKeyKeystoreCryptoKdf.js +38 -0
- package/dist/model/ethereumValidatorKeyKeystoreCryptoKdfParams.d.ts +29 -0
- package/dist/model/{validatorKeyKeystoreCryptoKdfParams.js → ethereumValidatorKeyKeystoreCryptoKdfParams.js} +6 -6
- package/dist/model/exitEstimateBase.d.ts +1 -1
- package/dist/model/exitEstimateBase.js +1 -1
- package/dist/model/exitEstimateSeller.d.ts +2 -2
- package/dist/model/exitEstimateSeller.js +2 -2
- package/dist/model/getTransactionsResponse.d.ts +38 -0
- package/dist/model/getTransactionsResponse.js +43 -0
- package/dist/model/managedUser.d.ts +4 -1
- package/dist/model/managedUser.js +4 -1
- package/dist/model/models.d.ts +28 -25
- package/dist/model/models.js +99 -103
- package/dist/model/{createNewOrderRequest.d.ts → newOrderRequest.d.ts} +10 -13
- package/dist/model/{rewardStat.js → newOrderRequest.js} +18 -18
- package/dist/model/orderDocument.d.ts +17 -18
- package/dist/model/orderDocument.js +10 -20
- package/dist/model/portfolioEntity.d.ts +3 -0
- package/dist/model/portfolioEntity.js +3 -0
- package/dist/model/provideEscrowHashForRFQDocumentRequest.d.ts +1 -1
- package/dist/model/provideEscrowHashForRFQDocumentRequest.js +1 -1
- package/dist/model/quote.d.ts +1 -1
- package/dist/model/quote.js +1 -1
- package/dist/model/rFQBids.d.ts +3 -3
- package/dist/model/rFQBids.js +3 -3
- package/dist/model/rFQDocumentBase.d.ts +5 -5
- package/dist/model/rFQDocumentBase.js +5 -5
- package/dist/model/rFQDocumentBaseUniqueEscrowVault.d.ts +1 -1
- package/dist/model/rFQDocumentBaseUniqueEscrowVault.js +1 -1
- package/dist/model/rFQDocumentBuyer.d.ts +5 -5
- package/dist/model/rFQDocumentBuyer.js +5 -5
- package/dist/model/rFQDocumentBuyerAllOfValidators.d.ts +2 -2
- package/dist/model/rFQDocumentBuyerAllOfValidators.js +2 -2
- package/dist/model/rFQDocumentBuyerStatusFilterEnum.d.ts +1 -8
- package/dist/model/rFQDocumentBuyerStatusFilterEnum.js +0 -10
- package/dist/model/rFQDocumentSeller.d.ts +7 -7
- package/dist/model/rFQDocumentSeller.js +7 -7
- package/dist/model/rFQDocumentSellerAllOfValidators.d.ts +2 -2
- package/dist/model/rFQDocumentSellerAllOfValidators.js +2 -2
- package/dist/model/rFQDocumentSellerStatusFilterEnum.d.ts +1 -9
- package/dist/model/rFQDocumentSellerStatusFilterEnum.js +0 -11
- package/dist/model/rFQDocumentStatusEnum.d.ts +1 -6
- package/dist/model/rFQDocumentStatusEnum.js +0 -8
- package/dist/model/rFQDocumentUpdate.d.ts +5 -5
- package/dist/model/rFQDocumentUpdate.js +5 -5
- package/dist/model/rFQUpdatePayload.d.ts +2 -2
- package/dist/model/rFQWebhookEventType.d.ts +4 -8
- package/dist/model/rFQWebhookEventType.js +0 -10
- package/dist/model/{validatorKeyKeystoreCryptoCipherParams.d.ts → registerWithdrawalRecipientSettlementRequest.d.ts} +2 -2
- package/dist/model/registerWithdrawalRecipientSettlementRequest.js +28 -0
- package/dist/model/settlementStepAcceptedQuote.d.ts +1 -1
- package/dist/model/settlementStepAcceptedQuote.js +1 -1
- package/dist/model/settlementStepEscrowPayment.d.ts +1 -1
- package/dist/model/settlementStepEscrowPayment.js +1 -1
- package/dist/model/settlementStepEscrowReleased.d.ts +2 -2
- package/dist/model/settlementStepEscrowReleased.js +2 -2
- package/dist/model/settlementStepWithdrawalRecipientSettlement.d.ts +1 -1
- package/dist/model/settlementStepWithdrawalRecipientSettlement.js +1 -1
- package/dist/model/settlementSteps.d.ts +4 -4
- package/dist/model/settlementSteps.js +4 -4
- package/dist/model/stakeOrder.d.ts +11 -14
- package/dist/model/stakeOrder.js +6 -11
- package/dist/model/stepStatus.d.ts +1 -5
- package/dist/model/stepStatus.js +0 -10
- package/dist/model/{rejectQuoteForRFQDocumentRequest.d.ts → submittedQuote.d.ts} +2 -2
- package/dist/model/{submitQuoteForRFQDocumentRequest.js → submittedQuote.js} +7 -7
- package/dist/model/tokenEnum.d.ts +1 -11
- package/dist/model/tokenEnum.js +0 -16
- package/dist/model/{transactionStat.d.ts → transaction.d.ts} +16 -15
- package/dist/model/transaction.js +56 -0
- package/dist/model/transactionEventTypeEnum.d.ts +15 -0
- package/dist/model/{configSource.d.ts → transactionEventTypeEnum.js} +2 -4
- package/dist/model/transactionsForManagedUser.d.ts +38 -0
- package/dist/model/transactionsForManagedUser.js +43 -0
- package/dist/model/unstakeOrder.d.ts +6 -11
- package/dist/model/unstakeOrder.js +0 -13
- package/dist/model/unstakeStepType.d.ts +1 -16
- package/dist/model/unstakeStepType.js +0 -21
- package/dist/model/validatorContractTypeEnum.d.ts +1 -4
- package/dist/model/validatorContractTypeEnum.js +0 -6
- package/dist/model/validatorInfo.d.ts +20 -18
- package/dist/model/validatorInfo.js +10 -20
- package/dist/model/validatorInfoValidatorType.d.ts +1 -1
- package/dist/model/validatorInfoValidatorType.js +1 -1
- package/dist/model/validatorInfoValidatorTypeContract.d.ts +1 -1
- package/dist/model/validatorInfoValidatorTypeContract.js +1 -1
- package/dist/model/validatorKeyHolderEnum.d.ts +1 -4
- package/dist/model/validatorKeyHolderEnum.js +0 -6
- package/dist/model/wallet.d.ts +3 -0
- package/dist/model/wallet.js +3 -0
- package/dist/model/webhookPayload.d.ts +3 -0
- package/dist/model/webhookPayload.js +3 -0
- package/dist/model/webhookPayloadData.d.ts +2 -2
- package/dist/model/webhookPayloadRFQAvailable.d.ts +1 -1
- package/dist/model/webhookPayloadRFQAvailable.js +1 -1
- package/dist/model/webhookPayloadRFQBidAccepted.d.ts +1 -1
- package/dist/model/webhookPayloadRFQBidAccepted.js +1 -1
- package/dist/model/webhookPayloadRFQBidAcceptedDetails.d.ts +1 -1
- package/dist/model/webhookPayloadRFQBidAcceptedDetails.js +1 -1
- package/dist/model/webhookPayloadRFQBidReceived.d.ts +1 -1
- package/dist/model/webhookPayloadRFQBidReceived.js +1 -1
- package/dist/model/webhookPayloadRFQEscrowEvent.d.ts +1 -1
- package/dist/model/webhookPayloadRFQEscrowEvent.js +1 -1
- package/dist/model/webhookPayloadRFQEscrowEventDetails.d.ts +1 -1
- package/dist/model/webhookPayloadRFQEscrowEventDetails.js +1 -1
- package/dist/model/webhookPayloadRFQEscrowReleased.d.ts +1 -1
- package/dist/model/webhookPayloadRFQEscrowReleased.js +1 -1
- package/dist/model/webhookPayloadRFQEscrowReleasedDetails.d.ts +2 -2
- package/dist/model/webhookPayloadRFQEscrowReleasedDetails.js +2 -2
- package/dist/model/webhookPayloadRFQTransferProposalReceived.d.ts +31 -0
- package/dist/model/webhookPayloadRFQTransferProposalReceived.js +38 -0
- package/dist/model/{webhookPayloadRFQValidatorWithdrawalChangeDetails.d.ts → webhookPayloadRFQTransferProposalReceivedDetails.d.ts} +2 -2
- package/dist/model/{webhookPayloadRFQValidatorWithdrawalChangeDetails.js → webhookPayloadRFQTransferProposalReceivedDetails.js} +7 -7
- package/dist/model/webhookPayloadRFQValidatorExited.d.ts +31 -0
- package/dist/model/webhookPayloadRFQValidatorExited.js +38 -0
- package/dist/model/{createRFQDocumentRequest.d.ts → webhookPayloadRFQValidatorExitedDetails.d.ts} +3 -3
- package/dist/model/webhookPayloadRFQValidatorExitedDetails.js +33 -0
- package/dist/model/webhookPayloadRFQValidatorWithdrawalChange.d.ts +3 -3
- package/dist/model/webhookPayloadRFQValidatorWithdrawalChange.js +2 -2
- package/dist/model/withdrawalOrder.d.ts +6 -11
- package/dist/model/withdrawalOrder.js +0 -13
- package/dist/model/withdrawalStepType.d.ts +1 -8
- package/dist/model/withdrawalStepType.js +0 -13
- package/model/accountEntity.ts +8 -11
- package/model/addLinkedWalletForManagedUserRequest.ts +3 -3
- package/model/addLinkedWalletRequest.ts +4 -4
- package/model/{getAllManagedUsers200Response.ts → allManagedUsersResponse.ts} +7 -7
- package/model/baseOrder.ts +11 -18
- package/model/createManagedUserRequest.ts +3 -3
- package/model/createOrderForManagedUserRequest.ts +17 -17
- package/model/{createRFQDocumentRequest.ts → createRFQRequest.ts} +7 -7
- package/model/depositAccount.ts +6 -3
- package/model/{getDepositAddressesForManagedUser200Response.ts → depositAddressesForManagedUserResponse.ts} +5 -5
- package/model/errorResponse.ts +5 -2
- package/model/{validatorKey.ts → ethereumValidatorKey.ts} +11 -29
- package/model/{validatorKeyKeystore.ts → ethereumValidatorKeyKeystore.ts} +11 -11
- package/model/ethereumValidatorKeyKeystoreCrypto.ts +46 -0
- package/model/{validatorKeyKeystoreCryptoChecksum.ts → ethereumValidatorKeyKeystoreCryptoChecksum.ts} +12 -6
- package/model/{validatorKeyKeystoreCryptoKdf.ts → ethereumValidatorKeyKeystoreCryptoCipher.ts} +14 -8
- package/model/{validatorKeyKeystoreCryptoCipherParams.ts → ethereumValidatorKeyKeystoreCryptoCipherParams.ts} +4 -4
- package/model/{validatorKeyKeystoreCryptoCipher.ts → ethereumValidatorKeyKeystoreCryptoKdf.ts} +9 -9
- package/model/{validatorKeyKeystoreCryptoKdfParams.ts → ethereumValidatorKeyKeystoreCryptoKdfParams.ts} +8 -8
- package/model/exitEstimateBase.ts +4 -4
- package/model/exitEstimateSeller.ts +6 -6
- package/model/getTransactionsResponse.ts +59 -0
- package/model/managedUser.ts +7 -4
- package/model/models.ts +270 -93
- package/model/{createNewOrderRequest.ts → newOrderRequest.ts} +21 -21
- package/model/orderDocument.ts +39 -25
- package/model/orderDocumentSteps.ts +3 -3
- package/model/orderUpdatePayload.ts +4 -4
- package/model/portfolioEntity.ts +7 -4
- package/model/provideEscrowHashForRFQDocumentRequest.ts +3 -3
- package/model/quote.ts +5 -5
- package/model/rFQBids.ts +8 -8
- package/model/rFQDocumentBase.ts +13 -13
- package/model/rFQDocumentBaseUniqueEscrowVault.ts +3 -3
- package/model/rFQDocumentBuyer.ts +15 -15
- package/model/rFQDocumentBuyerAllOfValidators.ts +6 -6
- package/model/rFQDocumentBuyerStatusFilterEnum.ts +8 -9
- package/model/rFQDocumentSeller.ts +18 -18
- package/model/rFQDocumentSellerAllOfValidators.ts +6 -6
- package/model/rFQDocumentSellerStatusFilterEnum.ts +9 -10
- package/model/rFQDocumentStatusEnum.ts +6 -7
- package/model/rFQDocumentUpdate.ts +11 -11
- package/model/rFQUpdatePayload.ts +6 -6
- package/model/rFQWebhookEventType.ts +13 -9
- package/model/{rejectQuoteForRFQDocumentRequest.ts → registerWithdrawalRecipientSettlementRequest.ts} +6 -6
- package/model/settlementStepAcceptedQuote.ts +5 -5
- package/model/settlementStepEscrowPayment.ts +5 -5
- package/model/settlementStepEscrowReleased.ts +7 -7
- package/model/settlementStepWithdrawalRecipientSettlement.ts +4 -4
- package/model/settlementSteps.ts +9 -9
- package/model/stakeOrder.ts +19 -19
- package/model/stakeStep.ts +3 -3
- package/model/stakeStepElement.ts +3 -3
- package/model/stepStatus.ts +5 -6
- package/model/{submitQuoteForRFQDocumentRequest.ts → submittedQuote.ts} +5 -5
- package/model/tokenEnum.ts +11 -12
- package/model/transaction.ts +80 -0
- package/model/{configSource.ts → transactionEventTypeEnum.ts} +10 -5
- package/model/transactionsForManagedUser.ts +59 -0
- package/model/unstakeOrder.ts +11 -18
- package/model/unstakeStep.ts +3 -3
- package/model/unstakeStepElement.ts +3 -3
- package/model/unstakeStepType.ts +16 -17
- package/model/validatorContractTypeEnum.ts +4 -5
- package/model/validatorInfo.ts +34 -27
- package/model/validatorInfoValidatorType.ts +4 -4
- package/model/validatorInfoValidatorTypeContract.ts +4 -4
- package/model/validatorKeyHolderEnum.ts +4 -5
- package/model/wallet.ts +7 -4
- package/model/webHookLookupAnswer.ts +5 -5
- package/model/webhookPayload.ts +7 -4
- package/model/webhookPayloadData.ts +8 -8
- package/model/webhookPayloadRFQAvailable.ts +5 -5
- package/model/webhookPayloadRFQBidAccepted.ts +5 -5
- package/model/webhookPayloadRFQBidAcceptedDetails.ts +5 -5
- package/model/webhookPayloadRFQBidReceived.ts +5 -5
- package/model/webhookPayloadRFQEscrowEvent.ts +5 -5
- package/model/webhookPayloadRFQEscrowEventDetails.ts +5 -5
- package/model/webhookPayloadRFQEscrowReleased.ts +5 -5
- package/model/webhookPayloadRFQEscrowReleasedDetails.ts +7 -7
- package/model/webhookPayloadRFQTransferProposalReceived.ts +47 -0
- package/model/{webhookPayloadRFQValidatorWithdrawalChangeDetails.ts → webhookPayloadRFQTransferProposalReceivedDetails.ts} +6 -6
- package/model/webhookPayloadRFQValidatorExited.ts +47 -0
- package/model/webhookPayloadRFQValidatorExitedDetails.ts +37 -0
- package/model/webhookPayloadRFQValidatorWithdrawalChange.ts +7 -7
- package/model/webhookRegistration.ts +4 -4
- package/model/webhookRegistrationDetails.ts +4 -4
- package/model/withdrawalOrder.ts +12 -19
- package/model/withdrawalStep.ts +3 -3
- package/model/withdrawalStepElement.ts +3 -3
- package/model/withdrawalStepType.ts +8 -9
- package/package.json +1 -1
- package/api/northstake.ts +0 -116
- package/dist/api/northstake.d.ts +0 -39
- package/dist/api/northstake.js +0 -82
- package/dist/api/stakingPartnerManagedUsersOrdersApi.d.ts +0 -96
- package/dist/api/stakingPartnerManagedUsersStatsApi.d.ts +0 -53
- package/dist/model/configSource.js +0 -19
- package/dist/model/createNewOrderRequest.js +0 -56
- package/dist/model/getTransactionStatistics200ResponseInner.js +0 -53
- package/dist/model/rejectQuoteForRFQDocumentRequest.js +0 -28
- package/dist/model/rewardStat.d.ts +0 -44
- package/dist/model/transactionStat.js +0 -53
- package/dist/model/validatorKeyKeystore.d.ts +0 -31
- package/dist/model/validatorKeyKeystoreCrypto.d.ts +0 -30
- package/dist/model/validatorKeyKeystoreCryptoChecksum.js +0 -33
- package/dist/model/validatorKeyKeystoreCryptoCipher.d.ts +0 -28
- package/dist/model/validatorKeyKeystoreCryptoKdf.d.ts +0 -27
- package/dist/model/validatorKeyKeystoreCryptoKdf.js +0 -33
- package/dist/model/validatorKeyKeystoreCryptoKdfParams.d.ts +0 -29
- package/model/getTransactionStatistics200ResponseInner.ts +0 -61
- package/model/rewardStat.ts +0 -70
- package/model/transactionStat.ts +0 -79
- package/model/validatorKeyKeystoreCrypto.ts +0 -46
package/model/orderDocument.ts
CHANGED
|
@@ -10,20 +10,24 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
|
|
13
|
-
import {
|
|
13
|
+
import { EthereumValidatorKey } from './ethereumValidatorKey';
|
|
14
14
|
import { OrderDocumentSteps } from './orderDocumentSteps';
|
|
15
15
|
import { TokenEnum } from './tokenEnum';
|
|
16
16
|
import { Wallet } from './wallet';
|
|
17
17
|
|
|
18
|
+
/**
|
|
19
|
+
* Detailed information about a specific order.
|
|
20
|
+
*/
|
|
18
21
|
export class OrderDocument {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
22
|
+
'orderId': string;
|
|
23
|
+
'userId': string;
|
|
24
|
+
'type': OrderDocument;
|
|
25
|
+
'amount'?: number;
|
|
26
|
+
'asset': TokenEnum;
|
|
27
|
+
'status'?: OrderDocument;
|
|
28
|
+
'targetWallet'?: Wallet;
|
|
29
|
+
'validatorKey'?: EthereumValidatorKey | null;
|
|
30
|
+
'steps'?: OrderDocumentSteps;
|
|
27
31
|
|
|
28
32
|
static discriminator: string | undefined = undefined;
|
|
29
33
|
|
|
@@ -49,8 +53,8 @@ export class OrderDocument {
|
|
|
49
53
|
"type": "number"
|
|
50
54
|
},
|
|
51
55
|
{
|
|
52
|
-
"name": "
|
|
53
|
-
"baseName": "
|
|
56
|
+
"name": "asset",
|
|
57
|
+
"baseName": "asset",
|
|
54
58
|
"type": "TokenEnum"
|
|
55
59
|
},
|
|
56
60
|
{
|
|
@@ -63,6 +67,11 @@ export class OrderDocument {
|
|
|
63
67
|
"baseName": "targetWallet",
|
|
64
68
|
"type": "Wallet"
|
|
65
69
|
},
|
|
70
|
+
{
|
|
71
|
+
"name": "validatorKey",
|
|
72
|
+
"baseName": "validatorKey",
|
|
73
|
+
"type": "EthereumValidatorKey"
|
|
74
|
+
},
|
|
66
75
|
{
|
|
67
76
|
"name": "steps",
|
|
68
77
|
"baseName": "steps",
|
|
@@ -75,18 +84,23 @@ export class OrderDocument {
|
|
|
75
84
|
}
|
|
76
85
|
|
|
77
86
|
export namespace OrderDocument {
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
87
|
+
/**
|
|
88
|
+
*
|
|
89
|
+
*/
|
|
90
|
+
export type typeEnum =
|
|
91
|
+
'stake' |
|
|
92
|
+
'unstake' |
|
|
93
|
+
'withdraw';
|
|
94
|
+
/**
|
|
95
|
+
*
|
|
96
|
+
*/
|
|
97
|
+
export type statusEnum =
|
|
98
|
+
'cancelled' |
|
|
99
|
+
'completed' |
|
|
100
|
+
'accepted' |
|
|
101
|
+
'submitted' |
|
|
102
|
+
'pending' |
|
|
103
|
+
'failed' |
|
|
104
|
+
'rejected';
|
|
92
105
|
}
|
|
106
|
+
|
|
@@ -10,7 +10,6 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
|
|
13
|
-
import { RequestFile } from './models';
|
|
14
13
|
import { StakeStepElement } from './stakeStepElement';
|
|
15
14
|
import { StepStatus } from './stepStatus';
|
|
16
15
|
import { UnstakeStep } from './unstakeStep';
|
|
@@ -18,8 +17,8 @@ import { UnstakeStepElement } from './unstakeStepElement';
|
|
|
18
17
|
import { WithdrawalStepElement } from './withdrawalStepElement';
|
|
19
18
|
|
|
20
19
|
export class OrderDocumentSteps {
|
|
21
|
-
|
|
22
|
-
|
|
20
|
+
'steps'?: Array<UnstakeStep>;
|
|
21
|
+
'status'?: StepStatus;
|
|
23
22
|
|
|
24
23
|
static discriminator: string | undefined = undefined;
|
|
25
24
|
|
|
@@ -42,3 +41,4 @@ export class OrderDocumentSteps {
|
|
|
42
41
|
|
|
43
42
|
export namespace OrderDocumentSteps {
|
|
44
43
|
}
|
|
44
|
+
|
|
@@ -10,21 +10,20 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
|
|
13
|
-
import { RequestFile } from './models';
|
|
14
13
|
|
|
15
14
|
export class OrderUpdatePayload {
|
|
16
15
|
/**
|
|
17
16
|
* Unique identifier for the updated order.
|
|
18
17
|
*/
|
|
19
|
-
|
|
18
|
+
'orderId'?: string;
|
|
20
19
|
/**
|
|
21
20
|
* New status of the order.
|
|
22
21
|
*/
|
|
23
|
-
|
|
22
|
+
'status'?: string;
|
|
24
23
|
/**
|
|
25
24
|
* Additional details regarding the order update.
|
|
26
25
|
*/
|
|
27
|
-
|
|
26
|
+
'details'?: object;
|
|
28
27
|
|
|
29
28
|
static discriminator: string | undefined = undefined;
|
|
30
29
|
|
|
@@ -50,3 +49,4 @@ export class OrderUpdatePayload {
|
|
|
50
49
|
}
|
|
51
50
|
}
|
|
52
51
|
|
|
52
|
+
|
package/model/portfolioEntity.ts
CHANGED
|
@@ -10,13 +10,15 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
|
|
13
|
-
import { RequestFile } from './models';
|
|
14
13
|
import { TokenEnum } from './tokenEnum';
|
|
15
14
|
|
|
15
|
+
/**
|
|
16
|
+
* Overview of a managed user\'s account portfolio.
|
|
17
|
+
*/
|
|
16
18
|
export class PortfolioEntity {
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
19
|
+
'asset': TokenEnum;
|
|
20
|
+
'totalAmount': string;
|
|
21
|
+
'stakedAmount': string;
|
|
20
22
|
|
|
21
23
|
static discriminator: string | undefined = undefined;
|
|
22
24
|
|
|
@@ -44,3 +46,4 @@ export class PortfolioEntity {
|
|
|
44
46
|
|
|
45
47
|
export namespace PortfolioEntity {
|
|
46
48
|
}
|
|
49
|
+
|
|
@@ -10,16 +10,15 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
|
|
13
|
-
import { RequestFile } from './models';
|
|
14
13
|
|
|
15
14
|
export class ProvideEscrowHashForRFQDocumentRequest {
|
|
16
|
-
|
|
15
|
+
'transaction_hash': string;
|
|
17
16
|
|
|
18
17
|
static discriminator: string | undefined = undefined;
|
|
19
18
|
|
|
20
19
|
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
|
|
21
20
|
{
|
|
22
|
-
"name": "
|
|
21
|
+
"name": "transaction_hash",
|
|
23
22
|
"baseName": "transaction_hash",
|
|
24
23
|
"type": "string"
|
|
25
24
|
} ];
|
|
@@ -29,3 +28,4 @@ export class ProvideEscrowHashForRFQDocumentRequest {
|
|
|
29
28
|
}
|
|
30
29
|
}
|
|
31
30
|
|
|
31
|
+
|
package/model/quote.ts
CHANGED
|
@@ -10,18 +10,17 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
|
|
13
|
-
import { RequestFile } from './models';
|
|
14
13
|
|
|
15
14
|
export class Quote {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
15
|
+
'quote_id': string;
|
|
16
|
+
'quote': number;
|
|
17
|
+
'timestamp': Date;
|
|
19
18
|
|
|
20
19
|
static discriminator: string | undefined = undefined;
|
|
21
20
|
|
|
22
21
|
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
|
|
23
22
|
{
|
|
24
|
-
"name": "
|
|
23
|
+
"name": "quote_id",
|
|
25
24
|
"baseName": "quote_id",
|
|
26
25
|
"type": "string"
|
|
27
26
|
},
|
|
@@ -41,3 +40,4 @@ export class Quote {
|
|
|
41
40
|
}
|
|
42
41
|
}
|
|
43
42
|
|
|
43
|
+
|
package/model/rFQBids.ts
CHANGED
|
@@ -10,24 +10,23 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
|
|
13
|
-
import { RequestFile } from './models';
|
|
14
13
|
|
|
15
14
|
export class RFQBids {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
15
|
+
'rfq_id': string;
|
|
16
|
+
'liquidity_provider_id': string;
|
|
17
|
+
'quote': number;
|
|
18
|
+
'settlement_hash': string;
|
|
20
19
|
|
|
21
20
|
static discriminator: string | undefined = undefined;
|
|
22
21
|
|
|
23
22
|
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
|
|
24
23
|
{
|
|
25
|
-
"name": "
|
|
24
|
+
"name": "rfq_id",
|
|
26
25
|
"baseName": "rfq_id",
|
|
27
26
|
"type": "string"
|
|
28
27
|
},
|
|
29
28
|
{
|
|
30
|
-
"name": "
|
|
29
|
+
"name": "liquidity_provider_id",
|
|
31
30
|
"baseName": "liquidity_provider_id",
|
|
32
31
|
"type": "string"
|
|
33
32
|
},
|
|
@@ -37,7 +36,7 @@ export class RFQBids {
|
|
|
37
36
|
"type": "number"
|
|
38
37
|
},
|
|
39
38
|
{
|
|
40
|
-
"name": "
|
|
39
|
+
"name": "settlement_hash",
|
|
41
40
|
"baseName": "settlement_hash",
|
|
42
41
|
"type": "string"
|
|
43
42
|
} ];
|
|
@@ -47,3 +46,4 @@ export class RFQBids {
|
|
|
47
46
|
}
|
|
48
47
|
}
|
|
49
48
|
|
|
49
|
+
|
package/model/rFQDocumentBase.ts
CHANGED
|
@@ -10,19 +10,18 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
|
|
13
|
-
import { RequestFile } from './models';
|
|
14
13
|
import { RFQDocumentBaseUniqueEscrowVault } from './rFQDocumentBaseUniqueEscrowVault';
|
|
15
14
|
import { RFQDocumentStatusEnum } from './rFQDocumentStatusEnum';
|
|
16
15
|
import { SettlementSteps } from './settlementSteps';
|
|
17
16
|
|
|
18
17
|
export class RFQDocumentBase {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
18
|
+
'id': string;
|
|
19
|
+
'status': RFQDocumentStatusEnum;
|
|
20
|
+
'total_balance': number;
|
|
21
|
+
'payment_address': string;
|
|
22
|
+
'estimated_all_validators_exited_at': Date;
|
|
23
|
+
'unique_escrow_vault'?: RFQDocumentBaseUniqueEscrowVault;
|
|
24
|
+
'settlement_steps'?: SettlementSteps;
|
|
26
25
|
|
|
27
26
|
static discriminator: string | undefined = undefined;
|
|
28
27
|
|
|
@@ -38,27 +37,27 @@ export class RFQDocumentBase {
|
|
|
38
37
|
"type": "RFQDocumentStatusEnum"
|
|
39
38
|
},
|
|
40
39
|
{
|
|
41
|
-
"name": "
|
|
40
|
+
"name": "total_balance",
|
|
42
41
|
"baseName": "total_balance",
|
|
43
42
|
"type": "number"
|
|
44
43
|
},
|
|
45
44
|
{
|
|
46
|
-
"name": "
|
|
45
|
+
"name": "payment_address",
|
|
47
46
|
"baseName": "payment_address",
|
|
48
47
|
"type": "string"
|
|
49
48
|
},
|
|
50
49
|
{
|
|
51
|
-
"name": "
|
|
50
|
+
"name": "estimated_all_validators_exited_at",
|
|
52
51
|
"baseName": "estimated_all_validators_exited_at",
|
|
53
52
|
"type": "Date"
|
|
54
53
|
},
|
|
55
54
|
{
|
|
56
|
-
"name": "
|
|
55
|
+
"name": "unique_escrow_vault",
|
|
57
56
|
"baseName": "unique_escrow_vault",
|
|
58
57
|
"type": "RFQDocumentBaseUniqueEscrowVault"
|
|
59
58
|
},
|
|
60
59
|
{
|
|
61
|
-
"name": "
|
|
60
|
+
"name": "settlement_steps",
|
|
62
61
|
"baseName": "settlement_steps",
|
|
63
62
|
"type": "SettlementSteps"
|
|
64
63
|
} ];
|
|
@@ -70,3 +69,4 @@ export class RFQDocumentBase {
|
|
|
70
69
|
|
|
71
70
|
export namespace RFQDocumentBase {
|
|
72
71
|
}
|
|
72
|
+
|
|
@@ -10,16 +10,15 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
|
|
13
|
-
import { RequestFile } from './models';
|
|
14
13
|
|
|
15
14
|
export class RFQDocumentBaseUniqueEscrowVault {
|
|
16
|
-
|
|
15
|
+
'vault_address': string;
|
|
17
16
|
|
|
18
17
|
static discriminator: string | undefined = undefined;
|
|
19
18
|
|
|
20
19
|
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
|
|
21
20
|
{
|
|
22
|
-
"name": "
|
|
21
|
+
"name": "vault_address",
|
|
23
22
|
"baseName": "vault_address",
|
|
24
23
|
"type": "string"
|
|
25
24
|
} ];
|
|
@@ -29,3 +28,4 @@ export class RFQDocumentBaseUniqueEscrowVault {
|
|
|
29
28
|
}
|
|
30
29
|
}
|
|
31
30
|
|
|
31
|
+
|
|
@@ -10,7 +10,6 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
|
|
13
|
-
import { RequestFile } from './models';
|
|
14
13
|
import { Quote } from './quote';
|
|
15
14
|
import { RFQDocumentBaseUniqueEscrowVault } from './rFQDocumentBaseUniqueEscrowVault';
|
|
16
15
|
import { RFQDocumentBuyerAllOfValidators } from './rFQDocumentBuyerAllOfValidators';
|
|
@@ -18,15 +17,15 @@ import { RFQDocumentStatusEnum } from './rFQDocumentStatusEnum';
|
|
|
18
17
|
import { SettlementSteps } from './settlementSteps';
|
|
19
18
|
|
|
20
19
|
export class RFQDocumentBuyer {
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
20
|
+
'id': string;
|
|
21
|
+
'status': RFQDocumentStatusEnum;
|
|
22
|
+
'total_balance': number;
|
|
23
|
+
'payment_address': string;
|
|
24
|
+
'estimated_all_validators_exited_at': Date;
|
|
25
|
+
'unique_escrow_vault'?: RFQDocumentBaseUniqueEscrowVault;
|
|
26
|
+
'settlement_steps'?: SettlementSteps;
|
|
27
|
+
'validators': Array<RFQDocumentBuyerAllOfValidators>;
|
|
28
|
+
'quote'?: Quote;
|
|
30
29
|
|
|
31
30
|
static discriminator: string | undefined = undefined;
|
|
32
31
|
|
|
@@ -42,27 +41,27 @@ export class RFQDocumentBuyer {
|
|
|
42
41
|
"type": "RFQDocumentStatusEnum"
|
|
43
42
|
},
|
|
44
43
|
{
|
|
45
|
-
"name": "
|
|
44
|
+
"name": "total_balance",
|
|
46
45
|
"baseName": "total_balance",
|
|
47
46
|
"type": "number"
|
|
48
47
|
},
|
|
49
48
|
{
|
|
50
|
-
"name": "
|
|
49
|
+
"name": "payment_address",
|
|
51
50
|
"baseName": "payment_address",
|
|
52
51
|
"type": "string"
|
|
53
52
|
},
|
|
54
53
|
{
|
|
55
|
-
"name": "
|
|
54
|
+
"name": "estimated_all_validators_exited_at",
|
|
56
55
|
"baseName": "estimated_all_validators_exited_at",
|
|
57
56
|
"type": "Date"
|
|
58
57
|
},
|
|
59
58
|
{
|
|
60
|
-
"name": "
|
|
59
|
+
"name": "unique_escrow_vault",
|
|
61
60
|
"baseName": "unique_escrow_vault",
|
|
62
61
|
"type": "RFQDocumentBaseUniqueEscrowVault"
|
|
63
62
|
},
|
|
64
63
|
{
|
|
65
|
-
"name": "
|
|
64
|
+
"name": "settlement_steps",
|
|
66
65
|
"baseName": "settlement_steps",
|
|
67
66
|
"type": "SettlementSteps"
|
|
68
67
|
},
|
|
@@ -84,3 +83,4 @@ export class RFQDocumentBuyer {
|
|
|
84
83
|
|
|
85
84
|
export namespace RFQDocumentBuyer {
|
|
86
85
|
}
|
|
86
|
+
|
|
@@ -10,19 +10,18 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
|
|
13
|
-
import { RequestFile } from './models';
|
|
14
13
|
import { ExitEstimateBase } from './exitEstimateBase';
|
|
15
14
|
|
|
16
15
|
export class RFQDocumentBuyerAllOfValidators {
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
16
|
+
'validator_index': number;
|
|
17
|
+
'balance': number;
|
|
18
|
+
'exit_estimate': ExitEstimateBase;
|
|
20
19
|
|
|
21
20
|
static discriminator: string | undefined = undefined;
|
|
22
21
|
|
|
23
22
|
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
|
|
24
23
|
{
|
|
25
|
-
"name": "
|
|
24
|
+
"name": "validator_index",
|
|
26
25
|
"baseName": "validator_index",
|
|
27
26
|
"type": "number"
|
|
28
27
|
},
|
|
@@ -32,7 +31,7 @@ export class RFQDocumentBuyerAllOfValidators {
|
|
|
32
31
|
"type": "number"
|
|
33
32
|
},
|
|
34
33
|
{
|
|
35
|
-
"name": "
|
|
34
|
+
"name": "exit_estimate",
|
|
36
35
|
"baseName": "exit_estimate",
|
|
37
36
|
"type": "ExitEstimateBase"
|
|
38
37
|
} ];
|
|
@@ -42,3 +41,4 @@ export class RFQDocumentBuyerAllOfValidators {
|
|
|
42
41
|
}
|
|
43
42
|
}
|
|
44
43
|
|
|
44
|
+
|
|
@@ -10,13 +10,12 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
|
|
13
|
-
import { RequestFile } from './models';
|
|
14
13
|
|
|
15
|
-
export
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
14
|
+
export type RFQDocumentBuyerStatusFilterEnum =
|
|
15
|
+
'open' |
|
|
16
|
+
'submitted' |
|
|
17
|
+
'accepted' |
|
|
18
|
+
'outbid' |
|
|
19
|
+
'rejected' |
|
|
20
|
+
'expired';
|
|
21
|
+
|
|
@@ -10,7 +10,6 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
|
|
13
|
-
import { RequestFile } from './models';
|
|
14
13
|
import { Quote } from './quote';
|
|
15
14
|
import { RFQDocumentBaseUniqueEscrowVault } from './rFQDocumentBaseUniqueEscrowVault';
|
|
16
15
|
import { RFQDocumentSellerAllOfValidators } from './rFQDocumentSellerAllOfValidators';
|
|
@@ -18,16 +17,16 @@ import { RFQDocumentStatusEnum } from './rFQDocumentStatusEnum';
|
|
|
18
17
|
import { SettlementSteps } from './settlementSteps';
|
|
19
18
|
|
|
20
19
|
export class RFQDocumentSeller {
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
20
|
+
'id': string;
|
|
21
|
+
'status': RFQDocumentStatusEnum;
|
|
22
|
+
'total_balance': number;
|
|
23
|
+
'payment_address': string;
|
|
24
|
+
'estimated_all_validators_exited_at': Date;
|
|
25
|
+
'unique_escrow_vault'?: RFQDocumentBaseUniqueEscrowVault;
|
|
26
|
+
'settlement_steps'?: SettlementSteps;
|
|
27
|
+
'validators': Array<RFQDocumentSellerAllOfValidators>;
|
|
28
|
+
'estimated_exit_transaction_deadline': Date;
|
|
29
|
+
'best_quote'?: Quote;
|
|
31
30
|
|
|
32
31
|
static discriminator: string | undefined = undefined;
|
|
33
32
|
|
|
@@ -43,27 +42,27 @@ export class RFQDocumentSeller {
|
|
|
43
42
|
"type": "RFQDocumentStatusEnum"
|
|
44
43
|
},
|
|
45
44
|
{
|
|
46
|
-
"name": "
|
|
45
|
+
"name": "total_balance",
|
|
47
46
|
"baseName": "total_balance",
|
|
48
47
|
"type": "number"
|
|
49
48
|
},
|
|
50
49
|
{
|
|
51
|
-
"name": "
|
|
50
|
+
"name": "payment_address",
|
|
52
51
|
"baseName": "payment_address",
|
|
53
52
|
"type": "string"
|
|
54
53
|
},
|
|
55
54
|
{
|
|
56
|
-
"name": "
|
|
55
|
+
"name": "estimated_all_validators_exited_at",
|
|
57
56
|
"baseName": "estimated_all_validators_exited_at",
|
|
58
57
|
"type": "Date"
|
|
59
58
|
},
|
|
60
59
|
{
|
|
61
|
-
"name": "
|
|
60
|
+
"name": "unique_escrow_vault",
|
|
62
61
|
"baseName": "unique_escrow_vault",
|
|
63
62
|
"type": "RFQDocumentBaseUniqueEscrowVault"
|
|
64
63
|
},
|
|
65
64
|
{
|
|
66
|
-
"name": "
|
|
65
|
+
"name": "settlement_steps",
|
|
67
66
|
"baseName": "settlement_steps",
|
|
68
67
|
"type": "SettlementSteps"
|
|
69
68
|
},
|
|
@@ -73,12 +72,12 @@ export class RFQDocumentSeller {
|
|
|
73
72
|
"type": "Array<RFQDocumentSellerAllOfValidators>"
|
|
74
73
|
},
|
|
75
74
|
{
|
|
76
|
-
"name": "
|
|
75
|
+
"name": "estimated_exit_transaction_deadline",
|
|
77
76
|
"baseName": "estimated_exit_transaction_deadline",
|
|
78
77
|
"type": "Date"
|
|
79
78
|
},
|
|
80
79
|
{
|
|
81
|
-
"name": "
|
|
80
|
+
"name": "best_quote",
|
|
82
81
|
"baseName": "best_quote",
|
|
83
82
|
"type": "Quote"
|
|
84
83
|
} ];
|
|
@@ -90,3 +89,4 @@ export class RFQDocumentSeller {
|
|
|
90
89
|
|
|
91
90
|
export namespace RFQDocumentSeller {
|
|
92
91
|
}
|
|
92
|
+
|
|
@@ -10,19 +10,18 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
|
|
13
|
-
import { RequestFile } from './models';
|
|
14
13
|
import { ExitEstimateSeller } from './exitEstimateSeller';
|
|
15
14
|
|
|
16
15
|
export class RFQDocumentSellerAllOfValidators {
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
16
|
+
'validator_index': number;
|
|
17
|
+
'balance': number;
|
|
18
|
+
'exit_estimate': ExitEstimateSeller;
|
|
20
19
|
|
|
21
20
|
static discriminator: string | undefined = undefined;
|
|
22
21
|
|
|
23
22
|
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
|
|
24
23
|
{
|
|
25
|
-
"name": "
|
|
24
|
+
"name": "validator_index",
|
|
26
25
|
"baseName": "validator_index",
|
|
27
26
|
"type": "number"
|
|
28
27
|
},
|
|
@@ -32,7 +31,7 @@ export class RFQDocumentSellerAllOfValidators {
|
|
|
32
31
|
"type": "number"
|
|
33
32
|
},
|
|
34
33
|
{
|
|
35
|
-
"name": "
|
|
34
|
+
"name": "exit_estimate",
|
|
36
35
|
"baseName": "exit_estimate",
|
|
37
36
|
"type": "ExitEstimateSeller"
|
|
38
37
|
} ];
|
|
@@ -42,3 +41,4 @@ export class RFQDocumentSellerAllOfValidators {
|
|
|
42
41
|
}
|
|
43
42
|
}
|
|
44
43
|
|
|
44
|
+
|
|
@@ -10,14 +10,13 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
|
|
13
|
-
import { RequestFile } from './models';
|
|
14
13
|
|
|
15
|
-
export
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
14
|
+
export type RFQDocumentSellerStatusFilterEnum =
|
|
15
|
+
'active' |
|
|
16
|
+
'accepted' |
|
|
17
|
+
'escrow_paid' |
|
|
18
|
+
'reward_recipient_settled' |
|
|
19
|
+
'escrow_released' |
|
|
20
|
+
'rejected' |
|
|
21
|
+
'expired';
|
|
22
|
+
|
|
@@ -10,11 +10,10 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
|
|
13
|
-
import { RequestFile } from './models';
|
|
14
13
|
|
|
15
|
-
export
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
14
|
+
export type RFQDocumentStatusEnum =
|
|
15
|
+
'active' |
|
|
16
|
+
'expired' |
|
|
17
|
+
'rejected' |
|
|
18
|
+
'finished';
|
|
19
|
+
|