@fractalshq/sync 0.1.0 → 0.1.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/README.md +43 -11
- package/dist/chunk-4VKCXC52.mjs +129 -0
- package/dist/chunk-4ZYNBLY5.mjs +129 -0
- package/dist/chunk-DUDWBTA2.mjs +0 -0
- package/dist/chunk-FBL2T6BA.mjs +249 -0
- package/dist/chunk-ZIWHYEXE.mjs +498 -0
- package/dist/index.d.mts +1 -3
- package/dist/index.d.ts +1 -3
- package/dist/index.js +19 -649
- package/dist/index.mjs +7 -42
- package/dist/v1/core/index.d.mts +28 -0
- package/dist/v1/core/index.d.ts +28 -0
- package/dist/v1/core/index.js +320 -0
- package/dist/v1/core/index.mjs +51 -0
- package/dist/v1/index.d.mts +3 -0
- package/dist/v1/index.d.ts +3 -0
- package/dist/v1/index.js +816 -0
- package/dist/v1/index.mjs +63 -0
- package/dist/v1/react/index.d.mts +111 -0
- package/dist/v1/react/index.d.ts +111 -0
- package/dist/v1/react/index.js +552 -0
- package/dist/v1/react/index.mjs +330 -0
- package/dist/v1/server/index.d.mts +67 -0
- package/dist/v1/server/index.d.ts +67 -0
- package/dist/v1/server/index.js +540 -0
- package/dist/v1/server/index.mjs +15 -0
- package/dist/v1/widgets/index.d.mts +2 -0
- package/dist/v1/widgets/index.d.ts +2 -0
- package/dist/v1/widgets/index.js +18 -0
- package/dist/v1/widgets/index.mjs +0 -0
- package/dist/v2/core/index.d.mts +5 -21
- package/dist/v2/core/index.d.ts +5 -21
- package/dist/v2/core/index.js +9 -35
- package/dist/v2/core/index.mjs +3 -7
- package/dist/v2/index.d.mts +1 -1
- package/dist/v2/index.d.ts +1 -1
- package/dist/v2/index.js +9 -35
- package/dist/v2/index.mjs +4 -7
- package/dist/v2/react/index.d.mts +5 -27
- package/dist/v2/react/index.d.ts +5 -27
- package/dist/v2/react/index.js +26 -108
- package/dist/v2/react/index.mjs +20 -76
- package/package.json +52 -21
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import {
|
|
2
|
+
GET,
|
|
3
|
+
POST,
|
|
4
|
+
SyncServerClient,
|
|
5
|
+
createMethodHandler,
|
|
6
|
+
syncRouteHandler
|
|
7
|
+
} from "../chunk-ZIWHYEXE.mjs";
|
|
8
|
+
import {
|
|
9
|
+
DEFAULT_BASE_PATH,
|
|
10
|
+
DEFAULT_RPC_ENDPOINT,
|
|
11
|
+
DISTRIBUTION_MEMO_PREFIX,
|
|
12
|
+
MEMO_PROGRAM_ID,
|
|
13
|
+
PERSISTENCE_WARNING_EVENT,
|
|
14
|
+
SyncReactError,
|
|
15
|
+
XNET_2022_MINT,
|
|
16
|
+
assertTruthy,
|
|
17
|
+
buildDistributionMemoTag,
|
|
18
|
+
buildDistributionTransaction,
|
|
19
|
+
buildUrl,
|
|
20
|
+
clearPersistenceWarning,
|
|
21
|
+
commitDistributionSignature,
|
|
22
|
+
handlePersistenceWarningResponse,
|
|
23
|
+
isAbsoluteUrl,
|
|
24
|
+
isRelativeUrl,
|
|
25
|
+
loadPersistenceWarnings,
|
|
26
|
+
prepareDistributionDraft,
|
|
27
|
+
recordPersistenceWarning,
|
|
28
|
+
requestJSON,
|
|
29
|
+
resolveFetcher,
|
|
30
|
+
resolveRequestConfig,
|
|
31
|
+
sanitizeBasePath
|
|
32
|
+
} from "../chunk-FBL2T6BA.mjs";
|
|
33
|
+
import "../chunk-FWCSY2DS.mjs";
|
|
34
|
+
export {
|
|
35
|
+
DEFAULT_BASE_PATH,
|
|
36
|
+
DEFAULT_RPC_ENDPOINT,
|
|
37
|
+
DISTRIBUTION_MEMO_PREFIX,
|
|
38
|
+
GET,
|
|
39
|
+
MEMO_PROGRAM_ID,
|
|
40
|
+
PERSISTENCE_WARNING_EVENT,
|
|
41
|
+
POST,
|
|
42
|
+
SyncReactError,
|
|
43
|
+
SyncServerClient,
|
|
44
|
+
XNET_2022_MINT,
|
|
45
|
+
assertTruthy,
|
|
46
|
+
buildDistributionMemoTag,
|
|
47
|
+
buildDistributionTransaction,
|
|
48
|
+
buildUrl,
|
|
49
|
+
clearPersistenceWarning,
|
|
50
|
+
commitDistributionSignature,
|
|
51
|
+
createMethodHandler,
|
|
52
|
+
handlePersistenceWarningResponse,
|
|
53
|
+
isAbsoluteUrl,
|
|
54
|
+
isRelativeUrl,
|
|
55
|
+
loadPersistenceWarnings,
|
|
56
|
+
prepareDistributionDraft,
|
|
57
|
+
recordPersistenceWarning,
|
|
58
|
+
requestJSON,
|
|
59
|
+
resolveFetcher,
|
|
60
|
+
resolveRequestConfig,
|
|
61
|
+
sanitizeBasePath,
|
|
62
|
+
syncRouteHandler
|
|
63
|
+
};
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
import * as react from 'react';
|
|
2
|
+
import { ReactNode } from 'react';
|
|
3
|
+
import { UseQueryOptions, UseQueryResult, UseMutationOptions, UseMutationResult } from '@tanstack/react-query';
|
|
4
|
+
import { F as Fetcher, g as ListDistributionsResponse, K as SyncReactError, a as Distribution, B as BuildDistributionTransactionRequest, k as DistributionTransactionPayload, q as CommitDistributionSignatureInput, p as CommitDistributionResponse, v as ClaimableResponse, x as ClaimHistoryResponse, r as BuildClaimTransactionRequest, s as BuildClaimTransactionResponse, t as CommitClaimRequest, u as CommitClaimResponse } from '../../api-BX1PjpZQ.mjs';
|
|
5
|
+
|
|
6
|
+
interface SyncContextValue {
|
|
7
|
+
basePath: string;
|
|
8
|
+
fetcher?: Fetcher;
|
|
9
|
+
}
|
|
10
|
+
interface SyncProviderProps {
|
|
11
|
+
basePath?: string;
|
|
12
|
+
fetcher?: Fetcher;
|
|
13
|
+
children: ReactNode;
|
|
14
|
+
}
|
|
15
|
+
declare function SyncProvider({ basePath, fetcher, children }: SyncProviderProps): react.FunctionComponentElement<react.ProviderProps<SyncContextValue>>;
|
|
16
|
+
interface SyncClient {
|
|
17
|
+
basePath: string;
|
|
18
|
+
request<T>(path: string, init?: RequestInit): Promise<T>;
|
|
19
|
+
get<T>(path: string, init?: RequestInit): Promise<T>;
|
|
20
|
+
post<T>(path: string, body?: unknown, init?: RequestInit): Promise<T>;
|
|
21
|
+
}
|
|
22
|
+
declare function useSyncClient(): SyncClient;
|
|
23
|
+
type QueryOptions<T> = Omit<UseQueryOptions<T, SyncReactError, T>, "queryKey" | "queryFn">;
|
|
24
|
+
interface DistributionsQueryParams {
|
|
25
|
+
role?: "claimant" | "creator";
|
|
26
|
+
status?: string | null;
|
|
27
|
+
}
|
|
28
|
+
declare function useDistributions<TResponse = ListDistributionsResponse>(paramsOrOptions?: DistributionsQueryParams | QueryOptions<TResponse>, optionsMaybe?: QueryOptions<TResponse>): UseQueryResult<TResponse, SyncReactError>;
|
|
29
|
+
declare function useDistribution<TResponse = Distribution>(distributionId: string | null | undefined, options?: QueryOptions<TResponse>): UseQueryResult<TResponse, SyncReactError>;
|
|
30
|
+
type DistributionTransactionInput = BuildDistributionTransactionRequest;
|
|
31
|
+
declare function useDistributionTransaction(options?: UseMutationOptions<DistributionTransactionPayload, SyncReactError, DistributionTransactionInput>): UseMutationResult<DistributionTransactionPayload, SyncReactError, DistributionTransactionInput>;
|
|
32
|
+
type DistributionCommitInput = CommitDistributionSignatureInput;
|
|
33
|
+
declare function useCommitDistribution(options?: UseMutationOptions<CommitDistributionResponse, SyncReactError, DistributionCommitInput>): UseMutationResult<CommitDistributionResponse, SyncReactError, DistributionCommitInput>;
|
|
34
|
+
interface DistributionFlowState {
|
|
35
|
+
latestPayload: DistributionTransactionPayload | null;
|
|
36
|
+
building: boolean;
|
|
37
|
+
committing: boolean;
|
|
38
|
+
error: SyncReactError | null;
|
|
39
|
+
}
|
|
40
|
+
type DistributionFlowSignerInput = Partial<Omit<CommitDistributionSignatureInput, "distributionId">> & {
|
|
41
|
+
[key: string]: unknown;
|
|
42
|
+
};
|
|
43
|
+
type DistributionFlowSigner = (payload: DistributionTransactionPayload) => Promise<DistributionFlowSignerInput> | DistributionFlowSignerInput;
|
|
44
|
+
interface DistributionFlowCommitResult {
|
|
45
|
+
payload: DistributionTransactionPayload;
|
|
46
|
+
commit: CommitDistributionResponse;
|
|
47
|
+
signerInput: DistributionFlowSignerInput;
|
|
48
|
+
}
|
|
49
|
+
interface DistributionFlowResult {
|
|
50
|
+
state: DistributionFlowState;
|
|
51
|
+
build: (input: DistributionTransactionInput) => Promise<DistributionTransactionPayload>;
|
|
52
|
+
commit: (signer: DistributionFlowSigner, input?: DistributionTransactionInput) => Promise<DistributionFlowCommitResult>;
|
|
53
|
+
claim: (signer: DistributionFlowSigner, input?: DistributionTransactionInput) => Promise<DistributionFlowCommitResult>;
|
|
54
|
+
reset: () => void;
|
|
55
|
+
}
|
|
56
|
+
declare function useDistributionFlow(): DistributionFlowResult;
|
|
57
|
+
declare function useClaimableDistributions<TResponse = ClaimableResponse>(options?: QueryOptions<TResponse>): UseQueryResult<TResponse, SyncReactError>;
|
|
58
|
+
declare function useClaimHistory<TResponse = ClaimHistoryResponse>(options?: QueryOptions<TResponse>): UseQueryResult<TResponse, SyncReactError>;
|
|
59
|
+
type ClaimTransactionInput = Partial<Omit<BuildClaimTransactionRequest, "distributionId" | "claimant">>;
|
|
60
|
+
declare function useClaimTransaction(distributionId: string | null | undefined, options?: UseMutationOptions<BuildClaimTransactionResponse, SyncReactError, ClaimTransactionInput>): UseMutationResult<BuildClaimTransactionResponse, SyncReactError, ClaimTransactionInput>;
|
|
61
|
+
type ClaimCommitInput = Omit<CommitClaimRequest, "distributionId">;
|
|
62
|
+
declare function useCommitClaim(distributionId: string | null | undefined, options?: UseMutationOptions<CommitClaimResponse, SyncReactError, ClaimCommitInput>): UseMutationResult<CommitClaimResponse, SyncReactError, ClaimCommitInput>;
|
|
63
|
+
interface ClaimFlowState {
|
|
64
|
+
latestPayload: BuildClaimTransactionResponse | null;
|
|
65
|
+
building: boolean;
|
|
66
|
+
claiming: boolean;
|
|
67
|
+
error: SyncReactError | null;
|
|
68
|
+
}
|
|
69
|
+
type ClaimFlowSigner = (payload: BuildClaimTransactionResponse) => Promise<ClaimCommitInput> | ClaimCommitInput;
|
|
70
|
+
interface ClaimFlowClaimResult {
|
|
71
|
+
payload: BuildClaimTransactionResponse;
|
|
72
|
+
commit: CommitClaimResponse;
|
|
73
|
+
signerInput: ClaimCommitInput;
|
|
74
|
+
}
|
|
75
|
+
interface ClaimFlowResult {
|
|
76
|
+
state: ClaimFlowState;
|
|
77
|
+
build: (input?: ClaimTransactionInput) => Promise<BuildClaimTransactionResponse>;
|
|
78
|
+
claim: (signer: ClaimFlowSigner, input?: ClaimTransactionInput) => Promise<ClaimFlowClaimResult>;
|
|
79
|
+
reset: () => void;
|
|
80
|
+
}
|
|
81
|
+
declare function useClaimFlow(distributionId: string | null | undefined): ClaimFlowResult;
|
|
82
|
+
interface RecipientComposerRow {
|
|
83
|
+
id: string;
|
|
84
|
+
address: string;
|
|
85
|
+
amount: string;
|
|
86
|
+
}
|
|
87
|
+
type RecipientRow = RecipientComposerRow;
|
|
88
|
+
interface RecipientComposerState {
|
|
89
|
+
rows: RecipientComposerRow[];
|
|
90
|
+
totals: {
|
|
91
|
+
count: number;
|
|
92
|
+
totalAmountUi: number;
|
|
93
|
+
normalized: Array<{
|
|
94
|
+
id: string;
|
|
95
|
+
address: string;
|
|
96
|
+
amountUi: number;
|
|
97
|
+
amountRaw: string;
|
|
98
|
+
}>;
|
|
99
|
+
};
|
|
100
|
+
}
|
|
101
|
+
interface RecipientComposerApi {
|
|
102
|
+
state: RecipientComposerState;
|
|
103
|
+
addRow: () => void;
|
|
104
|
+
removeRow: (id: string) => void;
|
|
105
|
+
updateRow: (id: string, patch: Partial<Omit<RecipientComposerRow, "id">>) => void;
|
|
106
|
+
replaceRows: (rows: Array<Pick<RecipientComposerRow, "address" | "amount">>) => void;
|
|
107
|
+
clearRows: () => void;
|
|
108
|
+
}
|
|
109
|
+
declare function useRecipientComposer(initial?: Array<Pick<RecipientComposerRow, "address" | "amount">>): RecipientComposerApi;
|
|
110
|
+
|
|
111
|
+
export { type ClaimCommitInput, type ClaimFlowClaimResult, type ClaimFlowResult, type ClaimFlowSigner, type ClaimFlowState, type ClaimTransactionInput, type DistributionCommitInput, type DistributionFlowCommitResult, type DistributionFlowResult, type DistributionFlowSigner, type DistributionFlowSignerInput, type DistributionFlowState, type DistributionTransactionInput, type DistributionsQueryParams, type RecipientComposerApi, type RecipientComposerRow, type RecipientComposerState, type RecipientRow, type SyncClient, SyncProvider, type SyncProviderProps, useClaimFlow, useClaimHistory, useClaimTransaction, useClaimableDistributions, useCommitClaim, useCommitDistribution, useDistribution, useDistributionFlow, useDistributionTransaction, useDistributions, useRecipientComposer, useSyncClient };
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
import * as react from 'react';
|
|
2
|
+
import { ReactNode } from 'react';
|
|
3
|
+
import { UseQueryOptions, UseQueryResult, UseMutationOptions, UseMutationResult } from '@tanstack/react-query';
|
|
4
|
+
import { F as Fetcher, g as ListDistributionsResponse, K as SyncReactError, a as Distribution, B as BuildDistributionTransactionRequest, k as DistributionTransactionPayload, q as CommitDistributionSignatureInput, p as CommitDistributionResponse, v as ClaimableResponse, x as ClaimHistoryResponse, r as BuildClaimTransactionRequest, s as BuildClaimTransactionResponse, t as CommitClaimRequest, u as CommitClaimResponse } from '../../api-BX1PjpZQ.js';
|
|
5
|
+
|
|
6
|
+
interface SyncContextValue {
|
|
7
|
+
basePath: string;
|
|
8
|
+
fetcher?: Fetcher;
|
|
9
|
+
}
|
|
10
|
+
interface SyncProviderProps {
|
|
11
|
+
basePath?: string;
|
|
12
|
+
fetcher?: Fetcher;
|
|
13
|
+
children: ReactNode;
|
|
14
|
+
}
|
|
15
|
+
declare function SyncProvider({ basePath, fetcher, children }: SyncProviderProps): react.FunctionComponentElement<react.ProviderProps<SyncContextValue>>;
|
|
16
|
+
interface SyncClient {
|
|
17
|
+
basePath: string;
|
|
18
|
+
request<T>(path: string, init?: RequestInit): Promise<T>;
|
|
19
|
+
get<T>(path: string, init?: RequestInit): Promise<T>;
|
|
20
|
+
post<T>(path: string, body?: unknown, init?: RequestInit): Promise<T>;
|
|
21
|
+
}
|
|
22
|
+
declare function useSyncClient(): SyncClient;
|
|
23
|
+
type QueryOptions<T> = Omit<UseQueryOptions<T, SyncReactError, T>, "queryKey" | "queryFn">;
|
|
24
|
+
interface DistributionsQueryParams {
|
|
25
|
+
role?: "claimant" | "creator";
|
|
26
|
+
status?: string | null;
|
|
27
|
+
}
|
|
28
|
+
declare function useDistributions<TResponse = ListDistributionsResponse>(paramsOrOptions?: DistributionsQueryParams | QueryOptions<TResponse>, optionsMaybe?: QueryOptions<TResponse>): UseQueryResult<TResponse, SyncReactError>;
|
|
29
|
+
declare function useDistribution<TResponse = Distribution>(distributionId: string | null | undefined, options?: QueryOptions<TResponse>): UseQueryResult<TResponse, SyncReactError>;
|
|
30
|
+
type DistributionTransactionInput = BuildDistributionTransactionRequest;
|
|
31
|
+
declare function useDistributionTransaction(options?: UseMutationOptions<DistributionTransactionPayload, SyncReactError, DistributionTransactionInput>): UseMutationResult<DistributionTransactionPayload, SyncReactError, DistributionTransactionInput>;
|
|
32
|
+
type DistributionCommitInput = CommitDistributionSignatureInput;
|
|
33
|
+
declare function useCommitDistribution(options?: UseMutationOptions<CommitDistributionResponse, SyncReactError, DistributionCommitInput>): UseMutationResult<CommitDistributionResponse, SyncReactError, DistributionCommitInput>;
|
|
34
|
+
interface DistributionFlowState {
|
|
35
|
+
latestPayload: DistributionTransactionPayload | null;
|
|
36
|
+
building: boolean;
|
|
37
|
+
committing: boolean;
|
|
38
|
+
error: SyncReactError | null;
|
|
39
|
+
}
|
|
40
|
+
type DistributionFlowSignerInput = Partial<Omit<CommitDistributionSignatureInput, "distributionId">> & {
|
|
41
|
+
[key: string]: unknown;
|
|
42
|
+
};
|
|
43
|
+
type DistributionFlowSigner = (payload: DistributionTransactionPayload) => Promise<DistributionFlowSignerInput> | DistributionFlowSignerInput;
|
|
44
|
+
interface DistributionFlowCommitResult {
|
|
45
|
+
payload: DistributionTransactionPayload;
|
|
46
|
+
commit: CommitDistributionResponse;
|
|
47
|
+
signerInput: DistributionFlowSignerInput;
|
|
48
|
+
}
|
|
49
|
+
interface DistributionFlowResult {
|
|
50
|
+
state: DistributionFlowState;
|
|
51
|
+
build: (input: DistributionTransactionInput) => Promise<DistributionTransactionPayload>;
|
|
52
|
+
commit: (signer: DistributionFlowSigner, input?: DistributionTransactionInput) => Promise<DistributionFlowCommitResult>;
|
|
53
|
+
claim: (signer: DistributionFlowSigner, input?: DistributionTransactionInput) => Promise<DistributionFlowCommitResult>;
|
|
54
|
+
reset: () => void;
|
|
55
|
+
}
|
|
56
|
+
declare function useDistributionFlow(): DistributionFlowResult;
|
|
57
|
+
declare function useClaimableDistributions<TResponse = ClaimableResponse>(options?: QueryOptions<TResponse>): UseQueryResult<TResponse, SyncReactError>;
|
|
58
|
+
declare function useClaimHistory<TResponse = ClaimHistoryResponse>(options?: QueryOptions<TResponse>): UseQueryResult<TResponse, SyncReactError>;
|
|
59
|
+
type ClaimTransactionInput = Partial<Omit<BuildClaimTransactionRequest, "distributionId" | "claimant">>;
|
|
60
|
+
declare function useClaimTransaction(distributionId: string | null | undefined, options?: UseMutationOptions<BuildClaimTransactionResponse, SyncReactError, ClaimTransactionInput>): UseMutationResult<BuildClaimTransactionResponse, SyncReactError, ClaimTransactionInput>;
|
|
61
|
+
type ClaimCommitInput = Omit<CommitClaimRequest, "distributionId">;
|
|
62
|
+
declare function useCommitClaim(distributionId: string | null | undefined, options?: UseMutationOptions<CommitClaimResponse, SyncReactError, ClaimCommitInput>): UseMutationResult<CommitClaimResponse, SyncReactError, ClaimCommitInput>;
|
|
63
|
+
interface ClaimFlowState {
|
|
64
|
+
latestPayload: BuildClaimTransactionResponse | null;
|
|
65
|
+
building: boolean;
|
|
66
|
+
claiming: boolean;
|
|
67
|
+
error: SyncReactError | null;
|
|
68
|
+
}
|
|
69
|
+
type ClaimFlowSigner = (payload: BuildClaimTransactionResponse) => Promise<ClaimCommitInput> | ClaimCommitInput;
|
|
70
|
+
interface ClaimFlowClaimResult {
|
|
71
|
+
payload: BuildClaimTransactionResponse;
|
|
72
|
+
commit: CommitClaimResponse;
|
|
73
|
+
signerInput: ClaimCommitInput;
|
|
74
|
+
}
|
|
75
|
+
interface ClaimFlowResult {
|
|
76
|
+
state: ClaimFlowState;
|
|
77
|
+
build: (input?: ClaimTransactionInput) => Promise<BuildClaimTransactionResponse>;
|
|
78
|
+
claim: (signer: ClaimFlowSigner, input?: ClaimTransactionInput) => Promise<ClaimFlowClaimResult>;
|
|
79
|
+
reset: () => void;
|
|
80
|
+
}
|
|
81
|
+
declare function useClaimFlow(distributionId: string | null | undefined): ClaimFlowResult;
|
|
82
|
+
interface RecipientComposerRow {
|
|
83
|
+
id: string;
|
|
84
|
+
address: string;
|
|
85
|
+
amount: string;
|
|
86
|
+
}
|
|
87
|
+
type RecipientRow = RecipientComposerRow;
|
|
88
|
+
interface RecipientComposerState {
|
|
89
|
+
rows: RecipientComposerRow[];
|
|
90
|
+
totals: {
|
|
91
|
+
count: number;
|
|
92
|
+
totalAmountUi: number;
|
|
93
|
+
normalized: Array<{
|
|
94
|
+
id: string;
|
|
95
|
+
address: string;
|
|
96
|
+
amountUi: number;
|
|
97
|
+
amountRaw: string;
|
|
98
|
+
}>;
|
|
99
|
+
};
|
|
100
|
+
}
|
|
101
|
+
interface RecipientComposerApi {
|
|
102
|
+
state: RecipientComposerState;
|
|
103
|
+
addRow: () => void;
|
|
104
|
+
removeRow: (id: string) => void;
|
|
105
|
+
updateRow: (id: string, patch: Partial<Omit<RecipientComposerRow, "id">>) => void;
|
|
106
|
+
replaceRows: (rows: Array<Pick<RecipientComposerRow, "address" | "amount">>) => void;
|
|
107
|
+
clearRows: () => void;
|
|
108
|
+
}
|
|
109
|
+
declare function useRecipientComposer(initial?: Array<Pick<RecipientComposerRow, "address" | "amount">>): RecipientComposerApi;
|
|
110
|
+
|
|
111
|
+
export { type ClaimCommitInput, type ClaimFlowClaimResult, type ClaimFlowResult, type ClaimFlowSigner, type ClaimFlowState, type ClaimTransactionInput, type DistributionCommitInput, type DistributionFlowCommitResult, type DistributionFlowResult, type DistributionFlowSigner, type DistributionFlowSignerInput, type DistributionFlowState, type DistributionTransactionInput, type DistributionsQueryParams, type RecipientComposerApi, type RecipientComposerRow, type RecipientComposerState, type RecipientRow, type SyncClient, SyncProvider, type SyncProviderProps, useClaimFlow, useClaimHistory, useClaimTransaction, useClaimableDistributions, useCommitClaim, useCommitDistribution, useDistribution, useDistributionFlow, useDistributionTransaction, useDistributions, useRecipientComposer, useSyncClient };
|