vaults-multichain-sdk 1.1.0 → 1.2.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
@@ -801,6 +801,65 @@ interface OrgWalletItem {
801
801
  interface OrgWalletsResponse {
802
802
  wallets: OrgWalletItem[];
803
803
  }
804
+ /**
805
+ * `GET /sdk/organization/wallets/me` — wallets assigned to the calling member
806
+ * within their active organization. Structurally identical to
807
+ * `OrgWalletsResponse` but kept distinct so a future divergence on either
808
+ * endpoint doesn't silently change the other.
809
+ */
810
+ interface OrgMyWalletsResponse {
811
+ wallets: OrgWalletItem[];
812
+ }
813
+ /**
814
+ * Vault row returned by `GET /sdk/organization/vaults/me` and
815
+ * `GET /sdk/organization/vaults`. Flatter shape than the internal
816
+ * `MultisigsItem` — owners are bare addresses, address/name are nullable
817
+ * for undeployed vaults.
818
+ */
819
+ interface OrgVaultItem {
820
+ id: string;
821
+ /** Chain-native address, or `null` when the vault is not yet deployed. */
822
+ address: string | null;
823
+ /** `null` when the vault is not yet deployed. */
824
+ name: string | null;
825
+ chainType: ChainType;
826
+ /** Numeric for EVM ("1", "137", ...), chain-specific otherwise. */
827
+ chainId: string;
828
+ /** Required signature count, serialized as a string. */
829
+ threshold: string;
830
+ isDeployed: boolean;
831
+ /** Owner wallet addresses. */
832
+ owners: string[];
833
+ }
834
+ /** Response of `GET /sdk/organization/vaults/me`. */
835
+ interface OrgMyVaultsResponse {
836
+ vaults: OrgVaultItem[];
837
+ }
838
+ /** Response of `GET /sdk/organization/vaults` (Master-only). */
839
+ interface OrgVaultsResponse {
840
+ vaults: OrgVaultItem[];
841
+ }
842
+ /** Per-chain wallet/vault quota inside an `OrgLimitGroup`. */
843
+ interface OrgLimitGroupChainLimit {
844
+ wallets: number;
845
+ vaults: number;
846
+ }
847
+ /**
848
+ * Limit-group configuration assigned to an organization. Only chains the org
849
+ * has a quota for appear in `limits`.
850
+ */
851
+ interface OrgLimitGroup {
852
+ id: string;
853
+ name: string;
854
+ limits: Partial<Record<ChainType, OrgLimitGroupChainLimit>>;
855
+ }
856
+ /**
857
+ * Response of `GET /sdk/organization/limit-group`. `limitGroup` is `null`
858
+ * when no group is configured — this is a legitimate response, not an error.
859
+ */
860
+ interface OrgLimitGroupEnvelopeResponse {
861
+ limitGroup: OrgLimitGroup | null;
862
+ }
804
863
  /**
805
864
  * `GET /sdk/organization/policies` — current org security policy.
806
865
  * Returned fields are partially optional/nullable when the corresponding
@@ -1653,6 +1712,37 @@ declare class AfridaxSDK {
1653
1712
  * Server route: `GET /sdk/organization/wallets`.
1654
1713
  */
1655
1714
  listOrgWallets(): Promise<OrgWalletsResponse>;
1715
+ /**
1716
+ * List wallets assigned to the calling member within their active
1717
+ * organization. Available to Master or Employee accounts.
1718
+ *
1719
+ * Server route: `GET /sdk/organization/wallets/me`.
1720
+ */
1721
+ listMyOrgWallets(): Promise<OrgMyWalletsResponse>;
1722
+ /**
1723
+ * List active vaults in the caller's organization that include any of the
1724
+ * caller's assigned wallets as owners. Available to Master or Employee
1725
+ * accounts.
1726
+ *
1727
+ * Server route: `GET /sdk/organization/vaults/me`.
1728
+ */
1729
+ listMyOrgVaults(): Promise<OrgMyVaultsResponse>;
1730
+ /**
1731
+ * List every active vault tagged to the caller's organization, regardless
1732
+ * of personal ownership. **Master-only** — Employees receive
1733
+ * `PermissionDeniedError`.
1734
+ *
1735
+ * Server route: `GET /sdk/organization/vaults`.
1736
+ */
1737
+ listOrgVaults(): Promise<OrgVaultsResponse>;
1738
+ /**
1739
+ * Get the wallet/vault limit-group configured for the caller's organization,
1740
+ * or `{ limitGroup: null }` when none is set (legitimate response — do not
1741
+ * treat as an error). Available to Master or Employee accounts.
1742
+ *
1743
+ * Server route: `GET /sdk/organization/limit-group`.
1744
+ */
1745
+ getOrgLimitGroup(): Promise<OrgLimitGroupEnvelopeResponse>;
1656
1746
  /**
1657
1747
  * 7.8 Read the org's current security policy. Master-only.
1658
1748
  *
@@ -1952,4 +2042,4 @@ declare class NotFoundError extends AfridaxBaseError {
1952
2042
  */
1953
2043
  declare function isAfridaxError(error: unknown): error is AfridaxBaseError;
1954
2044
 
1955
- 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 CreateWalletInput, type CreateWalletOutput, type CreateWalletResponse, type DeleteAddressBookEntryInput, type DeleteMultisigInput, type DeleteOrderInput, type DeleteOrgAddressBookEntryInput, type DeleteResponse, type DeleteWalletInput, EAdaInstructionType, EAddressBookEntryType, EChainType, EXrpOrderType, type EstimateActivationFeeInput, type EstimateFeeInput, type EstimateOrderExecutionFeeInput, type EstimatedFee, type ExecuteOrderInput, type ExecuteOrderOutput, type ExportWalletInput, type ExportWalletOutput, type GetAddressBookEntriesInput, type GetAddressTypeInput, type GetMultisigByIdInput, type GetMultisigTxHistoryInput, type GetMultisigsInput, type GetOrderByIdInput, type GetOrdersInput, type GetOrgAuditLogsInput, 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 OrgMemberKycStatus, type OrgMemberRole, type OrgMemberStatus, type OrgPolicy, type OrgPolicyCode, OrgPolicyRejectedError, type OrgTeamDirectoryResponse, type OrgTeamMember, type OrgWalletItem, type OrgWalletsResponse, type PaginatedMultisigsWithTokensResponse, type PaginatedOrdersResponse, type PaginatedWalletsResponse, PermissionDeniedError, type RejectOrderInput, type RemoveOrgMemberInput, 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, 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 };
2045
+ 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 CreateWalletInput, type CreateWalletOutput, type CreateWalletResponse, type DeleteAddressBookEntryInput, type DeleteMultisigInput, type DeleteOrderInput, type DeleteOrgAddressBookEntryInput, type DeleteResponse, type DeleteWalletInput, EAdaInstructionType, EAddressBookEntryType, EChainType, EXrpOrderType, type EstimateActivationFeeInput, type EstimateFeeInput, type EstimateOrderExecutionFeeInput, type EstimatedFee, type ExecuteOrderInput, type ExecuteOrderOutput, type ExportWalletInput, type ExportWalletOutput, type GetAddressBookEntriesInput, type GetAddressTypeInput, type GetMultisigByIdInput, type GetMultisigTxHistoryInput, type GetMultisigsInput, type GetOrderByIdInput, type GetOrdersInput, type GetOrgAuditLogsInput, 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 OrgMemberKycStatus, type OrgMemberRole, type OrgMemberStatus, type OrgMyVaultsResponse, type OrgMyWalletsResponse, type OrgPolicy, type OrgPolicyCode, OrgPolicyRejectedError, type OrgTeamDirectoryResponse, type OrgTeamMember, type OrgVaultItem, type OrgVaultsResponse, type OrgWalletItem, type OrgWalletsResponse, type PaginatedMultisigsWithTokensResponse, type PaginatedOrdersResponse, type PaginatedWalletsResponse, PermissionDeniedError, type RejectOrderInput, type RemoveOrgMemberInput, 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, 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
@@ -801,6 +801,65 @@ interface OrgWalletItem {
801
801
  interface OrgWalletsResponse {
802
802
  wallets: OrgWalletItem[];
803
803
  }
804
+ /**
805
+ * `GET /sdk/organization/wallets/me` — wallets assigned to the calling member
806
+ * within their active organization. Structurally identical to
807
+ * `OrgWalletsResponse` but kept distinct so a future divergence on either
808
+ * endpoint doesn't silently change the other.
809
+ */
810
+ interface OrgMyWalletsResponse {
811
+ wallets: OrgWalletItem[];
812
+ }
813
+ /**
814
+ * Vault row returned by `GET /sdk/organization/vaults/me` and
815
+ * `GET /sdk/organization/vaults`. Flatter shape than the internal
816
+ * `MultisigsItem` — owners are bare addresses, address/name are nullable
817
+ * for undeployed vaults.
818
+ */
819
+ interface OrgVaultItem {
820
+ id: string;
821
+ /** Chain-native address, or `null` when the vault is not yet deployed. */
822
+ address: string | null;
823
+ /** `null` when the vault is not yet deployed. */
824
+ name: string | null;
825
+ chainType: ChainType;
826
+ /** Numeric for EVM ("1", "137", ...), chain-specific otherwise. */
827
+ chainId: string;
828
+ /** Required signature count, serialized as a string. */
829
+ threshold: string;
830
+ isDeployed: boolean;
831
+ /** Owner wallet addresses. */
832
+ owners: string[];
833
+ }
834
+ /** Response of `GET /sdk/organization/vaults/me`. */
835
+ interface OrgMyVaultsResponse {
836
+ vaults: OrgVaultItem[];
837
+ }
838
+ /** Response of `GET /sdk/organization/vaults` (Master-only). */
839
+ interface OrgVaultsResponse {
840
+ vaults: OrgVaultItem[];
841
+ }
842
+ /** Per-chain wallet/vault quota inside an `OrgLimitGroup`. */
843
+ interface OrgLimitGroupChainLimit {
844
+ wallets: number;
845
+ vaults: number;
846
+ }
847
+ /**
848
+ * Limit-group configuration assigned to an organization. Only chains the org
849
+ * has a quota for appear in `limits`.
850
+ */
851
+ interface OrgLimitGroup {
852
+ id: string;
853
+ name: string;
854
+ limits: Partial<Record<ChainType, OrgLimitGroupChainLimit>>;
855
+ }
856
+ /**
857
+ * Response of `GET /sdk/organization/limit-group`. `limitGroup` is `null`
858
+ * when no group is configured — this is a legitimate response, not an error.
859
+ */
860
+ interface OrgLimitGroupEnvelopeResponse {
861
+ limitGroup: OrgLimitGroup | null;
862
+ }
804
863
  /**
805
864
  * `GET /sdk/organization/policies` — current org security policy.
806
865
  * Returned fields are partially optional/nullable when the corresponding
@@ -1653,6 +1712,37 @@ declare class AfridaxSDK {
1653
1712
  * Server route: `GET /sdk/organization/wallets`.
1654
1713
  */
1655
1714
  listOrgWallets(): Promise<OrgWalletsResponse>;
1715
+ /**
1716
+ * List wallets assigned to the calling member within their active
1717
+ * organization. Available to Master or Employee accounts.
1718
+ *
1719
+ * Server route: `GET /sdk/organization/wallets/me`.
1720
+ */
1721
+ listMyOrgWallets(): Promise<OrgMyWalletsResponse>;
1722
+ /**
1723
+ * List active vaults in the caller's organization that include any of the
1724
+ * caller's assigned wallets as owners. Available to Master or Employee
1725
+ * accounts.
1726
+ *
1727
+ * Server route: `GET /sdk/organization/vaults/me`.
1728
+ */
1729
+ listMyOrgVaults(): Promise<OrgMyVaultsResponse>;
1730
+ /**
1731
+ * List every active vault tagged to the caller's organization, regardless
1732
+ * of personal ownership. **Master-only** — Employees receive
1733
+ * `PermissionDeniedError`.
1734
+ *
1735
+ * Server route: `GET /sdk/organization/vaults`.
1736
+ */
1737
+ listOrgVaults(): Promise<OrgVaultsResponse>;
1738
+ /**
1739
+ * Get the wallet/vault limit-group configured for the caller's organization,
1740
+ * or `{ limitGroup: null }` when none is set (legitimate response — do not
1741
+ * treat as an error). Available to Master or Employee accounts.
1742
+ *
1743
+ * Server route: `GET /sdk/organization/limit-group`.
1744
+ */
1745
+ getOrgLimitGroup(): Promise<OrgLimitGroupEnvelopeResponse>;
1656
1746
  /**
1657
1747
  * 7.8 Read the org's current security policy. Master-only.
1658
1748
  *
@@ -1952,4 +2042,4 @@ declare class NotFoundError extends AfridaxBaseError {
1952
2042
  */
1953
2043
  declare function isAfridaxError(error: unknown): error is AfridaxBaseError;
1954
2044
 
1955
- 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 CreateWalletInput, type CreateWalletOutput, type CreateWalletResponse, type DeleteAddressBookEntryInput, type DeleteMultisigInput, type DeleteOrderInput, type DeleteOrgAddressBookEntryInput, type DeleteResponse, type DeleteWalletInput, EAdaInstructionType, EAddressBookEntryType, EChainType, EXrpOrderType, type EstimateActivationFeeInput, type EstimateFeeInput, type EstimateOrderExecutionFeeInput, type EstimatedFee, type ExecuteOrderInput, type ExecuteOrderOutput, type ExportWalletInput, type ExportWalletOutput, type GetAddressBookEntriesInput, type GetAddressTypeInput, type GetMultisigByIdInput, type GetMultisigTxHistoryInput, type GetMultisigsInput, type GetOrderByIdInput, type GetOrdersInput, type GetOrgAuditLogsInput, 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 OrgMemberKycStatus, type OrgMemberRole, type OrgMemberStatus, type OrgPolicy, type OrgPolicyCode, OrgPolicyRejectedError, type OrgTeamDirectoryResponse, type OrgTeamMember, type OrgWalletItem, type OrgWalletsResponse, type PaginatedMultisigsWithTokensResponse, type PaginatedOrdersResponse, type PaginatedWalletsResponse, PermissionDeniedError, type RejectOrderInput, type RemoveOrgMemberInput, 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, 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 };
2045
+ 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 CreateWalletInput, type CreateWalletOutput, type CreateWalletResponse, type DeleteAddressBookEntryInput, type DeleteMultisigInput, type DeleteOrderInput, type DeleteOrgAddressBookEntryInput, type DeleteResponse, type DeleteWalletInput, EAdaInstructionType, EAddressBookEntryType, EChainType, EXrpOrderType, type EstimateActivationFeeInput, type EstimateFeeInput, type EstimateOrderExecutionFeeInput, type EstimatedFee, type ExecuteOrderInput, type ExecuteOrderOutput, type ExportWalletInput, type ExportWalletOutput, type GetAddressBookEntriesInput, type GetAddressTypeInput, type GetMultisigByIdInput, type GetMultisigTxHistoryInput, type GetMultisigsInput, type GetOrderByIdInput, type GetOrdersInput, type GetOrgAuditLogsInput, 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 OrgMemberKycStatus, type OrgMemberRole, type OrgMemberStatus, type OrgMyVaultsResponse, type OrgMyWalletsResponse, type OrgPolicy, type OrgPolicyCode, OrgPolicyRejectedError, type OrgTeamDirectoryResponse, type OrgTeamMember, type OrgVaultItem, type OrgVaultsResponse, type OrgWalletItem, type OrgWalletsResponse, type PaginatedMultisigsWithTokensResponse, type PaginatedOrdersResponse, type PaginatedWalletsResponse, PermissionDeniedError, type RejectOrderInput, type RemoveOrgMemberInput, 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, 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 };