wagmi 3.1.3 → 3.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/esm/exports/tempo.js +9 -0
- package/dist/esm/exports/tempo.js.map +1 -0
- package/dist/esm/tempo/Hooks/amm.js +534 -0
- package/dist/esm/tempo/Hooks/amm.js.map +1 -0
- package/dist/esm/tempo/Hooks/dex.js +944 -0
- package/dist/esm/tempo/Hooks/dex.js.map +1 -0
- package/dist/esm/tempo/Hooks/faucet.js +76 -0
- package/dist/esm/tempo/Hooks/faucet.js.map +1 -0
- package/dist/esm/tempo/Hooks/fee.js +155 -0
- package/dist/esm/tempo/Hooks/fee.js.map +1 -0
- package/dist/esm/tempo/Hooks/index.js +11 -0
- package/dist/esm/tempo/Hooks/index.js.map +1 -0
- package/dist/esm/tempo/Hooks/nonce.js +165 -0
- package/dist/esm/tempo/Hooks/nonce.js.map +1 -0
- package/dist/esm/tempo/Hooks/policy.js +545 -0
- package/dist/esm/tempo/Hooks/policy.js.map +1 -0
- package/dist/esm/tempo/Hooks/reward.js +385 -0
- package/dist/esm/tempo/Hooks/reward.js.map +1 -0
- package/dist/esm/tempo/Hooks/token.js +1730 -0
- package/dist/esm/tempo/Hooks/token.js.map +1 -0
- package/dist/esm/tsconfig.build.tsbuildinfo +1 -1
- package/dist/esm/version.js +1 -1
- package/dist/types/exports/tempo.d.ts +4 -0
- package/dist/types/exports/tempo.d.ts.map +1 -0
- package/dist/types/tempo/Hooks/amm.d.ts +410 -0
- package/dist/types/tempo/Hooks/amm.d.ts.map +1 -0
- package/dist/types/tempo/Hooks/dex.d.ts +773 -0
- package/dist/types/tempo/Hooks/dex.d.ts.map +1 -0
- package/dist/types/tempo/Hooks/faucet.d.ts +70 -0
- package/dist/types/tempo/Hooks/faucet.d.ts.map +1 -0
- package/dist/types/tempo/Hooks/fee.d.ts +123 -0
- package/dist/types/tempo/Hooks/fee.d.ts.map +1 -0
- package/dist/types/tempo/Hooks/index.d.ts +10 -0
- package/dist/types/tempo/Hooks/index.d.ts.map +1 -0
- package/dist/types/tempo/Hooks/nonce.d.ts +115 -0
- package/dist/types/tempo/Hooks/nonce.d.ts.map +1 -0
- package/dist/types/tempo/Hooks/policy.d.ts +422 -0
- package/dist/types/tempo/Hooks/policy.d.ts.map +1 -0
- package/dist/types/tempo/Hooks/reward.d.ts +304 -0
- package/dist/types/tempo/Hooks/reward.d.ts.map +1 -0
- package/dist/types/tempo/Hooks/token.d.ts +1387 -0
- package/dist/types/tempo/Hooks/token.d.ts.map +1 -0
- package/dist/types/version.d.ts +1 -1
- package/package.json +12 -4
- package/src/exports/tempo.ts +17 -0
- package/src/tempo/Hooks/amm.ts +835 -0
- package/src/tempo/Hooks/dex.ts +1597 -0
- package/src/tempo/Hooks/faucet.ts +142 -0
- package/src/tempo/Hooks/fee.ts +264 -0
- package/src/tempo/Hooks/index.ts +10 -0
- package/src/tempo/Hooks/nonce.ts +248 -0
- package/src/tempo/Hooks/policy.ts +907 -0
- package/src/tempo/Hooks/reward.ts +668 -0
- package/src/tempo/Hooks/token.ts +2979 -0
- package/src/version.ts +1 -1
- package/tempo/package.json +5 -0
|
@@ -0,0 +1,304 @@
|
|
|
1
|
+
import type { UseMutationResult } from '@tanstack/react-query';
|
|
2
|
+
import type { Config, ResolvedRegister } from '@wagmi/core';
|
|
3
|
+
import type { ExactPartial, UnionCompute } from '@wagmi/core/internal';
|
|
4
|
+
import { Actions } from '@wagmi/core/tempo';
|
|
5
|
+
import type { ConfigParameter, QueryParameter } from '../../types/properties.js';
|
|
6
|
+
import { type UseMutationParameters, type UseQueryReturnType } from '../../utils/query.js';
|
|
7
|
+
/**
|
|
8
|
+
* Hook for claiming accumulated rewards.
|
|
9
|
+
*
|
|
10
|
+
* @example
|
|
11
|
+
* ```tsx
|
|
12
|
+
* import { Hooks } from 'wagmi/tempo'
|
|
13
|
+
*
|
|
14
|
+
* function App() {
|
|
15
|
+
* const { mutate: claim } = Hooks.reward.useClaim()
|
|
16
|
+
*
|
|
17
|
+
* return (
|
|
18
|
+
* <button onClick={() => claim({
|
|
19
|
+
* token: '0x20c0000000000000000000000000000000000001'
|
|
20
|
+
* })}>
|
|
21
|
+
* Claim Rewards
|
|
22
|
+
* </button>
|
|
23
|
+
* )
|
|
24
|
+
* }
|
|
25
|
+
* ```
|
|
26
|
+
*
|
|
27
|
+
* @param parameters - Parameters.
|
|
28
|
+
* @returns Mutation result.
|
|
29
|
+
*/
|
|
30
|
+
export declare function useClaim<config extends Config = ResolvedRegister['config'], context = unknown>(parameters?: useClaim.Parameters<config, context>): useClaim.ReturnType<config, context>;
|
|
31
|
+
export declare namespace useClaim {
|
|
32
|
+
type Parameters<config extends Config = Config, context = unknown> = ConfigParameter<config> & {
|
|
33
|
+
mutation?: UseMutationParameters<Actions.reward.claim.ReturnValue, Actions.reward.claim.ErrorType, Actions.reward.claim.Parameters<config>, context> | undefined;
|
|
34
|
+
};
|
|
35
|
+
type ReturnType<config extends Config = Config, context = unknown> = UseMutationResult<Actions.reward.claim.ReturnValue, Actions.reward.claim.ErrorType, Actions.reward.claim.Parameters<config>, context>;
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* Hook for claiming accumulated rewards and waiting for confirmation.
|
|
39
|
+
*
|
|
40
|
+
* @example
|
|
41
|
+
* ```tsx
|
|
42
|
+
* import { Hooks } from 'wagmi/tempo'
|
|
43
|
+
*
|
|
44
|
+
* function App() {
|
|
45
|
+
* const { mutate: claimSync } = Hooks.reward.useClaimSync()
|
|
46
|
+
*
|
|
47
|
+
* return (
|
|
48
|
+
* <button onClick={() => claimSync({
|
|
49
|
+
* token: '0x20c0000000000000000000000000000000000001'
|
|
50
|
+
* })}>
|
|
51
|
+
* Claim Rewards
|
|
52
|
+
* </button>
|
|
53
|
+
* )
|
|
54
|
+
* }
|
|
55
|
+
* ```
|
|
56
|
+
*
|
|
57
|
+
* @param parameters - Parameters.
|
|
58
|
+
* @returns Mutation result.
|
|
59
|
+
*/
|
|
60
|
+
export declare function useClaimSync<config extends Config = ResolvedRegister['config'], context = unknown>(parameters?: useClaimSync.Parameters<config, context>): useClaimSync.ReturnType<config, context>;
|
|
61
|
+
export declare namespace useClaimSync {
|
|
62
|
+
type Parameters<config extends Config = Config, context = unknown> = ConfigParameter<config> & {
|
|
63
|
+
mutation?: UseMutationParameters<Actions.reward.claimSync.ReturnValue, Actions.reward.claimSync.ErrorType, Actions.reward.claimSync.Parameters<config>, context> | undefined;
|
|
64
|
+
};
|
|
65
|
+
type ReturnType<config extends Config = Config, context = unknown> = UseMutationResult<Actions.reward.claimSync.ReturnValue, Actions.reward.claimSync.ErrorType, Actions.reward.claimSync.Parameters<config>, context>;
|
|
66
|
+
}
|
|
67
|
+
/**
|
|
68
|
+
* Hook for getting the total reward per second rate.
|
|
69
|
+
*
|
|
70
|
+
* @example
|
|
71
|
+
* ```tsx
|
|
72
|
+
* import { Hooks } from 'wagmi/tempo'
|
|
73
|
+
*
|
|
74
|
+
* function App() {
|
|
75
|
+
* const { data, isLoading } = Hooks.reward.useGetTotalPerSecond({
|
|
76
|
+
* token: '0x20c0000000000000000000000000000000000001',
|
|
77
|
+
* })
|
|
78
|
+
*
|
|
79
|
+
* if (isLoading) return <div>Loading...</div>
|
|
80
|
+
* return <div>Rate: {data?.toString()}</div>
|
|
81
|
+
* }
|
|
82
|
+
* ```
|
|
83
|
+
*
|
|
84
|
+
* @param parameters - Parameters.
|
|
85
|
+
* @returns Query result with total reward per second.
|
|
86
|
+
*/
|
|
87
|
+
export declare function useGetTotalPerSecond<config extends Config = ResolvedRegister['config'], selectData = Actions.reward.getTotalPerSecond.ReturnValue>(parameters?: useGetTotalPerSecond.Parameters<config, selectData>): useGetTotalPerSecond.ReturnValue<selectData>;
|
|
88
|
+
export declare namespace useGetTotalPerSecond {
|
|
89
|
+
type Parameters<config extends Config = ResolvedRegister['config'], selectData = Actions.reward.getTotalPerSecond.ReturnValue> = ConfigParameter<config> & QueryParameter<Actions.reward.getTotalPerSecond.ReturnValue, Actions.reward.getTotalPerSecond.ErrorType, selectData, Actions.reward.getTotalPerSecond.QueryKey<config>> & ExactPartial<Omit<Actions.reward.getTotalPerSecond.queryOptions.Parameters<config, selectData>, 'query'>>;
|
|
90
|
+
type ReturnValue<selectData = Actions.reward.getTotalPerSecond.ReturnValue> = UseQueryReturnType<selectData, Error>;
|
|
91
|
+
}
|
|
92
|
+
/**
|
|
93
|
+
* Hook for getting the reward information for a specific account.
|
|
94
|
+
*
|
|
95
|
+
* @example
|
|
96
|
+
* ```tsx
|
|
97
|
+
* import { Hooks } from 'wagmi/tempo'
|
|
98
|
+
*
|
|
99
|
+
* function App() {
|
|
100
|
+
* const { data, isLoading } = Hooks.reward.useUserRewardInfo({
|
|
101
|
+
* token: '0x20c0000000000000000000000000000000000001',
|
|
102
|
+
* account: '0xa5cc3c03994DB5b0d9A5eEdD10CabaB0813678AC',
|
|
103
|
+
* })
|
|
104
|
+
*
|
|
105
|
+
* if (isLoading) return <div>Loading...</div>
|
|
106
|
+
* return (
|
|
107
|
+
* <div>
|
|
108
|
+
* <div>Recipient: {data?.rewardRecipient}</div>
|
|
109
|
+
* <div>Reward per token: {data?.rewardPerToken.toString()}</div>
|
|
110
|
+
* <div>Reward balance: {data?.rewardBalance.toString()}</div>
|
|
111
|
+
* </div>
|
|
112
|
+
* )
|
|
113
|
+
* }
|
|
114
|
+
* ```
|
|
115
|
+
*
|
|
116
|
+
* @param parameters - Parameters.
|
|
117
|
+
* @returns Query result with reward information (recipient, rewardPerToken, rewardBalance).
|
|
118
|
+
*/
|
|
119
|
+
export declare function useUserRewardInfo<config extends Config = ResolvedRegister['config'], selectData = Actions.reward.getUserRewardInfo.ReturnValue>(parameters?: useUserRewardInfo.Parameters<config, selectData>): useUserRewardInfo.ReturnValue<selectData>;
|
|
120
|
+
export declare namespace useUserRewardInfo {
|
|
121
|
+
type Parameters<config extends Config = ResolvedRegister['config'], selectData = Actions.reward.getUserRewardInfo.ReturnValue> = ConfigParameter<config> & QueryParameter<Actions.reward.getUserRewardInfo.ReturnValue, Actions.reward.getUserRewardInfo.ErrorType, selectData, Actions.reward.getUserRewardInfo.QueryKey<config>> & ExactPartial<Omit<Actions.reward.getUserRewardInfo.queryOptions.Parameters<config, selectData>, 'query'>>;
|
|
122
|
+
type ReturnValue<selectData = Actions.reward.getUserRewardInfo.ReturnValue> = UseQueryReturnType<selectData, Error>;
|
|
123
|
+
}
|
|
124
|
+
/**
|
|
125
|
+
* Hook for setting the reward recipient for a token holder.
|
|
126
|
+
*
|
|
127
|
+
* @example
|
|
128
|
+
* ```tsx
|
|
129
|
+
* import { Hooks } from 'wagmi/tempo'
|
|
130
|
+
*
|
|
131
|
+
* function App() {
|
|
132
|
+
* const { mutate: setRecipient } = Hooks.reward.useSetRecipient()
|
|
133
|
+
*
|
|
134
|
+
* return (
|
|
135
|
+
* <button onClick={() => setRecipient({
|
|
136
|
+
* recipient: '0xa5cc3c03994DB5b0d9A5eEdD10CabaB0813678AC',
|
|
137
|
+
* token: '0x20c0000000000000000000000000000000000001',
|
|
138
|
+
* })}>
|
|
139
|
+
* Set Recipient
|
|
140
|
+
* </button>
|
|
141
|
+
* )
|
|
142
|
+
* }
|
|
143
|
+
* ```
|
|
144
|
+
*
|
|
145
|
+
* @param parameters - Parameters.
|
|
146
|
+
* @returns Mutation result.
|
|
147
|
+
*/
|
|
148
|
+
export declare function useSetRecipient<config extends Config = ResolvedRegister['config'], context = unknown>(parameters?: useSetRecipient.Parameters<config, context>): useSetRecipient.ReturnType<config, context>;
|
|
149
|
+
export declare namespace useSetRecipient {
|
|
150
|
+
type Parameters<config extends Config = Config, context = unknown> = ConfigParameter<config> & {
|
|
151
|
+
mutation?: UseMutationParameters<Actions.reward.setRecipient.ReturnValue, Actions.reward.setRecipient.ErrorType, Actions.reward.setRecipient.Parameters<config>, context> | undefined;
|
|
152
|
+
};
|
|
153
|
+
type ReturnType<config extends Config = Config, context = unknown> = UseMutationResult<Actions.reward.setRecipient.ReturnValue, Actions.reward.setRecipient.ErrorType, Actions.reward.setRecipient.Parameters<config>, context>;
|
|
154
|
+
}
|
|
155
|
+
/**
|
|
156
|
+
* Hook for setting the reward recipient and waiting for confirmation.
|
|
157
|
+
*
|
|
158
|
+
* @example
|
|
159
|
+
* ```tsx
|
|
160
|
+
* import { Hooks } from 'wagmi/tempo'
|
|
161
|
+
*
|
|
162
|
+
* function App() {
|
|
163
|
+
* const { mutate: setRecipientSync } = Hooks.reward.useSetRecipientSync()
|
|
164
|
+
*
|
|
165
|
+
* return (
|
|
166
|
+
* <button onClick={() => setRecipientSync({
|
|
167
|
+
* recipient: '0xa5cc3c03994DB5b0d9A5eEdD10CabaB0813678AC',
|
|
168
|
+
* token: '0x20c0000000000000000000000000000000000001',
|
|
169
|
+
* })}>
|
|
170
|
+
* Set Recipient
|
|
171
|
+
* </button>
|
|
172
|
+
* )
|
|
173
|
+
* }
|
|
174
|
+
* ```
|
|
175
|
+
*
|
|
176
|
+
* @param parameters - Parameters.
|
|
177
|
+
* @returns Mutation result.
|
|
178
|
+
*/
|
|
179
|
+
export declare function useSetRecipientSync<config extends Config = ResolvedRegister['config'], context = unknown>(parameters?: useSetRecipientSync.Parameters<config, context>): useSetRecipientSync.ReturnType<config, context>;
|
|
180
|
+
export declare namespace useSetRecipientSync {
|
|
181
|
+
type Parameters<config extends Config = Config, context = unknown> = ConfigParameter<config> & {
|
|
182
|
+
mutation?: UseMutationParameters<Actions.reward.setRecipientSync.ReturnValue, Actions.reward.setRecipientSync.ErrorType, Actions.reward.setRecipientSync.Parameters<config>, context> | undefined;
|
|
183
|
+
};
|
|
184
|
+
type ReturnType<config extends Config = Config, context = unknown> = UseMutationResult<Actions.reward.setRecipientSync.ReturnValue, Actions.reward.setRecipientSync.ErrorType, Actions.reward.setRecipientSync.Parameters<config>, context>;
|
|
185
|
+
}
|
|
186
|
+
/**
|
|
187
|
+
* Hook for starting a new reward stream.
|
|
188
|
+
*
|
|
189
|
+
* @example
|
|
190
|
+
* ```tsx
|
|
191
|
+
* import { Hooks } from 'wagmi/tempo'
|
|
192
|
+
*
|
|
193
|
+
* function App() {
|
|
194
|
+
* const { mutate: start } = Hooks.reward.useStart()
|
|
195
|
+
*
|
|
196
|
+
* return (
|
|
197
|
+
* <button onClick={() => start({
|
|
198
|
+
* amount: 100000000000000000000n,
|
|
199
|
+
* seconds: 86400,
|
|
200
|
+
* token: '0x20c0000000000000000000000000000000000001',
|
|
201
|
+
* })}>
|
|
202
|
+
* Start Reward
|
|
203
|
+
* </button>
|
|
204
|
+
* )
|
|
205
|
+
* }
|
|
206
|
+
* ```
|
|
207
|
+
*
|
|
208
|
+
* @param parameters - Parameters.
|
|
209
|
+
* @returns Mutation result.
|
|
210
|
+
*/
|
|
211
|
+
export declare function useStart<config extends Config = ResolvedRegister['config'], context = unknown>(parameters?: useStart.Parameters<config, context>): useStart.ReturnType<config, context>;
|
|
212
|
+
export declare namespace useStart {
|
|
213
|
+
type Parameters<config extends Config = Config, context = unknown> = ConfigParameter<config> & {
|
|
214
|
+
mutation?: UseMutationParameters<Actions.reward.start.ReturnValue, Actions.reward.start.ErrorType, Actions.reward.start.Parameters<config>, context> | undefined;
|
|
215
|
+
};
|
|
216
|
+
type ReturnType<config extends Config = Config, context = unknown> = UseMutationResult<Actions.reward.start.ReturnValue, Actions.reward.start.ErrorType, Actions.reward.start.Parameters<config>, context>;
|
|
217
|
+
}
|
|
218
|
+
/**
|
|
219
|
+
* Hook for starting a new reward stream and waiting for confirmation.
|
|
220
|
+
*
|
|
221
|
+
* @example
|
|
222
|
+
* ```tsx
|
|
223
|
+
* import { Hooks } from 'wagmi/tempo'
|
|
224
|
+
*
|
|
225
|
+
* function App() {
|
|
226
|
+
* const { mutate: startSync } = Hooks.reward.useStartSync()
|
|
227
|
+
*
|
|
228
|
+
* return (
|
|
229
|
+
* <button onClick={() => startSync({
|
|
230
|
+
* amount: 100000000000000000000n,
|
|
231
|
+
* seconds: 86400,
|
|
232
|
+
* token: '0x20c0000000000000000000000000000000000001',
|
|
233
|
+
* })}>
|
|
234
|
+
* Start Reward
|
|
235
|
+
* </button>
|
|
236
|
+
* )
|
|
237
|
+
* }
|
|
238
|
+
* ```
|
|
239
|
+
*
|
|
240
|
+
* @param parameters - Parameters.
|
|
241
|
+
* @returns Mutation result.
|
|
242
|
+
*/
|
|
243
|
+
export declare function useStartSync<config extends Config = ResolvedRegister['config'], context = unknown>(parameters?: useStartSync.Parameters<config, context>): useStartSync.ReturnType<config, context>;
|
|
244
|
+
export declare namespace useStartSync {
|
|
245
|
+
type Parameters<config extends Config = Config, context = unknown> = ConfigParameter<config> & {
|
|
246
|
+
mutation?: UseMutationParameters<Actions.reward.startSync.ReturnValue, Actions.reward.startSync.ErrorType, Actions.reward.startSync.Parameters<config>, context> | undefined;
|
|
247
|
+
};
|
|
248
|
+
type ReturnType<config extends Config = Config, context = unknown> = UseMutationResult<Actions.reward.startSync.ReturnValue, Actions.reward.startSync.ErrorType, Actions.reward.startSync.Parameters<config>, context>;
|
|
249
|
+
}
|
|
250
|
+
/**
|
|
251
|
+
* Hook for watching reward scheduled events.
|
|
252
|
+
*
|
|
253
|
+
* @example
|
|
254
|
+
* ```tsx
|
|
255
|
+
* import { Hooks } from 'wagmi/tempo'
|
|
256
|
+
*
|
|
257
|
+
* function App() {
|
|
258
|
+
* Hooks.reward.useWatchRewardScheduled({
|
|
259
|
+
* token: '0x20c0000000000000000000000000000000000001',
|
|
260
|
+
* onRewardScheduled(args) {
|
|
261
|
+
* console.log('Reward scheduled:', args)
|
|
262
|
+
* },
|
|
263
|
+
* })
|
|
264
|
+
*
|
|
265
|
+
* return <div>Watching for reward scheduled events...</div>
|
|
266
|
+
* }
|
|
267
|
+
* ```
|
|
268
|
+
*
|
|
269
|
+
* @param parameters - Parameters.
|
|
270
|
+
*/
|
|
271
|
+
export declare function useWatchRewardScheduled<config extends Config = ResolvedRegister['config']>(parameters?: useWatchRewardScheduled.Parameters<config>): void;
|
|
272
|
+
export declare namespace useWatchRewardScheduled {
|
|
273
|
+
type Parameters<config extends Config = Config> = UnionCompute<ExactPartial<Actions.reward.watchRewardScheduled.Parameters<config>> & ConfigParameter<config> & {
|
|
274
|
+
enabled?: boolean | undefined;
|
|
275
|
+
}>;
|
|
276
|
+
}
|
|
277
|
+
/**
|
|
278
|
+
* Hook for watching reward recipient set events.
|
|
279
|
+
*
|
|
280
|
+
* @example
|
|
281
|
+
* ```tsx
|
|
282
|
+
* import { Hooks } from 'wagmi/tempo'
|
|
283
|
+
*
|
|
284
|
+
* function App() {
|
|
285
|
+
* Hooks.reward.useWatchRewardRecipientSet({
|
|
286
|
+
* token: '0x20c0000000000000000000000000000000000001',
|
|
287
|
+
* onRewardRecipientSet(args) {
|
|
288
|
+
* console.log('Reward recipient set:', args)
|
|
289
|
+
* },
|
|
290
|
+
* })
|
|
291
|
+
*
|
|
292
|
+
* return <div>Watching for reward recipient set events...</div>
|
|
293
|
+
* }
|
|
294
|
+
* ```
|
|
295
|
+
*
|
|
296
|
+
* @param parameters - Parameters.
|
|
297
|
+
*/
|
|
298
|
+
export declare function useWatchRewardRecipientSet<config extends Config = ResolvedRegister['config']>(parameters?: useWatchRewardRecipientSet.Parameters<config>): void;
|
|
299
|
+
export declare namespace useWatchRewardRecipientSet {
|
|
300
|
+
type Parameters<config extends Config = Config> = UnionCompute<ExactPartial<Actions.reward.watchRewardRecipientSet.Parameters<config>> & ConfigParameter<config> & {
|
|
301
|
+
enabled?: boolean | undefined;
|
|
302
|
+
}>;
|
|
303
|
+
}
|
|
304
|
+
//# sourceMappingURL=reward.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"reward.d.ts","sourceRoot":"","sources":["../../../../src/tempo/Hooks/reward.ts"],"names":[],"mappings":"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"}
|