vaults-multichain-sdk 1.6.2 → 1.7.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/dist/index.cjs +2 -2
- package/dist/index.d.cts +48 -8
- package/dist/index.d.ts +48 -8
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -184,6 +184,22 @@ interface PaginatedMultisigsWithTokensResponse {
|
|
|
184
184
|
page: number;
|
|
185
185
|
limit: number;
|
|
186
186
|
}
|
|
187
|
+
/**
|
|
188
|
+
* Response of `GET /sdk/organization/vaults/id/:chainType/:address` — full
|
|
189
|
+
* vault detail for a single org vault. Read `multisig.data[0]` for the
|
|
190
|
+
* `MultisigsItem` with `factoryAddress` and `params.deployData`.
|
|
191
|
+
*/
|
|
192
|
+
interface MultisigWithTokensResponse {
|
|
193
|
+
multisig: GroupedMultisigResponseDTO;
|
|
194
|
+
}
|
|
195
|
+
/**
|
|
196
|
+
* Response of `GET /sdk/organization/vaults/:chainType` — full-detail list
|
|
197
|
+
* of every org vault on a single chain. Each entry exposes the same shape
|
|
198
|
+
* as the personal paginated list (`GroupedMultisigResponseDTO`).
|
|
199
|
+
*/
|
|
200
|
+
interface MultisigsWithTokensResponse {
|
|
201
|
+
multisigs: GroupedMultisigResponseDTO[];
|
|
202
|
+
}
|
|
187
203
|
/**
|
|
188
204
|
* Order status enum
|
|
189
205
|
*/
|
|
@@ -1597,11 +1613,15 @@ interface GetOrgWalletUtxosInput {
|
|
|
1597
1613
|
chainType: EChainType;
|
|
1598
1614
|
chain: string;
|
|
1599
1615
|
}
|
|
1600
|
-
/** Input for `GET /sdk/organization/vaults/:address`. */
|
|
1616
|
+
/** Input for `GET /sdk/organization/vaults/id/:chainType/:address`. */
|
|
1601
1617
|
interface GetOrgVaultByIdInput {
|
|
1602
1618
|
address: string;
|
|
1603
1619
|
chainType: EChainType;
|
|
1604
1620
|
}
|
|
1621
|
+
/** Input for `GET /sdk/organization/vaults/:chainType`. */
|
|
1622
|
+
interface ListOrgVaultsByChainInput {
|
|
1623
|
+
chainType: EChainType;
|
|
1624
|
+
}
|
|
1605
1625
|
/** Input for `GET /sdk/organization/vaults/:address/history`. */
|
|
1606
1626
|
interface GetOrgVaultHistoryInput {
|
|
1607
1627
|
address: string;
|
|
@@ -1893,19 +1913,39 @@ declare class AfridaxSDK {
|
|
|
1893
1913
|
*/
|
|
1894
1914
|
listOrgVaults(): Promise<OrgVaultsResponse>;
|
|
1895
1915
|
/**
|
|
1896
|
-
*
|
|
1897
|
-
*
|
|
1898
|
-
*
|
|
1916
|
+
* Full-detail list of every org vault on a single chain. Each entry
|
|
1917
|
+
* exposes the same `MultisigsItem` shape as the personal paginated list,
|
|
1918
|
+
* including `factoryAddress`, `params.deployData`, and `tokens` — use
|
|
1919
|
+
* this when callers need the activation payload, vs. `listOrgVaults()`
|
|
1920
|
+
* which returns the flat `OrgVaultItem` shape. Likely **Master-only**;
|
|
1921
|
+
* confirm against the backend spec before relying on Employee access.
|
|
1922
|
+
*
|
|
1923
|
+
* Server route: `GET /sdk/organization/vaults/:chainType`.
|
|
1924
|
+
*/
|
|
1925
|
+
listOrgVaultsByChain(input: ListOrgVaultsByChainInput): Promise<MultisigsWithTokensResponse>;
|
|
1926
|
+
/**
|
|
1927
|
+
* Get a single org vault by on-chain address, returned in full detail.
|
|
1928
|
+
* Master sees any org vault; Employees only see vaults whose owners
|
|
1929
|
+
* include one of their assigned wallets.
|
|
1930
|
+
*
|
|
1931
|
+
* Read `result.multisig.data[0]` for the full `MultisigsItem` with
|
|
1932
|
+
* `factoryAddress` and `params.deployData`.
|
|
1933
|
+
*
|
|
1934
|
+
* **Breaking (1.7.0):** return type changed from flat `OrgVaultItem` to
|
|
1935
|
+
* `MultisigWithTokensResponse`. Callers that previously read
|
|
1936
|
+
* `vault.address` / `vault.owners` must now read
|
|
1937
|
+
* `vault.multisig.data[0].address` /
|
|
1938
|
+
* `vault.multisig.data[0].owners.map(o => o.walletAddress)`.
|
|
1899
1939
|
*
|
|
1900
|
-
* Server route: `GET /sdk/organization/vaults/:address
|
|
1940
|
+
* Server route: `GET /sdk/organization/vaults/id/:chainType/:address`.
|
|
1901
1941
|
*/
|
|
1902
|
-
getOrgVaultById(input: GetOrgVaultByIdInput): Promise<
|
|
1942
|
+
getOrgVaultById(input: GetOrgVaultByIdInput): Promise<MultisigWithTokensResponse>;
|
|
1903
1943
|
/**
|
|
1904
1944
|
* Transaction history for an org vault (orders + transfers). Master or
|
|
1905
1945
|
* Employee; assignment-gated for Employees.
|
|
1906
1946
|
*
|
|
1907
1947
|
* Server route:
|
|
1908
|
-
* `GET /sdk/organization/vaults/:address/history
|
|
1948
|
+
* `GET /sdk/organization/vaults/by-address/:chainType/:address/history`.
|
|
1909
1949
|
*/
|
|
1910
1950
|
getOrgVaultHistory(input: GetOrgVaultHistoryInput): Promise<TxHistoryCombinedResponse>;
|
|
1911
1951
|
/**
|
|
@@ -2311,4 +2351,4 @@ declare class NotFoundError extends AfridaxBaseError {
|
|
|
2311
2351
|
*/
|
|
2312
2352
|
declare function isAfridaxError(error: unknown): error is AfridaxBaseError;
|
|
2313
2353
|
|
|
2314
|
-
export { type ActivateMultisigInput, type ActivateMultisigOutput, type ActivateXrpTrustLineInput, type ActivateXrpTrustLineOutput, type AdaNativeInstruction, type AdaTokenInstruction, type AddOrgAddressResponse, type AddressBookEntry, type AddressBookEntryType, type AddressTypeResponse, AfridaxBaseError, AfridaxSDK, ApiError, type AssignOrgWalletInput, type AssignOrgWalletResponse, type ChainIdValue, ChainNotSupportedError, type ChainType, type CreateAddressBookEntryInput, type CreateMultisigInput, type CreateOrderInput, type CreateOrderOutput, type CreateOrgAddressInput, type CreateOrgWalletInput, type CreateWalletInput, type CreateWalletOutput, type CreateWalletResponse, type DeleteAddressBookEntryInput, type DeleteMultisigInput, type DeleteOrderInput, type DeleteOrgAddressBookEntryInput, type DeleteOrgWalletInput, type DeleteResponse, type DeleteWalletInput, EAdaInstructionType, EAddressBookEntryType, EChainType, EOrgMemberRole, EOrgMemberStatus, EXrpOrderType, type EstimateActivationFeeInput, type EstimateFeeInput, type EstimateOrderExecutionFeeInput, type EstimatedFee, type ExecuteOrderInput, type ExecuteOrderOutput, type ExportOrgAuditLogsInput, type ExportWalletInput, type ExportWalletOutput, type GetAddressBookEntriesInput, type GetAddressTypeInput, type GetMultisigByIdInput, type GetMultisigTxHistoryInput, type GetMultisigsInput, type GetOrderByIdInput, type GetOrdersInput, type GetOrgAuditLogsInput, type GetOrgVaultByIdInput, type GetOrgVaultHistoryInput, type GetOrgWalletHistoryInput, type GetOrgWalletInput, type GetOrgWalletPortfolioInput, type GetOrgWalletUtxosInput, type GetPaginatedMultisigsInput, type GetPortfolioInput, type GetSupportedTokensInput, type GetWalletHistoryInput, type GetWalletInput, type GetWalletsInput, type GetXrpAccountReserveInput, type GetXrpTrustLinesInput, type GroupedMultisigResponseDTO, type HistoryResponse, type ImportWalletInput, InsufficientBalanceError, InvalidInputError, type InviteOrgMemberInput, type InviteOrgMemberResponse, KeyMismatchError, type ListOrgMemberWalletsInput, MEMO_MAX_LENGTH, MEMO_SUPPORTED_CHAINS, type MemoValidationResult, type MultisigBaseDTO, MultisigStatus, type MultisigsItem, NetworkError, NotFoundError, ORG_POLICY_CODES, type Order, type OrderInstruction, type OrderMethodType, type OrderParamsAda, type OrderParamsXrp, type OrderSigner, OrderStatus, type OrgAddressBookEntry, type OrgAddressRecipientType, type OrgAddressWalletType, type OrgAuditEventType, type OrgAuditLogItem, type OrgAuditLogsResponse, type OrgLimitGroup, type OrgLimitGroupChainLimit, type OrgLimitGroupEnvelopeResponse, type OrgMeResponse, type OrgMemberKycStatus, type OrgMyVaultsResponse, type OrgMyWalletsResponse, type OrgPolicy, type OrgPolicyCode, OrgPolicyRejectedError, type OrgSpendingLimitStatus, type OrgTeamDirectoryResponse, type OrgTeamMember, type OrgVaultItem, type OrgVaultsResponse, type OrgWalletItem, type OrgWalletUtxosResponse, type OrgWalletsResponse, type PaginatedMultisigsWithTokensResponse, type PaginatedOrdersResponse, type PaginatedWalletsResponse, PermissionDeniedError, type RejectOrderInput, type RemoveOrgMemberInput, type RenameOrgWalletInput, type SDKConfig, type SendTransactionInput, type SendTransactionOutput, type SignOrderInput, type SignOrderOutput, type SingleWalletDetailsResponse, StatusFilterEnum, type SupportedTokensResponse, type TAdaCommandInstruction, type TWallet, type TXrpCommandInstruction, type TokenInfo, type TotalAssetValueResponse, TransactionEstimatingType, type TransactionHistoryItem, type TxHistoryCombinedResponse, type UnassignOrgWalletInput, UnauthorizedError, type UpdateAddressBookEntryInput, type UpdateMultisigNameInput, type UpdateOrgAddressBookEntryInput, type UpdateOrgAddressInput, type UpdateOrgPolicyInput, type UpdateWalletNameInput, type WalletPortfolioResponse, type WalletRenameResponse, type WalletScope, XRP_MAX_DESTINATION_TAG, type XrpAccountReserveInfo, type XrpAssetInstruction, type XrpChangeThresholdInstruction, type XrpNativeInstruction, type XrpRemoveTrustLineInstruction, type XrpSetTrustLineInstruction, type TrustLineInfo as XrpTrustLineInfo, type XrpUpdateOwnerThresholdInstruction, type XrpUpdateOwnersInstruction, AfridaxSDK as default, getBtcChainType, getMemoPlaceholder, isAfridaxError, isMemoSupported, validateMemo };
|
|
2354
|
+
export { type ActivateMultisigInput, type ActivateMultisigOutput, type ActivateXrpTrustLineInput, type ActivateXrpTrustLineOutput, type AdaNativeInstruction, type AdaTokenInstruction, type AddOrgAddressResponse, type AddressBookEntry, type AddressBookEntryType, type AddressTypeResponse, AfridaxBaseError, AfridaxSDK, ApiError, type AssignOrgWalletInput, type AssignOrgWalletResponse, type ChainIdValue, ChainNotSupportedError, type ChainType, type CreateAddressBookEntryInput, type CreateMultisigInput, type CreateOrderInput, type CreateOrderOutput, type CreateOrgAddressInput, type CreateOrgWalletInput, type CreateWalletInput, type CreateWalletOutput, type CreateWalletResponse, type DeleteAddressBookEntryInput, type DeleteMultisigInput, type DeleteOrderInput, type DeleteOrgAddressBookEntryInput, type DeleteOrgWalletInput, type DeleteResponse, type DeleteWalletInput, EAdaInstructionType, EAddressBookEntryType, EChainType, EOrgMemberRole, EOrgMemberStatus, EXrpOrderType, type EstimateActivationFeeInput, type EstimateFeeInput, type EstimateOrderExecutionFeeInput, type EstimatedFee, type ExecuteOrderInput, type ExecuteOrderOutput, type ExportOrgAuditLogsInput, type ExportWalletInput, type ExportWalletOutput, type GetAddressBookEntriesInput, type GetAddressTypeInput, type GetMultisigByIdInput, type GetMultisigTxHistoryInput, type GetMultisigsInput, type GetOrderByIdInput, type GetOrdersInput, type GetOrgAuditLogsInput, type GetOrgVaultByIdInput, type GetOrgVaultHistoryInput, type GetOrgWalletHistoryInput, type GetOrgWalletInput, type GetOrgWalletPortfolioInput, type GetOrgWalletUtxosInput, type GetPaginatedMultisigsInput, type GetPortfolioInput, type GetSupportedTokensInput, type GetWalletHistoryInput, type GetWalletInput, type GetWalletsInput, type GetXrpAccountReserveInput, type GetXrpTrustLinesInput, type GroupedMultisigResponseDTO, type HistoryResponse, type ImportWalletInput, InsufficientBalanceError, InvalidInputError, type InviteOrgMemberInput, type InviteOrgMemberResponse, KeyMismatchError, type ListOrgMemberWalletsInput, type ListOrgVaultsByChainInput, MEMO_MAX_LENGTH, MEMO_SUPPORTED_CHAINS, type MemoValidationResult, type MultisigBaseDTO, MultisigStatus, type MultisigWithTokensResponse, type MultisigsItem, type MultisigsWithTokensResponse, NetworkError, NotFoundError, ORG_POLICY_CODES, type Order, type OrderInstruction, type OrderMethodType, type OrderParamsAda, type OrderParamsXrp, type OrderSigner, OrderStatus, type OrgAddressBookEntry, type OrgAddressRecipientType, type OrgAddressWalletType, type OrgAuditEventType, type OrgAuditLogItem, type OrgAuditLogsResponse, type OrgLimitGroup, type OrgLimitGroupChainLimit, type OrgLimitGroupEnvelopeResponse, type OrgMeResponse, type OrgMemberKycStatus, type OrgMyVaultsResponse, type OrgMyWalletsResponse, type OrgPolicy, type OrgPolicyCode, OrgPolicyRejectedError, type OrgSpendingLimitStatus, type OrgTeamDirectoryResponse, type OrgTeamMember, type OrgVaultItem, type OrgVaultsResponse, type OrgWalletItem, type OrgWalletUtxosResponse, type OrgWalletsResponse, type PaginatedMultisigsWithTokensResponse, type PaginatedOrdersResponse, type PaginatedWalletsResponse, PermissionDeniedError, type RejectOrderInput, type RemoveOrgMemberInput, type RenameOrgWalletInput, type SDKConfig, type SendTransactionInput, type SendTransactionOutput, type SignOrderInput, type SignOrderOutput, type SingleWalletDetailsResponse, StatusFilterEnum, type SupportedTokensResponse, type TAdaCommandInstruction, type TWallet, type TXrpCommandInstruction, type TokenInfo, type TotalAssetValueResponse, TransactionEstimatingType, type TransactionHistoryItem, type TxHistoryCombinedResponse, type UnassignOrgWalletInput, UnauthorizedError, type UpdateAddressBookEntryInput, type UpdateMultisigNameInput, type UpdateOrgAddressBookEntryInput, type UpdateOrgAddressInput, type UpdateOrgPolicyInput, type UpdateWalletNameInput, type WalletPortfolioResponse, type WalletRenameResponse, type WalletScope, XRP_MAX_DESTINATION_TAG, type XrpAccountReserveInfo, type XrpAssetInstruction, type XrpChangeThresholdInstruction, type XrpNativeInstruction, type XrpRemoveTrustLineInstruction, type XrpSetTrustLineInstruction, type TrustLineInfo as XrpTrustLineInfo, type XrpUpdateOwnerThresholdInstruction, type XrpUpdateOwnersInstruction, AfridaxSDK as default, getBtcChainType, getMemoPlaceholder, isAfridaxError, isMemoSupported, validateMemo };
|
package/dist/index.d.ts
CHANGED
|
@@ -184,6 +184,22 @@ interface PaginatedMultisigsWithTokensResponse {
|
|
|
184
184
|
page: number;
|
|
185
185
|
limit: number;
|
|
186
186
|
}
|
|
187
|
+
/**
|
|
188
|
+
* Response of `GET /sdk/organization/vaults/id/:chainType/:address` — full
|
|
189
|
+
* vault detail for a single org vault. Read `multisig.data[0]` for the
|
|
190
|
+
* `MultisigsItem` with `factoryAddress` and `params.deployData`.
|
|
191
|
+
*/
|
|
192
|
+
interface MultisigWithTokensResponse {
|
|
193
|
+
multisig: GroupedMultisigResponseDTO;
|
|
194
|
+
}
|
|
195
|
+
/**
|
|
196
|
+
* Response of `GET /sdk/organization/vaults/:chainType` — full-detail list
|
|
197
|
+
* of every org vault on a single chain. Each entry exposes the same shape
|
|
198
|
+
* as the personal paginated list (`GroupedMultisigResponseDTO`).
|
|
199
|
+
*/
|
|
200
|
+
interface MultisigsWithTokensResponse {
|
|
201
|
+
multisigs: GroupedMultisigResponseDTO[];
|
|
202
|
+
}
|
|
187
203
|
/**
|
|
188
204
|
* Order status enum
|
|
189
205
|
*/
|
|
@@ -1597,11 +1613,15 @@ interface GetOrgWalletUtxosInput {
|
|
|
1597
1613
|
chainType: EChainType;
|
|
1598
1614
|
chain: string;
|
|
1599
1615
|
}
|
|
1600
|
-
/** Input for `GET /sdk/organization/vaults/:address`. */
|
|
1616
|
+
/** Input for `GET /sdk/organization/vaults/id/:chainType/:address`. */
|
|
1601
1617
|
interface GetOrgVaultByIdInput {
|
|
1602
1618
|
address: string;
|
|
1603
1619
|
chainType: EChainType;
|
|
1604
1620
|
}
|
|
1621
|
+
/** Input for `GET /sdk/organization/vaults/:chainType`. */
|
|
1622
|
+
interface ListOrgVaultsByChainInput {
|
|
1623
|
+
chainType: EChainType;
|
|
1624
|
+
}
|
|
1605
1625
|
/** Input for `GET /sdk/organization/vaults/:address/history`. */
|
|
1606
1626
|
interface GetOrgVaultHistoryInput {
|
|
1607
1627
|
address: string;
|
|
@@ -1893,19 +1913,39 @@ declare class AfridaxSDK {
|
|
|
1893
1913
|
*/
|
|
1894
1914
|
listOrgVaults(): Promise<OrgVaultsResponse>;
|
|
1895
1915
|
/**
|
|
1896
|
-
*
|
|
1897
|
-
*
|
|
1898
|
-
*
|
|
1916
|
+
* Full-detail list of every org vault on a single chain. Each entry
|
|
1917
|
+
* exposes the same `MultisigsItem` shape as the personal paginated list,
|
|
1918
|
+
* including `factoryAddress`, `params.deployData`, and `tokens` — use
|
|
1919
|
+
* this when callers need the activation payload, vs. `listOrgVaults()`
|
|
1920
|
+
* which returns the flat `OrgVaultItem` shape. Likely **Master-only**;
|
|
1921
|
+
* confirm against the backend spec before relying on Employee access.
|
|
1922
|
+
*
|
|
1923
|
+
* Server route: `GET /sdk/organization/vaults/:chainType`.
|
|
1924
|
+
*/
|
|
1925
|
+
listOrgVaultsByChain(input: ListOrgVaultsByChainInput): Promise<MultisigsWithTokensResponse>;
|
|
1926
|
+
/**
|
|
1927
|
+
* Get a single org vault by on-chain address, returned in full detail.
|
|
1928
|
+
* Master sees any org vault; Employees only see vaults whose owners
|
|
1929
|
+
* include one of their assigned wallets.
|
|
1930
|
+
*
|
|
1931
|
+
* Read `result.multisig.data[0]` for the full `MultisigsItem` with
|
|
1932
|
+
* `factoryAddress` and `params.deployData`.
|
|
1933
|
+
*
|
|
1934
|
+
* **Breaking (1.7.0):** return type changed from flat `OrgVaultItem` to
|
|
1935
|
+
* `MultisigWithTokensResponse`. Callers that previously read
|
|
1936
|
+
* `vault.address` / `vault.owners` must now read
|
|
1937
|
+
* `vault.multisig.data[0].address` /
|
|
1938
|
+
* `vault.multisig.data[0].owners.map(o => o.walletAddress)`.
|
|
1899
1939
|
*
|
|
1900
|
-
* Server route: `GET /sdk/organization/vaults/:address
|
|
1940
|
+
* Server route: `GET /sdk/organization/vaults/id/:chainType/:address`.
|
|
1901
1941
|
*/
|
|
1902
|
-
getOrgVaultById(input: GetOrgVaultByIdInput): Promise<
|
|
1942
|
+
getOrgVaultById(input: GetOrgVaultByIdInput): Promise<MultisigWithTokensResponse>;
|
|
1903
1943
|
/**
|
|
1904
1944
|
* Transaction history for an org vault (orders + transfers). Master or
|
|
1905
1945
|
* Employee; assignment-gated for Employees.
|
|
1906
1946
|
*
|
|
1907
1947
|
* Server route:
|
|
1908
|
-
* `GET /sdk/organization/vaults/:address/history
|
|
1948
|
+
* `GET /sdk/organization/vaults/by-address/:chainType/:address/history`.
|
|
1909
1949
|
*/
|
|
1910
1950
|
getOrgVaultHistory(input: GetOrgVaultHistoryInput): Promise<TxHistoryCombinedResponse>;
|
|
1911
1951
|
/**
|
|
@@ -2311,4 +2351,4 @@ declare class NotFoundError extends AfridaxBaseError {
|
|
|
2311
2351
|
*/
|
|
2312
2352
|
declare function isAfridaxError(error: unknown): error is AfridaxBaseError;
|
|
2313
2353
|
|
|
2314
|
-
export { type ActivateMultisigInput, type ActivateMultisigOutput, type ActivateXrpTrustLineInput, type ActivateXrpTrustLineOutput, type AdaNativeInstruction, type AdaTokenInstruction, type AddOrgAddressResponse, type AddressBookEntry, type AddressBookEntryType, type AddressTypeResponse, AfridaxBaseError, AfridaxSDK, ApiError, type AssignOrgWalletInput, type AssignOrgWalletResponse, type ChainIdValue, ChainNotSupportedError, type ChainType, type CreateAddressBookEntryInput, type CreateMultisigInput, type CreateOrderInput, type CreateOrderOutput, type CreateOrgAddressInput, type CreateOrgWalletInput, type CreateWalletInput, type CreateWalletOutput, type CreateWalletResponse, type DeleteAddressBookEntryInput, type DeleteMultisigInput, type DeleteOrderInput, type DeleteOrgAddressBookEntryInput, type DeleteOrgWalletInput, type DeleteResponse, type DeleteWalletInput, EAdaInstructionType, EAddressBookEntryType, EChainType, EOrgMemberRole, EOrgMemberStatus, EXrpOrderType, type EstimateActivationFeeInput, type EstimateFeeInput, type EstimateOrderExecutionFeeInput, type EstimatedFee, type ExecuteOrderInput, type ExecuteOrderOutput, type ExportOrgAuditLogsInput, type ExportWalletInput, type ExportWalletOutput, type GetAddressBookEntriesInput, type GetAddressTypeInput, type GetMultisigByIdInput, type GetMultisigTxHistoryInput, type GetMultisigsInput, type GetOrderByIdInput, type GetOrdersInput, type GetOrgAuditLogsInput, type GetOrgVaultByIdInput, type GetOrgVaultHistoryInput, type GetOrgWalletHistoryInput, type GetOrgWalletInput, type GetOrgWalletPortfolioInput, type GetOrgWalletUtxosInput, type GetPaginatedMultisigsInput, type GetPortfolioInput, type GetSupportedTokensInput, type GetWalletHistoryInput, type GetWalletInput, type GetWalletsInput, type GetXrpAccountReserveInput, type GetXrpTrustLinesInput, type GroupedMultisigResponseDTO, type HistoryResponse, type ImportWalletInput, InsufficientBalanceError, InvalidInputError, type InviteOrgMemberInput, type InviteOrgMemberResponse, KeyMismatchError, type ListOrgMemberWalletsInput, MEMO_MAX_LENGTH, MEMO_SUPPORTED_CHAINS, type MemoValidationResult, type MultisigBaseDTO, MultisigStatus, type MultisigsItem, NetworkError, NotFoundError, ORG_POLICY_CODES, type Order, type OrderInstruction, type OrderMethodType, type OrderParamsAda, type OrderParamsXrp, type OrderSigner, OrderStatus, type OrgAddressBookEntry, type OrgAddressRecipientType, type OrgAddressWalletType, type OrgAuditEventType, type OrgAuditLogItem, type OrgAuditLogsResponse, type OrgLimitGroup, type OrgLimitGroupChainLimit, type OrgLimitGroupEnvelopeResponse, type OrgMeResponse, type OrgMemberKycStatus, type OrgMyVaultsResponse, type OrgMyWalletsResponse, type OrgPolicy, type OrgPolicyCode, OrgPolicyRejectedError, type OrgSpendingLimitStatus, type OrgTeamDirectoryResponse, type OrgTeamMember, type OrgVaultItem, type OrgVaultsResponse, type OrgWalletItem, type OrgWalletUtxosResponse, type OrgWalletsResponse, type PaginatedMultisigsWithTokensResponse, type PaginatedOrdersResponse, type PaginatedWalletsResponse, PermissionDeniedError, type RejectOrderInput, type RemoveOrgMemberInput, type RenameOrgWalletInput, type SDKConfig, type SendTransactionInput, type SendTransactionOutput, type SignOrderInput, type SignOrderOutput, type SingleWalletDetailsResponse, StatusFilterEnum, type SupportedTokensResponse, type TAdaCommandInstruction, type TWallet, type TXrpCommandInstruction, type TokenInfo, type TotalAssetValueResponse, TransactionEstimatingType, type TransactionHistoryItem, type TxHistoryCombinedResponse, type UnassignOrgWalletInput, UnauthorizedError, type UpdateAddressBookEntryInput, type UpdateMultisigNameInput, type UpdateOrgAddressBookEntryInput, type UpdateOrgAddressInput, type UpdateOrgPolicyInput, type UpdateWalletNameInput, type WalletPortfolioResponse, type WalletRenameResponse, type WalletScope, XRP_MAX_DESTINATION_TAG, type XrpAccountReserveInfo, type XrpAssetInstruction, type XrpChangeThresholdInstruction, type XrpNativeInstruction, type XrpRemoveTrustLineInstruction, type XrpSetTrustLineInstruction, type TrustLineInfo as XrpTrustLineInfo, type XrpUpdateOwnerThresholdInstruction, type XrpUpdateOwnersInstruction, AfridaxSDK as default, getBtcChainType, getMemoPlaceholder, isAfridaxError, isMemoSupported, validateMemo };
|
|
2354
|
+
export { type ActivateMultisigInput, type ActivateMultisigOutput, type ActivateXrpTrustLineInput, type ActivateXrpTrustLineOutput, type AdaNativeInstruction, type AdaTokenInstruction, type AddOrgAddressResponse, type AddressBookEntry, type AddressBookEntryType, type AddressTypeResponse, AfridaxBaseError, AfridaxSDK, ApiError, type AssignOrgWalletInput, type AssignOrgWalletResponse, type ChainIdValue, ChainNotSupportedError, type ChainType, type CreateAddressBookEntryInput, type CreateMultisigInput, type CreateOrderInput, type CreateOrderOutput, type CreateOrgAddressInput, type CreateOrgWalletInput, type CreateWalletInput, type CreateWalletOutput, type CreateWalletResponse, type DeleteAddressBookEntryInput, type DeleteMultisigInput, type DeleteOrderInput, type DeleteOrgAddressBookEntryInput, type DeleteOrgWalletInput, type DeleteResponse, type DeleteWalletInput, EAdaInstructionType, EAddressBookEntryType, EChainType, EOrgMemberRole, EOrgMemberStatus, EXrpOrderType, type EstimateActivationFeeInput, type EstimateFeeInput, type EstimateOrderExecutionFeeInput, type EstimatedFee, type ExecuteOrderInput, type ExecuteOrderOutput, type ExportOrgAuditLogsInput, type ExportWalletInput, type ExportWalletOutput, type GetAddressBookEntriesInput, type GetAddressTypeInput, type GetMultisigByIdInput, type GetMultisigTxHistoryInput, type GetMultisigsInput, type GetOrderByIdInput, type GetOrdersInput, type GetOrgAuditLogsInput, type GetOrgVaultByIdInput, type GetOrgVaultHistoryInput, type GetOrgWalletHistoryInput, type GetOrgWalletInput, type GetOrgWalletPortfolioInput, type GetOrgWalletUtxosInput, type GetPaginatedMultisigsInput, type GetPortfolioInput, type GetSupportedTokensInput, type GetWalletHistoryInput, type GetWalletInput, type GetWalletsInput, type GetXrpAccountReserveInput, type GetXrpTrustLinesInput, type GroupedMultisigResponseDTO, type HistoryResponse, type ImportWalletInput, InsufficientBalanceError, InvalidInputError, type InviteOrgMemberInput, type InviteOrgMemberResponse, KeyMismatchError, type ListOrgMemberWalletsInput, type ListOrgVaultsByChainInput, MEMO_MAX_LENGTH, MEMO_SUPPORTED_CHAINS, type MemoValidationResult, type MultisigBaseDTO, MultisigStatus, type MultisigWithTokensResponse, type MultisigsItem, type MultisigsWithTokensResponse, NetworkError, NotFoundError, ORG_POLICY_CODES, type Order, type OrderInstruction, type OrderMethodType, type OrderParamsAda, type OrderParamsXrp, type OrderSigner, OrderStatus, type OrgAddressBookEntry, type OrgAddressRecipientType, type OrgAddressWalletType, type OrgAuditEventType, type OrgAuditLogItem, type OrgAuditLogsResponse, type OrgLimitGroup, type OrgLimitGroupChainLimit, type OrgLimitGroupEnvelopeResponse, type OrgMeResponse, type OrgMemberKycStatus, type OrgMyVaultsResponse, type OrgMyWalletsResponse, type OrgPolicy, type OrgPolicyCode, OrgPolicyRejectedError, type OrgSpendingLimitStatus, type OrgTeamDirectoryResponse, type OrgTeamMember, type OrgVaultItem, type OrgVaultsResponse, type OrgWalletItem, type OrgWalletUtxosResponse, type OrgWalletsResponse, type PaginatedMultisigsWithTokensResponse, type PaginatedOrdersResponse, type PaginatedWalletsResponse, PermissionDeniedError, type RejectOrderInput, type RemoveOrgMemberInput, type RenameOrgWalletInput, type SDKConfig, type SendTransactionInput, type SendTransactionOutput, type SignOrderInput, type SignOrderOutput, type SingleWalletDetailsResponse, StatusFilterEnum, type SupportedTokensResponse, type TAdaCommandInstruction, type TWallet, type TXrpCommandInstruction, type TokenInfo, type TotalAssetValueResponse, TransactionEstimatingType, type TransactionHistoryItem, type TxHistoryCombinedResponse, type UnassignOrgWalletInput, UnauthorizedError, type UpdateAddressBookEntryInput, type UpdateMultisigNameInput, type UpdateOrgAddressBookEntryInput, type UpdateOrgAddressInput, type UpdateOrgPolicyInput, type UpdateWalletNameInput, type WalletPortfolioResponse, type WalletRenameResponse, type WalletScope, XRP_MAX_DESTINATION_TAG, type XrpAccountReserveInfo, type XrpAssetInstruction, type XrpChangeThresholdInstruction, type XrpNativeInstruction, type XrpRemoveTrustLineInstruction, type XrpSetTrustLineInstruction, type TrustLineInfo as XrpTrustLineInfo, type XrpUpdateOwnerThresholdInstruction, type XrpUpdateOwnersInstruction, AfridaxSDK as default, getBtcChainType, getMemoPlaceholder, isAfridaxError, isMemoSupported, validateMemo };
|