vaults-multichain-sdk 1.6.1 → 1.6.2
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 +1 -1
- package/dist/index.d.cts +40 -7
- package/dist/index.d.ts +40 -7
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1597,10 +1597,26 @@ interface GetOrgWalletUtxosInput {
|
|
|
1597
1597
|
chainType: EChainType;
|
|
1598
1598
|
chain: string;
|
|
1599
1599
|
}
|
|
1600
|
-
/**
|
|
1600
|
+
/** Input for `GET /sdk/organization/vaults/:address`. */
|
|
1601
1601
|
interface GetOrgVaultByIdInput {
|
|
1602
|
-
|
|
1603
|
-
|
|
1602
|
+
address: string;
|
|
1603
|
+
chainType: EChainType;
|
|
1604
|
+
}
|
|
1605
|
+
/** Input for `GET /sdk/organization/vaults/:address/history`. */
|
|
1606
|
+
interface GetOrgVaultHistoryInput {
|
|
1607
|
+
address: string;
|
|
1608
|
+
chainType: EChainType;
|
|
1609
|
+
page?: number;
|
|
1610
|
+
limit?: number;
|
|
1611
|
+
hideDust?: boolean;
|
|
1612
|
+
}
|
|
1613
|
+
/** Input for `GET /sdk/organization/wallets/:walletAddress/history`. */
|
|
1614
|
+
interface GetOrgWalletHistoryInput {
|
|
1615
|
+
walletAddress: string;
|
|
1616
|
+
chainType: EChainType;
|
|
1617
|
+
page?: number;
|
|
1618
|
+
limit?: number;
|
|
1619
|
+
hideDust?: boolean;
|
|
1604
1620
|
}
|
|
1605
1621
|
declare class AfridaxSDK {
|
|
1606
1622
|
private readonly resolvedConfig;
|
|
@@ -1877,12 +1893,29 @@ declare class AfridaxSDK {
|
|
|
1877
1893
|
*/
|
|
1878
1894
|
listOrgVaults(): Promise<OrgVaultsResponse>;
|
|
1879
1895
|
/**
|
|
1880
|
-
* Get a single org vault by
|
|
1881
|
-
* only see vaults whose owners include one of their assigned
|
|
1896
|
+
* Get a single org vault by on-chain address. Master sees any org vault;
|
|
1897
|
+
* Employees only see vaults whose owners include one of their assigned
|
|
1898
|
+
* wallets.
|
|
1882
1899
|
*
|
|
1883
|
-
* Server route: `GET /sdk/organization/vaults/:
|
|
1900
|
+
* Server route: `GET /sdk/organization/vaults/:address?chainType=...`.
|
|
1884
1901
|
*/
|
|
1885
1902
|
getOrgVaultById(input: GetOrgVaultByIdInput): Promise<OrgVaultItem>;
|
|
1903
|
+
/**
|
|
1904
|
+
* Transaction history for an org vault (orders + transfers). Master or
|
|
1905
|
+
* Employee; assignment-gated for Employees.
|
|
1906
|
+
*
|
|
1907
|
+
* Server route:
|
|
1908
|
+
* `GET /sdk/organization/vaults/:address/history?chainType=...`.
|
|
1909
|
+
*/
|
|
1910
|
+
getOrgVaultHistory(input: GetOrgVaultHistoryInput): Promise<TxHistoryCombinedResponse>;
|
|
1911
|
+
/**
|
|
1912
|
+
* Transaction history for a regular (non-vault) org wallet. Master or
|
|
1913
|
+
* Employee; assignment-gated for Employees.
|
|
1914
|
+
*
|
|
1915
|
+
* Server route:
|
|
1916
|
+
* `GET /sdk/organization/wallets/:walletAddress/history?chainType=...`.
|
|
1917
|
+
*/
|
|
1918
|
+
getOrgWalletHistory(input: GetOrgWalletHistoryInput): Promise<HistoryResponse>;
|
|
1886
1919
|
/**
|
|
1887
1920
|
* Create one or more org-owned wallets. Master-only.
|
|
1888
1921
|
*
|
|
@@ -2278,4 +2311,4 @@ declare class NotFoundError extends AfridaxBaseError {
|
|
|
2278
2311
|
*/
|
|
2279
2312
|
declare function isAfridaxError(error: unknown): error is AfridaxBaseError;
|
|
2280
2313
|
|
|
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 };
|
|
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 };
|
package/dist/index.d.ts
CHANGED
|
@@ -1597,10 +1597,26 @@ interface GetOrgWalletUtxosInput {
|
|
|
1597
1597
|
chainType: EChainType;
|
|
1598
1598
|
chain: string;
|
|
1599
1599
|
}
|
|
1600
|
-
/**
|
|
1600
|
+
/** Input for `GET /sdk/organization/vaults/:address`. */
|
|
1601
1601
|
interface GetOrgVaultByIdInput {
|
|
1602
|
-
|
|
1603
|
-
|
|
1602
|
+
address: string;
|
|
1603
|
+
chainType: EChainType;
|
|
1604
|
+
}
|
|
1605
|
+
/** Input for `GET /sdk/organization/vaults/:address/history`. */
|
|
1606
|
+
interface GetOrgVaultHistoryInput {
|
|
1607
|
+
address: string;
|
|
1608
|
+
chainType: EChainType;
|
|
1609
|
+
page?: number;
|
|
1610
|
+
limit?: number;
|
|
1611
|
+
hideDust?: boolean;
|
|
1612
|
+
}
|
|
1613
|
+
/** Input for `GET /sdk/organization/wallets/:walletAddress/history`. */
|
|
1614
|
+
interface GetOrgWalletHistoryInput {
|
|
1615
|
+
walletAddress: string;
|
|
1616
|
+
chainType: EChainType;
|
|
1617
|
+
page?: number;
|
|
1618
|
+
limit?: number;
|
|
1619
|
+
hideDust?: boolean;
|
|
1604
1620
|
}
|
|
1605
1621
|
declare class AfridaxSDK {
|
|
1606
1622
|
private readonly resolvedConfig;
|
|
@@ -1877,12 +1893,29 @@ declare class AfridaxSDK {
|
|
|
1877
1893
|
*/
|
|
1878
1894
|
listOrgVaults(): Promise<OrgVaultsResponse>;
|
|
1879
1895
|
/**
|
|
1880
|
-
* Get a single org vault by
|
|
1881
|
-
* only see vaults whose owners include one of their assigned
|
|
1896
|
+
* Get a single org vault by on-chain address. Master sees any org vault;
|
|
1897
|
+
* Employees only see vaults whose owners include one of their assigned
|
|
1898
|
+
* wallets.
|
|
1882
1899
|
*
|
|
1883
|
-
* Server route: `GET /sdk/organization/vaults/:
|
|
1900
|
+
* Server route: `GET /sdk/organization/vaults/:address?chainType=...`.
|
|
1884
1901
|
*/
|
|
1885
1902
|
getOrgVaultById(input: GetOrgVaultByIdInput): Promise<OrgVaultItem>;
|
|
1903
|
+
/**
|
|
1904
|
+
* Transaction history for an org vault (orders + transfers). Master or
|
|
1905
|
+
* Employee; assignment-gated for Employees.
|
|
1906
|
+
*
|
|
1907
|
+
* Server route:
|
|
1908
|
+
* `GET /sdk/organization/vaults/:address/history?chainType=...`.
|
|
1909
|
+
*/
|
|
1910
|
+
getOrgVaultHistory(input: GetOrgVaultHistoryInput): Promise<TxHistoryCombinedResponse>;
|
|
1911
|
+
/**
|
|
1912
|
+
* Transaction history for a regular (non-vault) org wallet. Master or
|
|
1913
|
+
* Employee; assignment-gated for Employees.
|
|
1914
|
+
*
|
|
1915
|
+
* Server route:
|
|
1916
|
+
* `GET /sdk/organization/wallets/:walletAddress/history?chainType=...`.
|
|
1917
|
+
*/
|
|
1918
|
+
getOrgWalletHistory(input: GetOrgWalletHistoryInput): Promise<HistoryResponse>;
|
|
1886
1919
|
/**
|
|
1887
1920
|
* Create one or more org-owned wallets. Master-only.
|
|
1888
1921
|
*
|
|
@@ -2278,4 +2311,4 @@ declare class NotFoundError extends AfridaxBaseError {
|
|
|
2278
2311
|
*/
|
|
2279
2312
|
declare function isAfridaxError(error: unknown): error is AfridaxBaseError;
|
|
2280
2313
|
|
|
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 };
|
|
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 };
|