vaults-multichain-sdk 1.6.1 → 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.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,10 +1613,30 @@ interface GetOrgWalletUtxosInput {
1597
1613
  chainType: EChainType;
1598
1614
  chain: string;
1599
1615
  }
1600
- /** Path params for `GET /sdk/organization/vaults/:id`. */
1616
+ /** Input for `GET /sdk/organization/vaults/id/:chainType/:address`. */
1601
1617
  interface GetOrgVaultByIdInput {
1602
- /** Vault UUID (not address). */
1603
- id: string;
1618
+ address: string;
1619
+ chainType: EChainType;
1620
+ }
1621
+ /** Input for `GET /sdk/organization/vaults/:chainType`. */
1622
+ interface ListOrgVaultsByChainInput {
1623
+ chainType: EChainType;
1624
+ }
1625
+ /** Input for `GET /sdk/organization/vaults/:address/history`. */
1626
+ interface GetOrgVaultHistoryInput {
1627
+ address: string;
1628
+ chainType: EChainType;
1629
+ page?: number;
1630
+ limit?: number;
1631
+ hideDust?: boolean;
1632
+ }
1633
+ /** Input for `GET /sdk/organization/wallets/:walletAddress/history`. */
1634
+ interface GetOrgWalletHistoryInput {
1635
+ walletAddress: string;
1636
+ chainType: EChainType;
1637
+ page?: number;
1638
+ limit?: number;
1639
+ hideDust?: boolean;
1604
1640
  }
1605
1641
  declare class AfridaxSDK {
1606
1642
  private readonly resolvedConfig;
@@ -1877,12 +1913,49 @@ declare class AfridaxSDK {
1877
1913
  */
1878
1914
  listOrgVaults(): Promise<OrgVaultsResponse>;
1879
1915
  /**
1880
- * Get a single org vault by UUID. Master sees any org vault; Employees
1881
- * only see vaults whose owners include one of their assigned wallets.
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)`.
1882
1939
  *
1883
- * Server route: `GET /sdk/organization/vaults/:id`.
1940
+ * Server route: `GET /sdk/organization/vaults/id/:chainType/:address`.
1941
+ */
1942
+ getOrgVaultById(input: GetOrgVaultByIdInput): Promise<MultisigWithTokensResponse>;
1943
+ /**
1944
+ * Transaction history for an org vault (orders + transfers). Master or
1945
+ * Employee; assignment-gated for Employees.
1946
+ *
1947
+ * Server route:
1948
+ * `GET /sdk/organization/vaults/by-address/:chainType/:address/history`.
1949
+ */
1950
+ getOrgVaultHistory(input: GetOrgVaultHistoryInput): Promise<TxHistoryCombinedResponse>;
1951
+ /**
1952
+ * Transaction history for a regular (non-vault) org wallet. Master or
1953
+ * Employee; assignment-gated for Employees.
1954
+ *
1955
+ * Server route:
1956
+ * `GET /sdk/organization/wallets/:walletAddress/history?chainType=...`.
1884
1957
  */
1885
- getOrgVaultById(input: GetOrgVaultByIdInput): Promise<OrgVaultItem>;
1958
+ getOrgWalletHistory(input: GetOrgWalletHistoryInput): Promise<HistoryResponse>;
1886
1959
  /**
1887
1960
  * Create one or more org-owned wallets. Master-only.
1888
1961
  *
@@ -2278,4 +2351,4 @@ declare class NotFoundError extends AfridaxBaseError {
2278
2351
  */
2279
2352
  declare function isAfridaxError(error: unknown): error is AfridaxBaseError;
2280
2353
 
2281
- 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 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,10 +1613,30 @@ interface GetOrgWalletUtxosInput {
1597
1613
  chainType: EChainType;
1598
1614
  chain: string;
1599
1615
  }
1600
- /** Path params for `GET /sdk/organization/vaults/:id`. */
1616
+ /** Input for `GET /sdk/organization/vaults/id/:chainType/:address`. */
1601
1617
  interface GetOrgVaultByIdInput {
1602
- /** Vault UUID (not address). */
1603
- id: string;
1618
+ address: string;
1619
+ chainType: EChainType;
1620
+ }
1621
+ /** Input for `GET /sdk/organization/vaults/:chainType`. */
1622
+ interface ListOrgVaultsByChainInput {
1623
+ chainType: EChainType;
1624
+ }
1625
+ /** Input for `GET /sdk/organization/vaults/:address/history`. */
1626
+ interface GetOrgVaultHistoryInput {
1627
+ address: string;
1628
+ chainType: EChainType;
1629
+ page?: number;
1630
+ limit?: number;
1631
+ hideDust?: boolean;
1632
+ }
1633
+ /** Input for `GET /sdk/organization/wallets/:walletAddress/history`. */
1634
+ interface GetOrgWalletHistoryInput {
1635
+ walletAddress: string;
1636
+ chainType: EChainType;
1637
+ page?: number;
1638
+ limit?: number;
1639
+ hideDust?: boolean;
1604
1640
  }
1605
1641
  declare class AfridaxSDK {
1606
1642
  private readonly resolvedConfig;
@@ -1877,12 +1913,49 @@ declare class AfridaxSDK {
1877
1913
  */
1878
1914
  listOrgVaults(): Promise<OrgVaultsResponse>;
1879
1915
  /**
1880
- * Get a single org vault by UUID. Master sees any org vault; Employees
1881
- * only see vaults whose owners include one of their assigned wallets.
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)`.
1882
1939
  *
1883
- * Server route: `GET /sdk/organization/vaults/:id`.
1940
+ * Server route: `GET /sdk/organization/vaults/id/:chainType/:address`.
1941
+ */
1942
+ getOrgVaultById(input: GetOrgVaultByIdInput): Promise<MultisigWithTokensResponse>;
1943
+ /**
1944
+ * Transaction history for an org vault (orders + transfers). Master or
1945
+ * Employee; assignment-gated for Employees.
1946
+ *
1947
+ * Server route:
1948
+ * `GET /sdk/organization/vaults/by-address/:chainType/:address/history`.
1949
+ */
1950
+ getOrgVaultHistory(input: GetOrgVaultHistoryInput): Promise<TxHistoryCombinedResponse>;
1951
+ /**
1952
+ * Transaction history for a regular (non-vault) org wallet. Master or
1953
+ * Employee; assignment-gated for Employees.
1954
+ *
1955
+ * Server route:
1956
+ * `GET /sdk/organization/wallets/:walletAddress/history?chainType=...`.
1884
1957
  */
1885
- getOrgVaultById(input: GetOrgVaultByIdInput): Promise<OrgVaultItem>;
1958
+ getOrgWalletHistory(input: GetOrgWalletHistoryInput): Promise<HistoryResponse>;
1886
1959
  /**
1887
1960
  * Create one or more org-owned wallets. Master-only.
1888
1961
  *
@@ -2278,4 +2351,4 @@ declare class NotFoundError extends AfridaxBaseError {
2278
2351
  */
2279
2352
  declare function isAfridaxError(error: unknown): error is AfridaxBaseError;
2280
2353
 
2281
- 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 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 };