@coinbase-sample/prime-sdk-ts 0.4.1 → 0.6.0
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/README.md +22 -0
- package/dist/activities/index.js +40 -4
- package/dist/addressBooks/index.js +4 -2
- package/dist/allocations/index.js +19 -3
- package/dist/balances/index.js +17 -5
- package/dist/client.js +7 -2
- package/dist/constants.js +5 -2
- package/dist/financing/index.js +18 -0
- package/dist/index.js +3 -1
- package/dist/invoices/index.js +16 -3
- package/dist/model/Counterparty.js +21 -0
- package/dist/model/CounterpartyDestination.js +21 -0
- package/dist/model/CreateNetAllocationRequest.js +21 -0
- package/dist/model/CreateWalletDepositAddressRequest.js +21 -0
- package/dist/model/FCMMarginCall.js +21 -0
- package/dist/model/GetFcmMarginCallDetailsResponse.js +21 -0
- package/dist/model/GetFcmRiskLimitsResponse.js +21 -0
- package/dist/model/GetOrderEditHistoryResponse.js +21 -0
- package/dist/model/GetPortfolioCounterpartyIDResponse.js +21 -0
- package/dist/model/LimitOrderEdit.js +21 -0
- package/dist/model/ListWalletAddressesResponse.js +21 -0
- package/dist/model/OrderEdit.js +21 -0
- package/dist/model/PortfolioStakingInitiateRequest.js +21 -0
- package/dist/model/PortfolioStakingInitiateResponse.js +21 -0
- package/dist/model/PortfolioStakingMetadata.js +21 -0
- package/dist/model/PortfolioStakingUnstakeRequest.js +21 -0
- package/dist/model/PortfolioStakingUnstakeResponse.js +21 -0
- package/dist/model/StakingUnstakeRequest.js +21 -0
- package/dist/model/WalletStakeInputs.js +21 -0
- package/dist/model/WalletUnstakeInputs.js +21 -0
- package/dist/model/enums/AllocationSizeType.js +0 -1
- package/dist/model/enums/AssetChangeType.js +0 -1
- package/dist/model/enums/CustodyActivityType.js +0 -1
- package/dist/model/enums/DestinationType.js +4 -4
- package/dist/model/enums/FcmMarginCallState.js +30 -0
- package/dist/model/enums/FcmMarginCallType.js +28 -0
- package/dist/model/enums/OrderSide.js +0 -1
- package/dist/model/enums/OrderStatus.js +0 -1
- package/dist/model/enums/OrderType.js +0 -1
- package/dist/model/enums/PaymentMethodType.js +3 -4
- package/dist/model/enums/PortfolioBalanceType.js +0 -1
- package/dist/model/enums/ProductPermissions.js +0 -1
- package/dist/model/enums/SigningStatus.js +0 -1
- package/dist/model/enums/TimeInForceType.js +0 -1
- package/dist/model/enums/TransactionStatus.js +1 -2
- package/dist/model/enums/TransactionType.js +0 -1
- package/dist/model/enums/TransferLocationType.js +0 -1
- package/dist/model/enums/UserRole.js +0 -1
- package/dist/model/enums/VisibilityStatus.js +0 -1
- package/dist/model/enums/WalletDepositInstructionType.js +0 -1
- package/dist/model/enums/WalletType.js +0 -1
- package/dist/model/enums/index.js +5 -1
- package/dist/orders/index.js +63 -8
- package/dist/portfolios/index.js +9 -0
- package/dist/portfolios/types.js +15 -0
- package/dist/positions/index.js +9 -6
- package/dist/products/index.js +4 -2
- package/dist/shared/brand.js +15 -0
- package/dist/shared/paginatedResponse.js +185 -0
- package/dist/shared/pagination.js +15 -0
- package/dist/shared/toCamelCase.js +15 -0
- package/dist/staking/index.js +24 -0
- package/dist/transactions/index.js +17 -2
- package/dist/types/activities/types.d.ts +6 -3
- package/dist/types/addressBooks/types.d.ts +4 -2
- package/dist/types/allocations/types.d.ts +4 -2
- package/dist/types/assets/types.d.ts +1 -1
- package/dist/types/balances/types.d.ts +6 -3
- package/dist/types/client.d.ts +2 -2
- package/dist/types/commission/types.d.ts +1 -1
- package/dist/types/constants.d.ts +4 -1
- package/dist/types/financing/index.d.ts +5 -1
- package/dist/types/financing/types.d.ts +10 -2
- package/dist/types/futures/types.d.ts +1 -1
- package/dist/types/index.d.ts +5 -4
- package/dist/types/invoices/index.d.ts +2 -2
- package/dist/types/invoices/types.d.ts +9 -3
- package/dist/types/model/Commission.d.ts +1 -1
- package/dist/types/model/Counterparty.d.ts +25 -0
- package/dist/types/model/CounterpartyDestination.d.ts +22 -0
- package/dist/types/model/CreateAllocationRequest.d.ts +0 -4
- package/dist/types/model/CreateNetAllocationRequest.d.ts +48 -0
- package/dist/types/model/CreateOnchainTransactionRequestEvmParams.d.ts +1 -1
- package/dist/types/model/CreateOrderRequest.d.ts +6 -2
- package/dist/types/model/CreateWalletDepositAddressRequest.d.ts +25 -0
- package/dist/types/model/CreateWalletWithdrawalRequest.d.ts +2 -0
- package/dist/types/model/CreateWalletWithdrawalResponse.d.ts +2 -0
- package/dist/types/model/FCMMarginCall.d.ts +41 -0
- package/dist/types/model/Fill.d.ts +9 -1
- package/dist/types/model/GetFcmBalanceResponse.d.ts +4 -0
- package/dist/types/model/GetFcmMarginCallDetailsResponse.d.ts +26 -0
- package/dist/types/model/GetFcmRiskLimitsResponse.d.ts +45 -0
- package/dist/types/model/GetOrderEditHistoryResponse.d.ts +35 -0
- package/dist/types/model/GetPortfolioCounterpartyIDResponse.d.ts +23 -0
- package/dist/types/model/LimitOrderEdit.d.ts +29 -0
- package/dist/types/model/ListWalletAddressesResponse.d.ts +25 -0
- package/dist/types/model/Order.d.ts +31 -1
- package/dist/types/model/OrderEdit.d.ts +30 -0
- package/dist/types/model/OrderPreviewRequest.d.ts +11 -2
- package/dist/types/model/PortfolioStakingInitiateRequest.d.ts +35 -0
- package/dist/types/model/PortfolioStakingInitiateResponse.d.ts +29 -0
- package/dist/types/model/PortfolioStakingMetadata.d.ts +25 -0
- package/dist/types/model/PortfolioStakingUnstakeRequest.d.ts +35 -0
- package/dist/types/model/PortfolioStakingUnstakeResponse.d.ts +29 -0
- package/dist/types/model/PostOrderPreviewResponse.d.ts +20 -0
- package/dist/types/model/RFQProductDetails.d.ts +4 -0
- package/dist/types/model/StakingInitiateRequest.d.ts +5 -2
- package/dist/types/model/StakingInitiateResponse.d.ts +3 -0
- package/dist/types/model/StakingUnstakeRequest.d.ts +30 -0
- package/dist/types/model/StakingUnstakeResponse.d.ts +3 -0
- package/dist/types/model/TransferLocation.d.ts +8 -0
- package/dist/types/model/WalletStakeInputs.d.ts +32 -0
- package/dist/types/model/WalletUnstakeInputs.d.ts +28 -0
- package/dist/types/model/enums/AllocationSizeType.d.ts +0 -1
- package/dist/types/model/enums/AssetChangeType.d.ts +0 -1
- package/dist/types/model/enums/CustodyActivityType.d.ts +0 -1
- package/dist/types/model/enums/DestinationType.d.ts +4 -4
- package/dist/types/model/enums/FcmMarginCallState.d.ts +26 -0
- package/dist/types/model/enums/FcmMarginCallType.d.ts +24 -0
- package/dist/types/model/enums/OrderSide.d.ts +0 -1
- package/dist/types/model/enums/OrderStatus.d.ts +0 -1
- package/dist/types/model/enums/OrderType.d.ts +0 -1
- package/dist/types/model/enums/PaymentMethodType.d.ts +3 -4
- package/dist/types/model/enums/PortfolioBalanceType.d.ts +0 -1
- package/dist/types/model/enums/ProductPermissions.d.ts +0 -1
- package/dist/types/model/enums/SigningStatus.d.ts +0 -1
- package/dist/types/model/enums/TimeInForceType.d.ts +0 -1
- package/dist/types/model/enums/TransactionStatus.d.ts +1 -2
- package/dist/types/model/enums/TransactionType.d.ts +0 -1
- package/dist/types/model/enums/TransferLocationType.d.ts +0 -1
- package/dist/types/model/enums/UserRole.d.ts +0 -1
- package/dist/types/model/enums/VisibilityStatus.d.ts +0 -1
- package/dist/types/model/enums/WalletDepositInstructionType.d.ts +0 -1
- package/dist/types/model/enums/WalletType.d.ts +0 -1
- package/dist/types/model/enums/index.d.ts +2 -0
- package/dist/types/model/index.d.ts +20 -0
- package/dist/types/onchainAddressBook/types.d.ts +1 -1
- package/dist/types/orders/index.d.ts +3 -1
- package/dist/types/orders/types.d.ts +17 -7
- package/dist/types/paymentMethods/types.d.ts +1 -1
- package/dist/types/portfolios/index.d.ts +3 -1
- package/dist/types/portfolios/types.d.ts +6 -2
- package/dist/types/positions/types.d.ts +9 -9
- package/dist/types/products/types.d.ts +4 -2
- package/dist/types/shared/brand.d.ts +15 -0
- package/dist/types/shared/paginatedResponse.d.ts +120 -0
- package/dist/types/shared/toCamelCase.d.ts +15 -0
- package/dist/types/staking/index.d.ts +5 -1
- package/dist/types/staking/types.d.ts +10 -2
- package/dist/types/transactions/types.d.ts +7 -3
- package/dist/types/users/types.d.ts +9 -5
- package/dist/types/wallets/types.d.ts +7 -5
- package/dist/users/index.js +11 -2
- package/dist/wallets/index.js +17 -21
- package/package.json +12 -11
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2025-present Coinbase Global, Inc.
|
|
3
|
+
*
|
|
4
|
+
* This file is generated by Openapi Generator https://github.com/openapitools/openapi-generator
|
|
5
|
+
*
|
|
6
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
+
* you may not use this file except in compliance with the License.
|
|
8
|
+
* You may obtain a copy of the License at
|
|
9
|
+
*
|
|
10
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
*
|
|
12
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
+
* See the License for the specific language governing permissions and
|
|
16
|
+
* limitations under the License.
|
|
17
|
+
*
|
|
18
|
+
* Do not edit the class manually.
|
|
19
|
+
*/
|
|
20
|
+
import { PortfolioStakingMetadata } from './PortfolioStakingMetadata';
|
|
21
|
+
export type PortfolioStakingUnstakeRequest = {
|
|
22
|
+
/**
|
|
23
|
+
* The client generated idempotency key (uuid required) for requested execution. Subsequent requests using the same key will not create new transactions.
|
|
24
|
+
*/
|
|
25
|
+
idempotencyKey: string;
|
|
26
|
+
/**
|
|
27
|
+
* The currency symbol to unstake
|
|
28
|
+
*/
|
|
29
|
+
currencySymbol: string;
|
|
30
|
+
/**
|
|
31
|
+
* The quantity of the chosen currency to unstake
|
|
32
|
+
*/
|
|
33
|
+
amount: string;
|
|
34
|
+
metadata?: PortfolioStakingMetadata;
|
|
35
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2025-present Coinbase Global, Inc.
|
|
3
|
+
*
|
|
4
|
+
* This file is generated by Openapi Generator https://github.com/openapitools/openapi-generator
|
|
5
|
+
*
|
|
6
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
+
* you may not use this file except in compliance with the License.
|
|
8
|
+
* You may obtain a copy of the License at
|
|
9
|
+
*
|
|
10
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
*
|
|
12
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
+
* See the License for the specific language governing permissions and
|
|
16
|
+
* limitations under the License.
|
|
17
|
+
*
|
|
18
|
+
* Do not edit the class manually.
|
|
19
|
+
*/
|
|
20
|
+
export type PortfolioStakingUnstakeResponse = {
|
|
21
|
+
/**
|
|
22
|
+
* The ID for the created activity
|
|
23
|
+
*/
|
|
24
|
+
activityId?: string;
|
|
25
|
+
/**
|
|
26
|
+
* The ID for the created transaction
|
|
27
|
+
*/
|
|
28
|
+
transactionId?: string;
|
|
29
|
+
};
|
|
@@ -80,4 +80,24 @@ export type PostOrderPreviewResponse = {
|
|
|
80
80
|
* The estimated participation rate for a TWAP/VWAP order. This field can be specified instead of expiry time, and will be used to compute the expiry time of the order based on historical participation rate.
|
|
81
81
|
*/
|
|
82
82
|
historicalPov?: string;
|
|
83
|
+
/**
|
|
84
|
+
* Raise Exact order flag
|
|
85
|
+
*/
|
|
86
|
+
isRaiseExact?: boolean;
|
|
87
|
+
/**
|
|
88
|
+
* Stop price for the order
|
|
89
|
+
*/
|
|
90
|
+
stopPrice?: string;
|
|
91
|
+
/**
|
|
92
|
+
* The maximum order size that will show up on venue order books.
|
|
93
|
+
*/
|
|
94
|
+
displaySize?: string;
|
|
95
|
+
/**
|
|
96
|
+
* The maximum order size that will show up on venue order books (in quote currency).
|
|
97
|
+
*/
|
|
98
|
+
displayQuoteSize?: string;
|
|
99
|
+
/**
|
|
100
|
+
* The maximum order size that will show up on venue order books (in base currency).
|
|
101
|
+
*/
|
|
102
|
+
displayBaseSize?: string;
|
|
83
103
|
};
|
|
@@ -17,11 +17,14 @@
|
|
|
17
17
|
*
|
|
18
18
|
* Do not edit the class manually.
|
|
19
19
|
*/
|
|
20
|
-
import {
|
|
20
|
+
import { WalletStakeInputs } from './WalletStakeInputs';
|
|
21
|
+
/**
|
|
22
|
+
* StakingInitiateRequest represents a request to initiate a staking operation.
|
|
23
|
+
*/
|
|
21
24
|
export type StakingInitiateRequest = {
|
|
22
25
|
/**
|
|
23
26
|
* The client generated idempotency key for requested execution. Subsequent requests using the same key will fail
|
|
24
27
|
*/
|
|
25
28
|
idempotencyKey: string;
|
|
26
|
-
inputs?:
|
|
29
|
+
inputs?: WalletStakeInputs;
|
|
27
30
|
};
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2025-present Coinbase Global, Inc.
|
|
3
|
+
*
|
|
4
|
+
* This file is generated by Openapi Generator https://github.com/openapitools/openapi-generator
|
|
5
|
+
*
|
|
6
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
+
* you may not use this file except in compliance with the License.
|
|
8
|
+
* You may obtain a copy of the License at
|
|
9
|
+
*
|
|
10
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
*
|
|
12
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
+
* See the License for the specific language governing permissions and
|
|
16
|
+
* limitations under the License.
|
|
17
|
+
*
|
|
18
|
+
* Do not edit the class manually.
|
|
19
|
+
*/
|
|
20
|
+
import { WalletUnstakeInputs } from './WalletUnstakeInputs';
|
|
21
|
+
/**
|
|
22
|
+
* StakingUnstakeRequest represents a request to initiate an unstaking operation.
|
|
23
|
+
*/
|
|
24
|
+
export type StakingUnstakeRequest = {
|
|
25
|
+
/**
|
|
26
|
+
* The client generated idempotency key for requested execution. Subsequent requests using the same key will fail
|
|
27
|
+
*/
|
|
28
|
+
idempotencyKey: string;
|
|
29
|
+
inputs?: WalletUnstakeInputs;
|
|
30
|
+
};
|
|
@@ -24,4 +24,12 @@ export type TransferLocation = {
|
|
|
24
24
|
* The value of the transfer location: payment method ID, wallet ID or crypto address
|
|
25
25
|
*/
|
|
26
26
|
value?: string;
|
|
27
|
+
/**
|
|
28
|
+
* The crypto address of the transfer location
|
|
29
|
+
*/
|
|
30
|
+
address?: string;
|
|
31
|
+
/**
|
|
32
|
+
* The tag/memo of the address, if applicable -- required for certain assets (e.g. XRP, XLM, etc.)
|
|
33
|
+
*/
|
|
34
|
+
accountIdentifier?: string;
|
|
27
35
|
};
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2025-present Coinbase Global, Inc.
|
|
3
|
+
*
|
|
4
|
+
* This file is generated by Openapi Generator https://github.com/openapitools/openapi-generator
|
|
5
|
+
*
|
|
6
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
+
* you may not use this file except in compliance with the License.
|
|
8
|
+
* You may obtain a copy of the License at
|
|
9
|
+
*
|
|
10
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
*
|
|
12
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
+
* See the License for the specific language governing permissions and
|
|
16
|
+
* limitations under the License.
|
|
17
|
+
*
|
|
18
|
+
* Do not edit the class manually.
|
|
19
|
+
*/
|
|
20
|
+
/**
|
|
21
|
+
* WalletStakeInputs contains the custom inputs for staking operations on a wallet. Requirements and supported fields vary by asset type.
|
|
22
|
+
*/
|
|
23
|
+
export type WalletStakeInputs = {
|
|
24
|
+
/**
|
|
25
|
+
* Optional amount to stake (ETH only). If omitted, the wallet will stake the maximum amount available
|
|
26
|
+
*/
|
|
27
|
+
amount?: string;
|
|
28
|
+
/**
|
|
29
|
+
* Optional validator address, defaults to Coinbase validator. For SOL, must be the vote account address. Ignored for ETH.
|
|
30
|
+
*/
|
|
31
|
+
validatorAddress?: string;
|
|
32
|
+
};
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2025-present Coinbase Global, Inc.
|
|
3
|
+
*
|
|
4
|
+
* This file is generated by Openapi Generator https://github.com/openapitools/openapi-generator
|
|
5
|
+
*
|
|
6
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
+
* you may not use this file except in compliance with the License.
|
|
8
|
+
* You may obtain a copy of the License at
|
|
9
|
+
*
|
|
10
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
*
|
|
12
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
+
* See the License for the specific language governing permissions and
|
|
16
|
+
* limitations under the License.
|
|
17
|
+
*
|
|
18
|
+
* Do not edit the class manually.
|
|
19
|
+
*/
|
|
20
|
+
/**
|
|
21
|
+
* WalletUnstakeInputs contains the custom inputs for unstaking operations on a wallet. Requirements and supported fields vary by asset type.
|
|
22
|
+
*/
|
|
23
|
+
export type WalletUnstakeInputs = {
|
|
24
|
+
/**
|
|
25
|
+
* Optional amount to unstake (ETH only). If omitted, the wallet will unstake the maximum amount available
|
|
26
|
+
*/
|
|
27
|
+
amount?: string;
|
|
28
|
+
};
|
|
@@ -18,7 +18,6 @@
|
|
|
18
18
|
* Do not edit the class manually.
|
|
19
19
|
*/
|
|
20
20
|
export declare enum ActivityType {
|
|
21
|
-
Unknown = "ACTIVITY_TYPE_UNKNOWN",
|
|
22
21
|
GovernanceVote = "ACTIVITY_TYPE_GOVERNANCE_VOTE",
|
|
23
22
|
Invitation = "ACTIVITY_TYPE_INVITATION",
|
|
24
23
|
WalletChange = "ACTIVITY_TYPE_WALLET_CHANGE",
|
|
@@ -18,8 +18,8 @@
|
|
|
18
18
|
* Do not edit the class manually.
|
|
19
19
|
*/
|
|
20
20
|
export declare enum DestinationType {
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
21
|
+
PaymentMethod = "DESTINATION_PAYMENT_METHOD",
|
|
22
|
+
Blockchain = "DESTINATION_BLOCKCHAIN",
|
|
23
|
+
Wallet = "DESTINATION_WALLET",
|
|
24
|
+
Counterparty = "DESTINATION_COUNTERPARTY"
|
|
25
25
|
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2025-present Coinbase Global, Inc.
|
|
3
|
+
*
|
|
4
|
+
* This file is generated by Openapi Generator https://github.com/openapitools/openapi-generator
|
|
5
|
+
*
|
|
6
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
+
* you may not use this file except in compliance with the License.
|
|
8
|
+
* You may obtain a copy of the License at
|
|
9
|
+
*
|
|
10
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
*
|
|
12
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
+
* See the License for the specific language governing permissions and
|
|
16
|
+
* limitations under the License.
|
|
17
|
+
*
|
|
18
|
+
* Do not edit the class manually.
|
|
19
|
+
*/
|
|
20
|
+
export declare enum FcmMarginCallState {
|
|
21
|
+
Unspecified = "FCM_MARGIN_CALL_STATE_UNSPECIFIED",
|
|
22
|
+
Closed = "FCM_MARGIN_CALL_STATE_CLOSED",
|
|
23
|
+
RolledOver = "FCM_MARGIN_CALL_STATE_ROLLED_OVER",
|
|
24
|
+
Default = "FCM_MARGIN_CALL_STATE_DEFAULT",
|
|
25
|
+
Official = "FCM_MARGIN_CALL_STATE_OFFICIAL"
|
|
26
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2025-present Coinbase Global, Inc.
|
|
3
|
+
*
|
|
4
|
+
* This file is generated by Openapi Generator https://github.com/openapitools/openapi-generator
|
|
5
|
+
*
|
|
6
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
+
* you may not use this file except in compliance with the License.
|
|
8
|
+
* You may obtain a copy of the License at
|
|
9
|
+
*
|
|
10
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
*
|
|
12
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
+
* See the License for the specific language governing permissions and
|
|
16
|
+
* limitations under the License.
|
|
17
|
+
*
|
|
18
|
+
* Do not edit the class manually.
|
|
19
|
+
*/
|
|
20
|
+
export declare enum FcmMarginCallType {
|
|
21
|
+
Unspecified = "FCM_MARGIN_CALL_TYPE_UNSPECIFIED",
|
|
22
|
+
Urgent = "FCM_MARGIN_CALL_TYPE_URGENT",
|
|
23
|
+
Regular = "FCM_MARGIN_CALL_TYPE_REGULAR"
|
|
24
|
+
}
|
|
@@ -21,7 +21,6 @@
|
|
|
21
21
|
* - UNKNOWN_ORDER_STATUS: nil value - OPEN: The order is open but unfilled - FILLED: The order was filled - CANCELLED: The order was cancelled - EXPIRED: The order has expired - FAILED: Order submission failed - PENDING: The order has been sent but is not yet confirmed
|
|
22
22
|
*/
|
|
23
23
|
export declare enum OrderStatus {
|
|
24
|
-
UnknownOrderStatus = "UNKNOWN_ORDER_STATUS",
|
|
25
24
|
Open = "OPEN",
|
|
26
25
|
Filled = "FILLED",
|
|
27
26
|
Cancelled = "CANCELLED",
|
|
@@ -21,7 +21,6 @@
|
|
|
21
21
|
* - UNKNOWN_ORDER_TYPE: nil value - MARKET: A [market order](https://en.wikipedia.org/wiki/Order_(exchange)#Market_order) - LIMIT: A [limit order](https://en.wikipedia.org/wiki/Order_(exchange)#Limit_order) - TWAP: A [time-weighted average price order](https://en.wikipedia.org/wiki/Time-weighted_average_price) - BLOCK: A [block trade](https://en.wikipedia.org/wiki/Block_trade) - VWAP: A [volume-weighted average price order](https://en.wikipedia.org/wiki/Volume-weighted_average_price) - STOP_LIMIT: A [conditional order combined of stop order and limit order](https://en.wikipedia.org/wiki/Order_(exchange)#Stop-limit_order) - RFQ: A [request for quote](https://en.wikipedia.org/wiki/Request_for_quote)
|
|
22
22
|
*/
|
|
23
23
|
export declare enum OrderType {
|
|
24
|
-
UnknownOrderType = "UNKNOWN_ORDER_TYPE",
|
|
25
24
|
Market = "MARKET",
|
|
26
25
|
Limit = "LIMIT",
|
|
27
26
|
Twap = "TWAP",
|
|
@@ -21,8 +21,7 @@
|
|
|
21
21
|
* - UNKNOWN_PAYMENT_METHOD_TYPE: nil value - METHOD_WIRE: Wire transfer - METHOD_SEN: Silvergate exchange network - METHOD_SWIFT: Swift
|
|
22
22
|
*/
|
|
23
23
|
export declare enum PaymentMethodType {
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
MethodSwift = "METHOD_SWIFT"
|
|
24
|
+
Wire = "METHOD_WIRE",
|
|
25
|
+
Sen = "METHOD_SEN",
|
|
26
|
+
Swift = "METHOD_SWIFT"
|
|
28
27
|
}
|
|
@@ -21,7 +21,6 @@
|
|
|
21
21
|
* - UNKNOWN_TIME_IN_FORCE: nil value - GOOD_UNTIL_DATE_TIME: Expires at a certain date/time - GOOD_UNTIL_CANCELLED: Order stays on the books until cancelled - IMMEDIATE_OR_CANCEL: Order is executed immediately at submission or is cancelled - FILL_OR_KILL: Order is executed immediately and fully at submission or is cancelled
|
|
22
22
|
*/
|
|
23
23
|
export declare enum TimeInForceType {
|
|
24
|
-
UnknownTimeInForce = "UNKNOWN_TIME_IN_FORCE",
|
|
25
24
|
GoodUntilDateTime = "GOOD_UNTIL_DATE_TIME",
|
|
26
25
|
GoodUntilCancelled = "GOOD_UNTIL_CANCELLED",
|
|
27
26
|
ImmediateOrCancel = "IMMEDIATE_OR_CANCEL",
|
|
@@ -18,10 +18,9 @@
|
|
|
18
18
|
* Do not edit the class manually.
|
|
19
19
|
*/
|
|
20
20
|
/**
|
|
21
|
-
* - UNKNOWN_TRANSACTION_STATUS: An Unknown Transaction status - TRANSACTION_CREATED: The Transaction has been created and is awaiting Consensus approval This is a non-terminal status - TRANSACTION_REQUESTED: The Transaction has reached User Consensus and is awaiting Coinbase Prime approval This is a non-terminal status - TRANSACTION_APPROVED: The Transaction has been authorized by Coinbase Prime This is a non-terminal status - TRANSACTION_GASSING: The transaction is awaiting blockchain resources for broadcast This is a non-terminal status - TRANSACTION_GASSED: The transaction has received blockchain resources for broadcasting This is a non-terminal status - TRANSACTION_PROVISIONED: The transaction has been provisioned and is awaiting planning This is a non-terminal status - TRANSACTION_PLANNED: The transaction has been constructed.
|
|
21
|
+
* - UNKNOWN_TRANSACTION_STATUS: An Unknown Transaction status - TRANSACTION_CREATED: The Transaction has been created and is awaiting Consensus approval This is a non-terminal status - TRANSACTION_REQUESTED: The Transaction has reached User Consensus and is awaiting Coinbase Prime approval This is a non-terminal status - TRANSACTION_APPROVED: The Transaction has been authorized by Coinbase Prime This is a non-terminal status - TRANSACTION_GASSING: The transaction is awaiting blockchain resources for broadcast This is a non-terminal status - TRANSACTION_GASSED: The transaction has received blockchain resources for broadcasting This is a non-terminal status - TRANSACTION_PROVISIONED: The transaction has been provisioned and is awaiting planning This is a non-terminal status - TRANSACTION_PLANNED: The transaction has been constructed. This is a non-terminal status - TRANSACTION_PROCESSING: The transaction is currently processing and awaiting finalization This is a non-terminal status - TRANSACTION_RESTORED: The transaction has been broadcasted to the network. This is a non-terminal status - TRANSACTION_DONE: The transaction has confirmed on-chain and finished. This is a terminal status - TRANSACTION_IMPORT_PENDING: The transaction deposit has been detected and is awaiting finalization. This is a non-terminal status - TRANSACTION_IMPORTED: The transaction deposit and reward has been detected. This is a terminal status - TRANSACTION_CANCELLED: The transaction has been cancelled This is a terminal status - TRANSACTION_REJECTED: The transaction was rejected before construction and broadcasting. This is a terminal status - TRANSACTION_DELAYED: The transaction s taking longer than expected to confirm on-chain. This is a non-terminal status - TRANSACTION_RETRIED: The transaction has been recreated and retried, this occurs when network congestion results in transfers becoming extremely delayed due to insufficient fees or network resources such as CPU, RAM, or NET This is a terminal status - TRANSACTION_FAILED: The transaction failed on-chain (the fee was spent but the operation failed). This is a terminal status - TRANSACTION_EXPIRED: The transaction has expired. This is a terminal status - TRANSACTION_BROADCASTING: The transaction is currently broadcasting to the cryptocurrency network. This is a non-terminal status - OTHER_TRANSACTION_STATUS: The transaction has reached an OTHER status. This is a non-terminal status - TRANSACTION_CONSTRUCTED: The transaction bctx is constructed but not yet broadcasting on chain This is a non-terminal status
|
|
22
22
|
*/
|
|
23
23
|
export declare enum TransactionStatus {
|
|
24
|
-
UnknownTransactionStatus = "UNKNOWN_TRANSACTION_STATUS",
|
|
25
24
|
TransactionCreated = "TRANSACTION_CREATED",
|
|
26
25
|
TransactionRequested = "TRANSACTION_REQUESTED",
|
|
27
26
|
TransactionApproved = "TRANSACTION_APPROVED",
|
|
@@ -21,7 +21,6 @@
|
|
|
21
21
|
* - TRANSACTION_TYPE_UNKNOWN: An unknown transaction type - DEPOSIT: A fiat or crypto deposit - WITHDRAWAL: A fiat or crypto withdrawal - INTERNAL_DEPOSIT: An internal fiat or crypto deposit - INTERNAL_WITHDRAWAL: An internal fiat or crypto withdrawal - SWEEP_DEPOSIT: Internal automated deposit to a cold address from a restored address - SWEEP_WITHDRAWAL: Internal automated withdrawal from a restored address to a cold address - PROXY_DEPOSIT: On-chain deposit of funds into proxy contract from cold address - PROXY_WITHDRAWAL: On-chain withdrawal of funds from proxy contract to cold address - BILLING_WITHDRAWAL: Coinbase Prime automated invoice settlement payment - REWARD: Reward payment to an associated address for a staked asset - COINBASE_REFUND: Coinbase Prime refund for the leftover amount for a CPFP (child pays for parent) transaction - TRANSACTION_TYPE_OTHER: An OTHER type of transaction - WITHDRAWAL_ADJUSTMENT: A manual adjustment withdrawal transaction - DEPOSIT_ADJUSTMENT: A manual adjustment deposit transaction - KEY_REGISTRATION: An on-chain registration for an address - DELEGATION: An on-chain delegation transaction - UNDELEGATION: An on-chain undelegation transaction - RESTAKE: On-chain restaking transaction - COMPLETE_UNBONDING: On-chain unbonding event transaction - WITHDRAW_UNBONDED: On-chain event indicating unbonding period is over - STAKE_ACCOUNT_CREATE: On-chain transaction to begin staking from an address - CHANGE_VALIDATOR: On-chain transaction alter validator - STAKE: On-chain transaction to begin staking in Cryptocurrency network - UNSTAKE: On-chain transaction to stop staking in Cryptocurrency network - REMOVE_AUTHORIZED_PARTY: On-chain transaction to remove a party from a multi-signature wallet - STAKE_AUTHORIZE_WITH_SEED: On-chain transaction to begin staking from a seed account - SLASH: On-chain transaction indicating a slash event has occurred - COINBASE_DEPOSIT: On-chain transaction deposit for the purpose of transaction operations - CONVERSION: Internal conversion between two assets - CLAIM_REWARDS: On-chain transaction to claim rewards from Vote Account - VOTE_AUTHORIZE: On-chain transaction to transfer the reward claiming permission to other pubkey - WEB3_TRANSACTION: On-chain transaction initiated with Prime Onchain Wallet Deprecated: Use ONCHAIN_TRANSACTION instead - ONCHAIN_TRANSACTION: On-chain transaction initiated with Prime Onchain Wallet
|
|
22
22
|
*/
|
|
23
23
|
export declare enum TransactionType {
|
|
24
|
-
TransactionTypeUnknown = "TRANSACTION_TYPE_UNKNOWN",
|
|
25
24
|
Deposit = "DEPOSIT",
|
|
26
25
|
Withdrawal = "WITHDRAWAL",
|
|
27
26
|
InternalDeposit = "INTERNAL_DEPOSIT",
|
|
@@ -21,7 +21,6 @@
|
|
|
21
21
|
* - USER_ROLE_UNKNOWN: nil value - AUDITOR: An auditor - SIGNATORY: A signatory - ADMIN: An admin - INITIATOR: An initiator - REVIEWER: A reviewer - TRADER: A trader - FULL_TRADER: A trader with full permissions - TEAM_MANAGER: A team manager - APPROVER: An approver
|
|
22
22
|
*/
|
|
23
23
|
export declare enum UserRole {
|
|
24
|
-
UserRoleUnknown = "USER_ROLE_UNKNOWN",
|
|
25
24
|
Auditor = "AUDITOR",
|
|
26
25
|
Signatory = "SIGNATORY",
|
|
27
26
|
Admin = "ADMIN",
|
|
@@ -21,7 +21,6 @@
|
|
|
21
21
|
* - UNKNOWN_WALLET_DEPOSIT_TYPE: nil value - CRYPTO: A cryptocurrency deposit - WIRE: A wire deposit - SEN: DEPRECATED. A Silvergate Exchange Network deposit - SWIFT: A SWIFT deposit - SEPA: A SEPA deposit (Single Euro Payments Area)
|
|
22
22
|
*/
|
|
23
23
|
export declare enum WalletDepositInstructionType {
|
|
24
|
-
UnknownWalletDepositType = "UNKNOWN_WALLET_DEPOSIT_TYPE",
|
|
25
24
|
Crypto = "CRYPTO",
|
|
26
25
|
Wire = "WIRE",
|
|
27
26
|
Sen = "SEN",
|
|
@@ -21,7 +21,6 @@
|
|
|
21
21
|
* - VAULT: A crypto vault - TRADING: A trading wallet - WALLET_TYPE_OTHER: Other wallet types (like consumer, etc) - QC: A QC Wallet - ONCHAIN: An Onchain wallet
|
|
22
22
|
*/
|
|
23
23
|
export declare enum WalletType {
|
|
24
|
-
UnknownWalletType = "UNKNOWN_WALLET_TYPE",
|
|
25
24
|
Vault = "VAULT",
|
|
26
25
|
Trading = "TRADING",
|
|
27
26
|
WalletTypeOther = "WALLET_TYPE_OTHER",
|
|
@@ -12,6 +12,8 @@ export { AssetChangeType } from './AssetChangeType';
|
|
|
12
12
|
export { Benchmark } from './Benchmark';
|
|
13
13
|
export { DestinationType } from './DestinationType';
|
|
14
14
|
export { FcmFuturesSweepStatus } from './FcmFuturesSweepStatus';
|
|
15
|
+
export { FcmMarginCallState } from './FcmMarginCallState';
|
|
16
|
+
export { FcmMarginCallType } from './FcmMarginCallType';
|
|
15
17
|
export { FcmPositionSide } from './FcmPositionSide';
|
|
16
18
|
export { HierarchyType } from './HierarchyType';
|
|
17
19
|
export { InvoiceState } from './InvoiceState';
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export type { LimitOrderEdit } from './LimitOrderEdit';
|
|
1
2
|
export type { AddressBookEntry } from './AddressBookEntry';
|
|
2
3
|
export type { DisplayUser } from './DisplayUser';
|
|
3
4
|
export type { AcceptQuoteResponse } from './AcceptQuoteResponse';
|
|
@@ -24,6 +25,8 @@ export type { CancelOrderResponse } from './CancelOrderResponse';
|
|
|
24
25
|
export type { Commission } from './Commission';
|
|
25
26
|
export type { Conversion } from './Conversion';
|
|
26
27
|
export type { ConversionDetail } from './ConversionDetail';
|
|
28
|
+
export type { Counterparty } from './Counterparty';
|
|
29
|
+
export type { CounterpartyDestination } from './CounterpartyDestination';
|
|
27
30
|
export type { CreateAddressGroup } from './CreateAddressGroup';
|
|
28
31
|
export type { CreateAllocationRequest } from './CreateAllocationRequest';
|
|
29
32
|
export type { CreateAllocationResponse } from './CreateAllocationResponse';
|
|
@@ -45,6 +48,7 @@ export type { EntityBalance } from './EntityBalance';
|
|
|
45
48
|
export type { EntityUser } from './EntityUser';
|
|
46
49
|
export type { EstimatedNetworkFees } from './EstimatedNetworkFees';
|
|
47
50
|
export type { ExistingLocate } from './ExistingLocate';
|
|
51
|
+
export type { FCMMarginCall } from './FCMMarginCall';
|
|
48
52
|
export type { FcmFuturesSweep } from './FcmFuturesSweep';
|
|
49
53
|
export type { FcmFuturesSweepRequestAmount } from './FcmFuturesSweepRequestAmount';
|
|
50
54
|
export type { FcmPosition } from './FcmPosition';
|
|
@@ -60,6 +64,8 @@ export type { GetEntityPaymentMethodsResponse } from './GetEntityPaymentMethodsR
|
|
|
60
64
|
export type { GetEntityUsersResponse } from './GetEntityUsersResponse';
|
|
61
65
|
export type { GetExistingLocatesResponse } from './GetExistingLocatesResponse';
|
|
62
66
|
export type { GetFcmBalanceResponse } from './GetFcmBalanceResponse';
|
|
67
|
+
export type { GetFcmMarginCallDetailsResponse } from './GetFcmMarginCallDetailsResponse';
|
|
68
|
+
export type { GetFcmRiskLimitsResponse } from './GetFcmRiskLimitsResponse';
|
|
63
69
|
export type { GetFuturesSweepsResponse } from './GetFuturesSweepsResponse';
|
|
64
70
|
export type { GetInterestAccrualsResponse } from './GetInterestAccrualsResponse';
|
|
65
71
|
export type { GetInvoicesResponse } from './GetInvoicesResponse';
|
|
@@ -68,6 +74,7 @@ export type { GetMarginConversionsResponse } from './GetMarginConversionsRespons
|
|
|
68
74
|
export type { GetMarginInformationResponse } from './GetMarginInformationResponse';
|
|
69
75
|
export type { GetMarginSummariesResponse } from './GetMarginSummariesResponse';
|
|
70
76
|
export type { GetOpenOrdersResponse } from './GetOpenOrdersResponse';
|
|
77
|
+
export type { GetOrderEditHistoryResponse } from './GetOrderEditHistoryResponse';
|
|
71
78
|
export type { GetOrderFillsResponse } from './GetOrderFillsResponse';
|
|
72
79
|
export type { GetOrderResponse } from './GetOrderResponse';
|
|
73
80
|
export type { GetOrdersResponse } from './GetOrdersResponse';
|
|
@@ -77,6 +84,7 @@ export type { GetPortfolioAddressBookResponse } from './GetPortfolioAddressBookR
|
|
|
77
84
|
export type { GetPortfolioAllocationsResponse } from './GetPortfolioAllocationsResponse';
|
|
78
85
|
export type { GetPortfolioBalancesResponse } from './GetPortfolioBalancesResponse';
|
|
79
86
|
export type { GetPortfolioCommissionResponse } from './GetPortfolioCommissionResponse';
|
|
87
|
+
export type { GetPortfolioCounterpartyIDResponse } from './GetPortfolioCounterpartyIDResponse';
|
|
80
88
|
export type { GetPortfolioFillsResponse } from './GetPortfolioFillsResponse';
|
|
81
89
|
export type { GetPortfolioInterestAccrualsResponse } from './GetPortfolioInterestAccrualsResponse';
|
|
82
90
|
export type { GetPortfolioProductsResponse } from './GetPortfolioProductsResponse';
|
|
@@ -101,6 +109,7 @@ export type { ListAggregateEntityPositionsResponse } from './ListAggregateEntity
|
|
|
101
109
|
export type { ListEntityBalancesResponse } from './ListEntityBalancesResponse';
|
|
102
110
|
export type { ListEntityPositionsResponse } from './ListEntityPositionsResponse';
|
|
103
111
|
export type { ListOnchainAddressGroupsResponse } from './ListOnchainAddressGroupsResponse';
|
|
112
|
+
export type { ListWalletAddressesResponse } from './ListWalletAddressesResponse';
|
|
104
113
|
export type { ListWeb3WalletBalancesResponse } from './ListWeb3WalletBalancesResponse';
|
|
105
114
|
export type { LoanInfo } from './LoanInfo';
|
|
106
115
|
export type { Locate } from './Locate';
|
|
@@ -117,12 +126,16 @@ export type { Network } from './Network';
|
|
|
117
126
|
export type { NetworkDetails } from './NetworkDetails';
|
|
118
127
|
export type { OnchainTransactionDetails } from './OnchainTransactionDetails';
|
|
119
128
|
export type { Order } from './Order';
|
|
129
|
+
export type { OrderEdit } from './OrderEdit';
|
|
120
130
|
export type { PMAssetInfo } from './PMAssetInfo';
|
|
121
131
|
export type { PaginatedResponse } from './PaginatedResponse';
|
|
122
132
|
export type { PaymentMethodDestination } from './PaymentMethodDestination';
|
|
123
133
|
export type { PaymentMethodDetails } from './PaymentMethodDetails';
|
|
124
134
|
export type { PaymentMethodSummary } from './PaymentMethodSummary';
|
|
125
135
|
export type { Portfolio } from './Portfolio';
|
|
136
|
+
export type { PortfolioStakingInitiateResponse } from './PortfolioStakingInitiateResponse';
|
|
137
|
+
export type { PortfolioStakingMetadata } from './PortfolioStakingMetadata';
|
|
138
|
+
export type { PortfolioStakingUnstakeResponse } from './PortfolioStakingUnstakeResponse';
|
|
126
139
|
export type { PortfolioUser } from './PortfolioUser';
|
|
127
140
|
export type { Position } from './Position';
|
|
128
141
|
export type { PositionReference } from './PositionReference';
|
|
@@ -147,6 +160,8 @@ export type { UserAction } from './UserAction';
|
|
|
147
160
|
export type { Wallet } from './Wallet';
|
|
148
161
|
export type { WalletCryptoDepositInstructions } from './WalletCryptoDepositInstructions';
|
|
149
162
|
export type { WalletFiatDepositInstructions } from './WalletFiatDepositInstructions';
|
|
163
|
+
export type { WalletStakeInputs } from './WalletStakeInputs';
|
|
164
|
+
export type { WalletUnstakeInputs } from './WalletUnstakeInputs';
|
|
150
165
|
export type { Web3Asset } from './Web3Asset';
|
|
151
166
|
export type { Web3Balance } from './Web3Balance';
|
|
152
167
|
export type { Web3TransactionMetadata } from './Web3TransactionMetadata';
|
|
@@ -158,10 +173,15 @@ export type { CreateNewLocatesRequest } from './CreateNewLocatesRequest';
|
|
|
158
173
|
export type { CreateOnchainTransactionRequest } from './CreateOnchainTransactionRequest';
|
|
159
174
|
export type { CreateOrderRequest } from './CreateOrderRequest';
|
|
160
175
|
export type { CreatePortfolioAddressBookEntryRequest } from './CreatePortfolioAddressBookEntryRequest';
|
|
176
|
+
export type { CreateWalletDepositAddressRequest } from './CreateWalletDepositAddressRequest';
|
|
161
177
|
export type { CreateWalletRequest } from './CreateWalletRequest';
|
|
162
178
|
export type { CreateWalletWithdrawalRequest } from './CreateWalletWithdrawalRequest';
|
|
163
179
|
export type { OrderPreviewRequest } from './OrderPreviewRequest';
|
|
180
|
+
export type { PortfolioStakingInitiateRequest } from './PortfolioStakingInitiateRequest';
|
|
181
|
+
export type { PortfolioStakingUnstakeRequest } from './PortfolioStakingUnstakeRequest';
|
|
164
182
|
export type { ScheduleFuturesSweepRequest } from './ScheduleFuturesSweepRequest';
|
|
165
183
|
export type { SetAutoSweepRequest } from './SetAutoSweepRequest';
|
|
166
184
|
export type { StakingInitiateRequest } from './StakingInitiateRequest';
|
|
185
|
+
export type { StakingUnstakeRequest } from './StakingUnstakeRequest';
|
|
186
|
+
export type { CreateNetAllocationRequest } from './CreateNetAllocationRequest';
|
|
167
187
|
export type { RFQ } from './RFQ';
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
* See the License for the specific language governing permissions and
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
|
-
import { Brand } from '
|
|
16
|
+
import { Brand } from '../shared/brand';
|
|
17
17
|
import { ListOnchainAddressGroupsResponse as listInt, AddressGroup, ActivityCreationResponse } from '../model/';
|
|
18
18
|
export type ListOnchainAddressBookRequest = {
|
|
19
19
|
portfolioId: string;
|