vaults-multichain-sdk 1.7.0 → 1.7.1
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 +39 -17
- package/dist/index.d.ts +39 -17
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1422,6 +1422,8 @@ interface CreateOrderInput {
|
|
|
1422
1422
|
threshold?: number;
|
|
1423
1423
|
token?: TokenInfo;
|
|
1424
1424
|
orderIdToActivate?: string;
|
|
1425
|
+
/** Route to personal `/sdk/order/...` or organization `/sdk/organization/orders/...`. */
|
|
1426
|
+
walletScope?: WalletScope;
|
|
1425
1427
|
}
|
|
1426
1428
|
/** Output for createOrder */
|
|
1427
1429
|
interface CreateOrderOutput {
|
|
@@ -1434,6 +1436,8 @@ interface SignOrderInput {
|
|
|
1434
1436
|
order: Order;
|
|
1435
1437
|
walletAddress: string;
|
|
1436
1438
|
multisigId?: string;
|
|
1439
|
+
/** Route to personal `/sdk/order/...` or organization `/sdk/organization/orders/...`. */
|
|
1440
|
+
walletScope?: WalletScope;
|
|
1437
1441
|
}
|
|
1438
1442
|
/** Output for signOrder */
|
|
1439
1443
|
interface SignOrderOutput {
|
|
@@ -1446,6 +1450,8 @@ interface RejectOrderInput {
|
|
|
1446
1450
|
order: Order;
|
|
1447
1451
|
multisig: MultisigsItem;
|
|
1448
1452
|
walletAddress: string;
|
|
1453
|
+
/** Route to personal `/sdk/order/...` or organization `/sdk/organization/orders/...`. */
|
|
1454
|
+
walletScope?: WalletScope;
|
|
1449
1455
|
}
|
|
1450
1456
|
/** Input for executeOrder */
|
|
1451
1457
|
interface ExecuteOrderInput {
|
|
@@ -1454,6 +1460,30 @@ interface ExecuteOrderInput {
|
|
|
1454
1460
|
multisig: MultisigsItem;
|
|
1455
1461
|
walletAddress: string;
|
|
1456
1462
|
feeQuote?: EstimatedFee;
|
|
1463
|
+
/** Route to personal `/sdk/order/...` or organization `/sdk/organization/orders/...`. */
|
|
1464
|
+
walletScope?: WalletScope;
|
|
1465
|
+
}
|
|
1466
|
+
/** Input for createSendOrder (simplified send API) */
|
|
1467
|
+
interface CreateSendOrderInput {
|
|
1468
|
+
multisigId: string;
|
|
1469
|
+
walletAddress: string;
|
|
1470
|
+
to: string;
|
|
1471
|
+
amount: string;
|
|
1472
|
+
token?: TokenInfo;
|
|
1473
|
+
chainId: string;
|
|
1474
|
+
memo?: string;
|
|
1475
|
+
/** Route to personal `/sdk/order/...` or organization `/sdk/organization/orders/...`. */
|
|
1476
|
+
walletScope?: WalletScope;
|
|
1477
|
+
}
|
|
1478
|
+
/** Input for createSettingsOrder (simplified config-change API) */
|
|
1479
|
+
interface CreateSettingsOrderInput {
|
|
1480
|
+
multisigId: string;
|
|
1481
|
+
multisig: MultisigsItem;
|
|
1482
|
+
walletAddress: string;
|
|
1483
|
+
newOwners: string[];
|
|
1484
|
+
newThreshold?: number;
|
|
1485
|
+
/** Route to personal `/sdk/order/...` or organization `/sdk/organization/orders/...`. */
|
|
1486
|
+
walletScope?: WalletScope;
|
|
1457
1487
|
}
|
|
1458
1488
|
/** Output for executeOrder */
|
|
1459
1489
|
interface ExecuteOrderOutput {
|
|
@@ -1473,16 +1503,22 @@ interface GetOrdersInput {
|
|
|
1473
1503
|
multisigId: string;
|
|
1474
1504
|
page?: number;
|
|
1475
1505
|
limit?: number;
|
|
1506
|
+
/** Route to personal `/sdk/order/...` or organization `/sdk/organization/orders/...`. */
|
|
1507
|
+
walletScope?: WalletScope;
|
|
1476
1508
|
}
|
|
1477
1509
|
/** Input for getOrderById */
|
|
1478
1510
|
interface GetOrderByIdInput {
|
|
1479
1511
|
chain: EChainType;
|
|
1480
1512
|
orderId: string;
|
|
1513
|
+
/** Route to personal `/sdk/order/...` or organization `/sdk/organization/orders/...`. */
|
|
1514
|
+
walletScope?: WalletScope;
|
|
1481
1515
|
}
|
|
1482
1516
|
/** Input for deleteOrder */
|
|
1483
1517
|
interface DeleteOrderInput {
|
|
1484
1518
|
chain: EChainType;
|
|
1485
1519
|
orderId: string;
|
|
1520
|
+
/** Route to personal `/sdk/order/...` or organization `/sdk/organization/orders/...`. */
|
|
1521
|
+
walletScope?: WalletScope;
|
|
1486
1522
|
}
|
|
1487
1523
|
/** Input for getSupportedTokens */
|
|
1488
1524
|
interface GetSupportedTokensInput {
|
|
@@ -1735,26 +1771,12 @@ declare class AfridaxSDK {
|
|
|
1735
1771
|
* 2.8a Create a send order (token transfer) - Simplified API
|
|
1736
1772
|
* Automatically detects method and builds instructions
|
|
1737
1773
|
*/
|
|
1738
|
-
createSendOrder(input:
|
|
1739
|
-
multisigId: string;
|
|
1740
|
-
walletAddress: string;
|
|
1741
|
-
to: string;
|
|
1742
|
-
amount: string;
|
|
1743
|
-
token?: TokenInfo;
|
|
1744
|
-
chainId: string;
|
|
1745
|
-
memo?: string;
|
|
1746
|
-
}): Promise<CreateOrderOutput>;
|
|
1774
|
+
createSendOrder(input: CreateSendOrderInput): Promise<CreateOrderOutput>;
|
|
1747
1775
|
/**
|
|
1748
1776
|
* 2.8b Create a settings order (multisig configuration change) - Simplified API
|
|
1749
1777
|
* Automatically calculates changes and determines method
|
|
1750
1778
|
*/
|
|
1751
|
-
createSettingsOrder(input:
|
|
1752
|
-
multisigId: string;
|
|
1753
|
-
multisig: MultisigsItem;
|
|
1754
|
-
walletAddress: string;
|
|
1755
|
-
newOwners: string[];
|
|
1756
|
-
newThreshold?: number;
|
|
1757
|
-
}): Promise<CreateOrderOutput>;
|
|
1779
|
+
createSettingsOrder(input: CreateSettingsOrderInput): Promise<CreateOrderOutput>;
|
|
1758
1780
|
/**
|
|
1759
1781
|
* 2.9 Sign/approve a pending order
|
|
1760
1782
|
* Uses blockchainAdapter to properly reconstruct key and sign order hash
|
|
@@ -2351,4 +2373,4 @@ declare class NotFoundError extends AfridaxBaseError {
|
|
|
2351
2373
|
*/
|
|
2352
2374
|
declare function isAfridaxError(error: unknown): error is AfridaxBaseError;
|
|
2353
2375
|
|
|
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 };
|
|
2376
|
+
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 CreateSendOrderInput, type CreateSettingsOrderInput, 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
|
@@ -1422,6 +1422,8 @@ interface CreateOrderInput {
|
|
|
1422
1422
|
threshold?: number;
|
|
1423
1423
|
token?: TokenInfo;
|
|
1424
1424
|
orderIdToActivate?: string;
|
|
1425
|
+
/** Route to personal `/sdk/order/...` or organization `/sdk/organization/orders/...`. */
|
|
1426
|
+
walletScope?: WalletScope;
|
|
1425
1427
|
}
|
|
1426
1428
|
/** Output for createOrder */
|
|
1427
1429
|
interface CreateOrderOutput {
|
|
@@ -1434,6 +1436,8 @@ interface SignOrderInput {
|
|
|
1434
1436
|
order: Order;
|
|
1435
1437
|
walletAddress: string;
|
|
1436
1438
|
multisigId?: string;
|
|
1439
|
+
/** Route to personal `/sdk/order/...` or organization `/sdk/organization/orders/...`. */
|
|
1440
|
+
walletScope?: WalletScope;
|
|
1437
1441
|
}
|
|
1438
1442
|
/** Output for signOrder */
|
|
1439
1443
|
interface SignOrderOutput {
|
|
@@ -1446,6 +1450,8 @@ interface RejectOrderInput {
|
|
|
1446
1450
|
order: Order;
|
|
1447
1451
|
multisig: MultisigsItem;
|
|
1448
1452
|
walletAddress: string;
|
|
1453
|
+
/** Route to personal `/sdk/order/...` or organization `/sdk/organization/orders/...`. */
|
|
1454
|
+
walletScope?: WalletScope;
|
|
1449
1455
|
}
|
|
1450
1456
|
/** Input for executeOrder */
|
|
1451
1457
|
interface ExecuteOrderInput {
|
|
@@ -1454,6 +1460,30 @@ interface ExecuteOrderInput {
|
|
|
1454
1460
|
multisig: MultisigsItem;
|
|
1455
1461
|
walletAddress: string;
|
|
1456
1462
|
feeQuote?: EstimatedFee;
|
|
1463
|
+
/** Route to personal `/sdk/order/...` or organization `/sdk/organization/orders/...`. */
|
|
1464
|
+
walletScope?: WalletScope;
|
|
1465
|
+
}
|
|
1466
|
+
/** Input for createSendOrder (simplified send API) */
|
|
1467
|
+
interface CreateSendOrderInput {
|
|
1468
|
+
multisigId: string;
|
|
1469
|
+
walletAddress: string;
|
|
1470
|
+
to: string;
|
|
1471
|
+
amount: string;
|
|
1472
|
+
token?: TokenInfo;
|
|
1473
|
+
chainId: string;
|
|
1474
|
+
memo?: string;
|
|
1475
|
+
/** Route to personal `/sdk/order/...` or organization `/sdk/organization/orders/...`. */
|
|
1476
|
+
walletScope?: WalletScope;
|
|
1477
|
+
}
|
|
1478
|
+
/** Input for createSettingsOrder (simplified config-change API) */
|
|
1479
|
+
interface CreateSettingsOrderInput {
|
|
1480
|
+
multisigId: string;
|
|
1481
|
+
multisig: MultisigsItem;
|
|
1482
|
+
walletAddress: string;
|
|
1483
|
+
newOwners: string[];
|
|
1484
|
+
newThreshold?: number;
|
|
1485
|
+
/** Route to personal `/sdk/order/...` or organization `/sdk/organization/orders/...`. */
|
|
1486
|
+
walletScope?: WalletScope;
|
|
1457
1487
|
}
|
|
1458
1488
|
/** Output for executeOrder */
|
|
1459
1489
|
interface ExecuteOrderOutput {
|
|
@@ -1473,16 +1503,22 @@ interface GetOrdersInput {
|
|
|
1473
1503
|
multisigId: string;
|
|
1474
1504
|
page?: number;
|
|
1475
1505
|
limit?: number;
|
|
1506
|
+
/** Route to personal `/sdk/order/...` or organization `/sdk/organization/orders/...`. */
|
|
1507
|
+
walletScope?: WalletScope;
|
|
1476
1508
|
}
|
|
1477
1509
|
/** Input for getOrderById */
|
|
1478
1510
|
interface GetOrderByIdInput {
|
|
1479
1511
|
chain: EChainType;
|
|
1480
1512
|
orderId: string;
|
|
1513
|
+
/** Route to personal `/sdk/order/...` or organization `/sdk/organization/orders/...`. */
|
|
1514
|
+
walletScope?: WalletScope;
|
|
1481
1515
|
}
|
|
1482
1516
|
/** Input for deleteOrder */
|
|
1483
1517
|
interface DeleteOrderInput {
|
|
1484
1518
|
chain: EChainType;
|
|
1485
1519
|
orderId: string;
|
|
1520
|
+
/** Route to personal `/sdk/order/...` or organization `/sdk/organization/orders/...`. */
|
|
1521
|
+
walletScope?: WalletScope;
|
|
1486
1522
|
}
|
|
1487
1523
|
/** Input for getSupportedTokens */
|
|
1488
1524
|
interface GetSupportedTokensInput {
|
|
@@ -1735,26 +1771,12 @@ declare class AfridaxSDK {
|
|
|
1735
1771
|
* 2.8a Create a send order (token transfer) - Simplified API
|
|
1736
1772
|
* Automatically detects method and builds instructions
|
|
1737
1773
|
*/
|
|
1738
|
-
createSendOrder(input:
|
|
1739
|
-
multisigId: string;
|
|
1740
|
-
walletAddress: string;
|
|
1741
|
-
to: string;
|
|
1742
|
-
amount: string;
|
|
1743
|
-
token?: TokenInfo;
|
|
1744
|
-
chainId: string;
|
|
1745
|
-
memo?: string;
|
|
1746
|
-
}): Promise<CreateOrderOutput>;
|
|
1774
|
+
createSendOrder(input: CreateSendOrderInput): Promise<CreateOrderOutput>;
|
|
1747
1775
|
/**
|
|
1748
1776
|
* 2.8b Create a settings order (multisig configuration change) - Simplified API
|
|
1749
1777
|
* Automatically calculates changes and determines method
|
|
1750
1778
|
*/
|
|
1751
|
-
createSettingsOrder(input:
|
|
1752
|
-
multisigId: string;
|
|
1753
|
-
multisig: MultisigsItem;
|
|
1754
|
-
walletAddress: string;
|
|
1755
|
-
newOwners: string[];
|
|
1756
|
-
newThreshold?: number;
|
|
1757
|
-
}): Promise<CreateOrderOutput>;
|
|
1779
|
+
createSettingsOrder(input: CreateSettingsOrderInput): Promise<CreateOrderOutput>;
|
|
1758
1780
|
/**
|
|
1759
1781
|
* 2.9 Sign/approve a pending order
|
|
1760
1782
|
* Uses blockchainAdapter to properly reconstruct key and sign order hash
|
|
@@ -2351,4 +2373,4 @@ declare class NotFoundError extends AfridaxBaseError {
|
|
|
2351
2373
|
*/
|
|
2352
2374
|
declare function isAfridaxError(error: unknown): error is AfridaxBaseError;
|
|
2353
2375
|
|
|
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 };
|
|
2376
|
+
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 CreateSendOrderInput, type CreateSettingsOrderInput, 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 };
|