player-map 2.0.20 → 2.0.22
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/GraphComponent.d.ts +15 -0
- package/dist/PlayerCreationProgress.d.ts +35 -0
- package/dist/PlayerMap.d.ts +5 -0
- package/dist/PlayerMapGraph.d.ts +25 -0
- package/dist/PlayerMapHome.d.ts +15 -0
- package/dist/abi.d.ts +2630 -0
- package/dist/api/fetchActivityHistory.d.ts +3 -0
- package/dist/api/fetchAtomDetails.d.ts +28 -0
- package/dist/api/fetchClaimsByAccount.d.ts +3 -0
- package/dist/api/fetchClaimsBySubject.d.ts +3 -0
- package/dist/api/fetchFollowsAndFollowers.d.ts +6 -0
- package/dist/api/fetchPlayerAliases.d.ts +47 -0
- package/dist/api/fetchPositions.d.ts +3 -0
- package/dist/api/fetchTriplesByTermIds.d.ts +32 -0
- package/dist/api/fetchTriplesForAgent.d.ts +3 -0
- package/dist/api/sidebarQueries.d.ts +9 -0
- package/dist/components/RightPanel.d.ts +25 -0
- package/dist/components/SafeImage.d.ts +20 -0
- package/dist/components/TopNavBar.d.ts +31 -0
- package/dist/components/graph/ActivityCard.d.ts +7 -0
- package/dist/components/graph/ActivitySection.d.ts +7 -0
- package/dist/components/graph/AtomBubble.d.ts +9 -0
- package/dist/components/graph/AtomClaimsSection.d.ts +9 -0
- package/dist/components/graph/AtomDetailsSection.d.ts +14 -0
- package/dist/components/graph/ClaimDepositControls.d.ts +11 -0
- package/dist/components/graph/ClaimsModal.d.ts +12 -0
- package/dist/components/graph/ClaimsSection.d.ts +11 -0
- package/dist/components/graph/Modal.d.ts +10 -0
- package/dist/components/graph/Pagination.d.ts +11 -0
- package/dist/components/graph/PaginationInfo.d.ts +9 -0
- package/dist/components/graph/PositionBubble.d.ts +10 -0
- package/dist/components/graph/PositionCard.d.ts +12 -0
- package/dist/components/graph/PositionsSection.d.ts +10 -0
- package/dist/components/graph/RedeemAllButton.d.ts +9 -0
- package/dist/components/graph/RedeemConfig.d.ts +13 -0
- package/dist/components/graph/RedeemSelector.d.ts +9 -0
- package/dist/components/graph/SidebarDrawer.d.ts +9 -0
- package/dist/components/graph/TripleBubble.d.ts +12 -0
- package/dist/components/graph/TruncatedText.d.ts +10 -0
- package/dist/components/graph/index.d.ts +18 -0
- package/dist/components/modals/ConnectWalletModal.d.ts +8 -0
- package/dist/components/modals/CreatePlayerModal.d.ts +9 -0
- package/dist/components/modals/index.d.ts +2 -0
- package/dist/components/vote/ClaimItem.d.ts +13 -0
- package/dist/components/vote/ClaimList.d.ts +18 -0
- package/dist/components/vote/ClaimVoting.d.ts +16 -0
- package/dist/components/vote/SpeakUpHeader.d.ts +8 -0
- package/dist/components/vote/SubmitButton.d.ts +11 -0
- package/dist/components/vote/TransactionInfo.d.ts +12 -0
- package/dist/components/vote/TransactionStatus.d.ts +11 -0
- package/dist/components/vote/VotingHeader.d.ts +7 -0
- package/dist/components/vote/VotingModal.d.ts +15 -0
- package/dist/components/vote/voteUtils.d.ts +49 -0
- package/dist/config/atomFiltering.d.ts +17 -0
- package/dist/config/graphql.d.ts +1 -0
- package/dist/config/verifiedAtoms.d.ts +24 -0
- package/dist/contexts/GameContext.d.ts +35 -0
- package/dist/contexts/QueryClientContext.d.ts +9 -0
- package/dist/hooks/useAtomCreation.d.ts +25 -0
- package/dist/hooks/useAtomData.d.ts +11 -0
- package/dist/hooks/useAtomLabel.d.ts +7 -0
- package/dist/hooks/useBatchCreateTriple.d.ts +16 -0
- package/dist/hooks/useCheckSpecificTriplePosition.d.ts +16 -0
- package/dist/hooks/useClaimsBySubject.d.ts +7 -0
- package/dist/hooks/useCreateAlias.d.ts +17 -0
- package/dist/hooks/useDepositTriple.d.ts +18 -0
- package/dist/hooks/useDisplayTriplesWithPosition.d.ts +5 -0
- package/dist/hooks/useFetchTripleDetails.d.ts +36 -0
- package/dist/hooks/useGameStats.d.ts +14 -0
- package/dist/hooks/usePlayerAliases.d.ts +15 -0
- package/dist/hooks/usePositions.d.ts +7 -0
- package/dist/hooks/useRedeemAmounts.d.ts +7 -0
- package/dist/hooks/useRedeemBatch.d.ts +19 -0
- package/dist/hooks/useRedeemExecution.d.ts +15 -0
- package/dist/hooks/useRegisterPlayer.d.ts +40 -0
- package/dist/hooks/useSelectedAtomClaims.d.ts +9 -0
- package/dist/hooks/useSelectedAtomData.d.ts +10 -0
- package/dist/hooks/useSidebarData.d.ts +16 -0
- package/dist/hooks/useSubmitVotes.d.ts +22 -0
- package/dist/hooks/useTripleByCreator.d.ts +54 -0
- package/dist/hooks/useVoteItemsManagement.d.ts +22 -0
- package/dist/index.d.ts +41 -0
- package/dist/index.es.js +14801 -14663
- package/dist/index.umd.js +376 -376
- package/dist/pages/DirectPositionCheck.d.ts +4 -0
- package/dist/providers/QueryProvider.d.ts +7 -0
- package/dist/shared/components/NetworkSwitchMessage.d.ts +8 -0
- package/dist/shared/hooks/useNetworkCheck.d.ts +13 -0
- package/dist/types/PlayerMapConfig.d.ts +18 -0
- package/dist/types/alias.d.ts +39 -0
- package/dist/types/vote.d.ts +28 -0
- package/dist/utils/apiCache.d.ts +40 -0
- package/dist/utils/config.d.ts +7 -0
- package/dist/utils/constants.d.ts +15 -0
- package/dist/utils/conversionUtils.d.ts +13 -0
- package/dist/utils/debugPosition.d.ts +11 -0
- package/dist/utils/globalConstants.d.ts +2 -0
- package/dist/utils/ipfsUtils.d.ts +30 -0
- package/dist/utils/pinata.d.ts +3 -0
- package/dist/utils/voteUtils.d.ts +32 -0
- package/dist/utils/walletUtils.d.ts +24 -0
- package/package.json +3 -3
package/dist/abi.d.ts
ADDED
|
@@ -0,0 +1,2630 @@
|
|
|
1
|
+
export declare const ATOM_CONTRACT_ADDRESS: string;
|
|
2
|
+
export declare const ATOM_CONTRACT_CHAIN_ID: number;
|
|
3
|
+
export declare const VALUE_PER_ATOM: bigint;
|
|
4
|
+
export declare const VALUE_PER_TRIPLE: bigint;
|
|
5
|
+
export declare const atomABI: readonly [{
|
|
6
|
+
readonly type: "function";
|
|
7
|
+
readonly name: "BURN_ADDRESS";
|
|
8
|
+
readonly inputs: readonly [];
|
|
9
|
+
readonly outputs: readonly [{
|
|
10
|
+
readonly name: "";
|
|
11
|
+
readonly type: "address";
|
|
12
|
+
readonly internalType: "address";
|
|
13
|
+
}];
|
|
14
|
+
readonly stateMutability: "view";
|
|
15
|
+
}, {
|
|
16
|
+
readonly type: "function";
|
|
17
|
+
readonly name: "CONTROLLER_ROLE";
|
|
18
|
+
readonly inputs: readonly [];
|
|
19
|
+
readonly outputs: readonly [{
|
|
20
|
+
readonly name: "";
|
|
21
|
+
readonly type: "bytes32";
|
|
22
|
+
readonly internalType: "bytes32";
|
|
23
|
+
}];
|
|
24
|
+
readonly stateMutability: "view";
|
|
25
|
+
}, {
|
|
26
|
+
readonly type: "function";
|
|
27
|
+
readonly name: "COUNTER_SALT";
|
|
28
|
+
readonly inputs: readonly [];
|
|
29
|
+
readonly outputs: readonly [{
|
|
30
|
+
readonly name: "";
|
|
31
|
+
readonly type: "bytes32";
|
|
32
|
+
readonly internalType: "bytes32";
|
|
33
|
+
}];
|
|
34
|
+
readonly stateMutability: "view";
|
|
35
|
+
}, {
|
|
36
|
+
readonly type: "function";
|
|
37
|
+
readonly name: "DEFAULT_ADMIN_ROLE";
|
|
38
|
+
readonly inputs: readonly [];
|
|
39
|
+
readonly outputs: readonly [{
|
|
40
|
+
readonly name: "";
|
|
41
|
+
readonly type: "bytes32";
|
|
42
|
+
readonly internalType: "bytes32";
|
|
43
|
+
}];
|
|
44
|
+
readonly stateMutability: "view";
|
|
45
|
+
}, {
|
|
46
|
+
readonly type: "function";
|
|
47
|
+
readonly name: "MAX_BATCH_SIZE";
|
|
48
|
+
readonly inputs: readonly [];
|
|
49
|
+
readonly outputs: readonly [{
|
|
50
|
+
readonly name: "";
|
|
51
|
+
readonly type: "uint256";
|
|
52
|
+
readonly internalType: "uint256";
|
|
53
|
+
}];
|
|
54
|
+
readonly stateMutability: "view";
|
|
55
|
+
}, {
|
|
56
|
+
readonly type: "function";
|
|
57
|
+
readonly name: "MIGRATOR_ROLE";
|
|
58
|
+
readonly inputs: readonly [];
|
|
59
|
+
readonly outputs: readonly [{
|
|
60
|
+
readonly name: "";
|
|
61
|
+
readonly type: "bytes32";
|
|
62
|
+
readonly internalType: "bytes32";
|
|
63
|
+
}];
|
|
64
|
+
readonly stateMutability: "view";
|
|
65
|
+
}, {
|
|
66
|
+
readonly type: "function";
|
|
67
|
+
readonly name: "ONE_SHARE";
|
|
68
|
+
readonly inputs: readonly [];
|
|
69
|
+
readonly outputs: readonly [{
|
|
70
|
+
readonly name: "";
|
|
71
|
+
readonly type: "uint256";
|
|
72
|
+
readonly internalType: "uint256";
|
|
73
|
+
}];
|
|
74
|
+
readonly stateMutability: "view";
|
|
75
|
+
}, {
|
|
76
|
+
readonly type: "function";
|
|
77
|
+
readonly name: "_maxRedeem";
|
|
78
|
+
readonly inputs: readonly [{
|
|
79
|
+
readonly name: "sender";
|
|
80
|
+
readonly type: "address";
|
|
81
|
+
readonly internalType: "address";
|
|
82
|
+
}, {
|
|
83
|
+
readonly name: "termId";
|
|
84
|
+
readonly type: "bytes32";
|
|
85
|
+
readonly internalType: "bytes32";
|
|
86
|
+
}, {
|
|
87
|
+
readonly name: "curveId";
|
|
88
|
+
readonly type: "uint256";
|
|
89
|
+
readonly internalType: "uint256";
|
|
90
|
+
}];
|
|
91
|
+
readonly outputs: readonly [{
|
|
92
|
+
readonly name: "";
|
|
93
|
+
readonly type: "uint256";
|
|
94
|
+
readonly internalType: "uint256";
|
|
95
|
+
}];
|
|
96
|
+
readonly stateMutability: "view";
|
|
97
|
+
}, {
|
|
98
|
+
readonly type: "function";
|
|
99
|
+
readonly name: "accumulatedAtomWalletDepositFees";
|
|
100
|
+
readonly inputs: readonly [{
|
|
101
|
+
readonly name: "atomWallet";
|
|
102
|
+
readonly type: "address";
|
|
103
|
+
readonly internalType: "address";
|
|
104
|
+
}];
|
|
105
|
+
readonly outputs: readonly [{
|
|
106
|
+
readonly name: "accumulatedFees";
|
|
107
|
+
readonly type: "uint256";
|
|
108
|
+
readonly internalType: "uint256";
|
|
109
|
+
}];
|
|
110
|
+
readonly stateMutability: "view";
|
|
111
|
+
}, {
|
|
112
|
+
readonly type: "function";
|
|
113
|
+
readonly name: "accumulatedProtocolFees";
|
|
114
|
+
readonly inputs: readonly [{
|
|
115
|
+
readonly name: "epoch";
|
|
116
|
+
readonly type: "uint256";
|
|
117
|
+
readonly internalType: "uint256";
|
|
118
|
+
}];
|
|
119
|
+
readonly outputs: readonly [{
|
|
120
|
+
readonly name: "accumulatedFees";
|
|
121
|
+
readonly type: "uint256";
|
|
122
|
+
readonly internalType: "uint256";
|
|
123
|
+
}];
|
|
124
|
+
readonly stateMutability: "view";
|
|
125
|
+
}, {
|
|
126
|
+
readonly type: "function";
|
|
127
|
+
readonly name: "approve";
|
|
128
|
+
readonly inputs: readonly [{
|
|
129
|
+
readonly name: "sender";
|
|
130
|
+
readonly type: "address";
|
|
131
|
+
readonly internalType: "address";
|
|
132
|
+
}, {
|
|
133
|
+
readonly name: "approvalType";
|
|
134
|
+
readonly type: "uint8";
|
|
135
|
+
readonly internalType: "enum IMultiVault.ApprovalTypes";
|
|
136
|
+
}];
|
|
137
|
+
readonly outputs: readonly [];
|
|
138
|
+
readonly stateMutability: "nonpayable";
|
|
139
|
+
}, {
|
|
140
|
+
readonly type: "function";
|
|
141
|
+
readonly name: "atom";
|
|
142
|
+
readonly inputs: readonly [{
|
|
143
|
+
readonly name: "atomId";
|
|
144
|
+
readonly type: "bytes32";
|
|
145
|
+
readonly internalType: "bytes32";
|
|
146
|
+
}];
|
|
147
|
+
readonly outputs: readonly [{
|
|
148
|
+
readonly name: "data";
|
|
149
|
+
readonly type: "bytes";
|
|
150
|
+
readonly internalType: "bytes";
|
|
151
|
+
}];
|
|
152
|
+
readonly stateMutability: "view";
|
|
153
|
+
}, {
|
|
154
|
+
readonly type: "function";
|
|
155
|
+
readonly name: "atomConfig";
|
|
156
|
+
readonly inputs: readonly [];
|
|
157
|
+
readonly outputs: readonly [{
|
|
158
|
+
readonly name: "atomCreationProtocolFee";
|
|
159
|
+
readonly type: "uint256";
|
|
160
|
+
readonly internalType: "uint256";
|
|
161
|
+
}, {
|
|
162
|
+
readonly name: "atomWalletDepositFee";
|
|
163
|
+
readonly type: "uint256";
|
|
164
|
+
readonly internalType: "uint256";
|
|
165
|
+
}];
|
|
166
|
+
readonly stateMutability: "view";
|
|
167
|
+
}, {
|
|
168
|
+
readonly type: "function";
|
|
169
|
+
readonly name: "atomDepositFractionAmount";
|
|
170
|
+
readonly inputs: readonly [{
|
|
171
|
+
readonly name: "assets";
|
|
172
|
+
readonly type: "uint256";
|
|
173
|
+
readonly internalType: "uint256";
|
|
174
|
+
}];
|
|
175
|
+
readonly outputs: readonly [{
|
|
176
|
+
readonly name: "";
|
|
177
|
+
readonly type: "uint256";
|
|
178
|
+
readonly internalType: "uint256";
|
|
179
|
+
}];
|
|
180
|
+
readonly stateMutability: "view";
|
|
181
|
+
}, {
|
|
182
|
+
readonly type: "function";
|
|
183
|
+
readonly name: "batchSetAtomData";
|
|
184
|
+
readonly inputs: readonly [{
|
|
185
|
+
readonly name: "creators";
|
|
186
|
+
readonly type: "address[]";
|
|
187
|
+
readonly internalType: "address[]";
|
|
188
|
+
}, {
|
|
189
|
+
readonly name: "atomDataArray";
|
|
190
|
+
readonly type: "bytes[]";
|
|
191
|
+
readonly internalType: "bytes[]";
|
|
192
|
+
}];
|
|
193
|
+
readonly outputs: readonly [];
|
|
194
|
+
readonly stateMutability: "nonpayable";
|
|
195
|
+
}, {
|
|
196
|
+
readonly type: "function";
|
|
197
|
+
readonly name: "batchSetTripleData";
|
|
198
|
+
readonly inputs: readonly [{
|
|
199
|
+
readonly name: "creators";
|
|
200
|
+
readonly type: "address[]";
|
|
201
|
+
readonly internalType: "address[]";
|
|
202
|
+
}, {
|
|
203
|
+
readonly name: "tripleAtomIds";
|
|
204
|
+
readonly type: "bytes32[3][]";
|
|
205
|
+
readonly internalType: "bytes32[3][]";
|
|
206
|
+
}];
|
|
207
|
+
readonly outputs: readonly [];
|
|
208
|
+
readonly stateMutability: "nonpayable";
|
|
209
|
+
}, {
|
|
210
|
+
readonly type: "function";
|
|
211
|
+
readonly name: "batchSetUserBalances";
|
|
212
|
+
readonly inputs: readonly [{
|
|
213
|
+
readonly name: "params";
|
|
214
|
+
readonly type: "tuple";
|
|
215
|
+
readonly internalType: "struct MultiVaultMigrationMode.BatchSetUserBalancesParams";
|
|
216
|
+
readonly components: readonly [{
|
|
217
|
+
readonly name: "termIds";
|
|
218
|
+
readonly type: "bytes32[]";
|
|
219
|
+
readonly internalType: "bytes32[]";
|
|
220
|
+
}, {
|
|
221
|
+
readonly name: "bondingCurveId";
|
|
222
|
+
readonly type: "uint256";
|
|
223
|
+
readonly internalType: "uint256";
|
|
224
|
+
}, {
|
|
225
|
+
readonly name: "user";
|
|
226
|
+
readonly type: "address";
|
|
227
|
+
readonly internalType: "address";
|
|
228
|
+
}, {
|
|
229
|
+
readonly name: "userBalances";
|
|
230
|
+
readonly type: "uint256[]";
|
|
231
|
+
readonly internalType: "uint256[]";
|
|
232
|
+
}];
|
|
233
|
+
}];
|
|
234
|
+
readonly outputs: readonly [];
|
|
235
|
+
readonly stateMutability: "nonpayable";
|
|
236
|
+
}, {
|
|
237
|
+
readonly type: "function";
|
|
238
|
+
readonly name: "batchSetVaultTotals";
|
|
239
|
+
readonly inputs: readonly [{
|
|
240
|
+
readonly name: "termIds";
|
|
241
|
+
readonly type: "bytes32[]";
|
|
242
|
+
readonly internalType: "bytes32[]";
|
|
243
|
+
}, {
|
|
244
|
+
readonly name: "bondingCurveId";
|
|
245
|
+
readonly type: "uint256";
|
|
246
|
+
readonly internalType: "uint256";
|
|
247
|
+
}, {
|
|
248
|
+
readonly name: "vaultTotals";
|
|
249
|
+
readonly type: "tuple[]";
|
|
250
|
+
readonly internalType: "struct MultiVaultMigrationMode.VaultTotals[]";
|
|
251
|
+
readonly components: readonly [{
|
|
252
|
+
readonly name: "totalAssets";
|
|
253
|
+
readonly type: "uint256";
|
|
254
|
+
readonly internalType: "uint256";
|
|
255
|
+
}, {
|
|
256
|
+
readonly name: "totalShares";
|
|
257
|
+
readonly type: "uint256";
|
|
258
|
+
readonly internalType: "uint256";
|
|
259
|
+
}];
|
|
260
|
+
}];
|
|
261
|
+
readonly outputs: readonly [];
|
|
262
|
+
readonly stateMutability: "nonpayable";
|
|
263
|
+
}, {
|
|
264
|
+
readonly type: "function";
|
|
265
|
+
readonly name: "bondingCurveConfig";
|
|
266
|
+
readonly inputs: readonly [];
|
|
267
|
+
readonly outputs: readonly [{
|
|
268
|
+
readonly name: "registry";
|
|
269
|
+
readonly type: "address";
|
|
270
|
+
readonly internalType: "address";
|
|
271
|
+
}, {
|
|
272
|
+
readonly name: "defaultCurveId";
|
|
273
|
+
readonly type: "uint256";
|
|
274
|
+
readonly internalType: "uint256";
|
|
275
|
+
}];
|
|
276
|
+
readonly stateMutability: "view";
|
|
277
|
+
}, {
|
|
278
|
+
readonly type: "function";
|
|
279
|
+
readonly name: "calculateAtomId";
|
|
280
|
+
readonly inputs: readonly [{
|
|
281
|
+
readonly name: "data";
|
|
282
|
+
readonly type: "bytes";
|
|
283
|
+
readonly internalType: "bytes";
|
|
284
|
+
}];
|
|
285
|
+
readonly outputs: readonly [{
|
|
286
|
+
readonly name: "id";
|
|
287
|
+
readonly type: "bytes32";
|
|
288
|
+
readonly internalType: "bytes32";
|
|
289
|
+
}];
|
|
290
|
+
readonly stateMutability: "pure";
|
|
291
|
+
}, {
|
|
292
|
+
readonly type: "function";
|
|
293
|
+
readonly name: "calculateCounterTripleId";
|
|
294
|
+
readonly inputs: readonly [{
|
|
295
|
+
readonly name: "subjectId";
|
|
296
|
+
readonly type: "bytes32";
|
|
297
|
+
readonly internalType: "bytes32";
|
|
298
|
+
}, {
|
|
299
|
+
readonly name: "predicateId";
|
|
300
|
+
readonly type: "bytes32";
|
|
301
|
+
readonly internalType: "bytes32";
|
|
302
|
+
}, {
|
|
303
|
+
readonly name: "objectId";
|
|
304
|
+
readonly type: "bytes32";
|
|
305
|
+
readonly internalType: "bytes32";
|
|
306
|
+
}];
|
|
307
|
+
readonly outputs: readonly [{
|
|
308
|
+
readonly name: "";
|
|
309
|
+
readonly type: "bytes32";
|
|
310
|
+
readonly internalType: "bytes32";
|
|
311
|
+
}];
|
|
312
|
+
readonly stateMutability: "pure";
|
|
313
|
+
}, {
|
|
314
|
+
readonly type: "function";
|
|
315
|
+
readonly name: "calculateTripleId";
|
|
316
|
+
readonly inputs: readonly [{
|
|
317
|
+
readonly name: "subjectId";
|
|
318
|
+
readonly type: "bytes32";
|
|
319
|
+
readonly internalType: "bytes32";
|
|
320
|
+
}, {
|
|
321
|
+
readonly name: "predicateId";
|
|
322
|
+
readonly type: "bytes32";
|
|
323
|
+
readonly internalType: "bytes32";
|
|
324
|
+
}, {
|
|
325
|
+
readonly name: "objectId";
|
|
326
|
+
readonly type: "bytes32";
|
|
327
|
+
readonly internalType: "bytes32";
|
|
328
|
+
}];
|
|
329
|
+
readonly outputs: readonly [{
|
|
330
|
+
readonly name: "";
|
|
331
|
+
readonly type: "bytes32";
|
|
332
|
+
readonly internalType: "bytes32";
|
|
333
|
+
}];
|
|
334
|
+
readonly stateMutability: "pure";
|
|
335
|
+
}, {
|
|
336
|
+
readonly type: "function";
|
|
337
|
+
readonly name: "claimAtomWalletDepositFees";
|
|
338
|
+
readonly inputs: readonly [{
|
|
339
|
+
readonly name: "termId";
|
|
340
|
+
readonly type: "bytes32";
|
|
341
|
+
readonly internalType: "bytes32";
|
|
342
|
+
}];
|
|
343
|
+
readonly outputs: readonly [];
|
|
344
|
+
readonly stateMutability: "nonpayable";
|
|
345
|
+
}, {
|
|
346
|
+
readonly type: "function";
|
|
347
|
+
readonly name: "computeAtomWalletAddr";
|
|
348
|
+
readonly inputs: readonly [{
|
|
349
|
+
readonly name: "atomId";
|
|
350
|
+
readonly type: "bytes32";
|
|
351
|
+
readonly internalType: "bytes32";
|
|
352
|
+
}];
|
|
353
|
+
readonly outputs: readonly [{
|
|
354
|
+
readonly name: "";
|
|
355
|
+
readonly type: "address";
|
|
356
|
+
readonly internalType: "address";
|
|
357
|
+
}];
|
|
358
|
+
readonly stateMutability: "view";
|
|
359
|
+
}, {
|
|
360
|
+
readonly type: "function";
|
|
361
|
+
readonly name: "convertToAssets";
|
|
362
|
+
readonly inputs: readonly [{
|
|
363
|
+
readonly name: "termId";
|
|
364
|
+
readonly type: "bytes32";
|
|
365
|
+
readonly internalType: "bytes32";
|
|
366
|
+
}, {
|
|
367
|
+
readonly name: "bondingCurveId";
|
|
368
|
+
readonly type: "uint256";
|
|
369
|
+
readonly internalType: "uint256";
|
|
370
|
+
}, {
|
|
371
|
+
readonly name: "shares";
|
|
372
|
+
readonly type: "uint256";
|
|
373
|
+
readonly internalType: "uint256";
|
|
374
|
+
}];
|
|
375
|
+
readonly outputs: readonly [{
|
|
376
|
+
readonly name: "";
|
|
377
|
+
readonly type: "uint256";
|
|
378
|
+
readonly internalType: "uint256";
|
|
379
|
+
}];
|
|
380
|
+
readonly stateMutability: "view";
|
|
381
|
+
}, {
|
|
382
|
+
readonly type: "function";
|
|
383
|
+
readonly name: "convertToShares";
|
|
384
|
+
readonly inputs: readonly [{
|
|
385
|
+
readonly name: "termId";
|
|
386
|
+
readonly type: "bytes32";
|
|
387
|
+
readonly internalType: "bytes32";
|
|
388
|
+
}, {
|
|
389
|
+
readonly name: "curveId";
|
|
390
|
+
readonly type: "uint256";
|
|
391
|
+
readonly internalType: "uint256";
|
|
392
|
+
}, {
|
|
393
|
+
readonly name: "assets";
|
|
394
|
+
readonly type: "uint256";
|
|
395
|
+
readonly internalType: "uint256";
|
|
396
|
+
}];
|
|
397
|
+
readonly outputs: readonly [{
|
|
398
|
+
readonly name: "";
|
|
399
|
+
readonly type: "uint256";
|
|
400
|
+
readonly internalType: "uint256";
|
|
401
|
+
}];
|
|
402
|
+
readonly stateMutability: "view";
|
|
403
|
+
}, {
|
|
404
|
+
readonly type: "function";
|
|
405
|
+
readonly name: "createAtoms";
|
|
406
|
+
readonly inputs: readonly [{
|
|
407
|
+
readonly name: "data";
|
|
408
|
+
readonly type: "bytes[]";
|
|
409
|
+
readonly internalType: "bytes[]";
|
|
410
|
+
}, {
|
|
411
|
+
readonly name: "assets";
|
|
412
|
+
readonly type: "uint256[]";
|
|
413
|
+
readonly internalType: "uint256[]";
|
|
414
|
+
}];
|
|
415
|
+
readonly outputs: readonly [{
|
|
416
|
+
readonly name: "";
|
|
417
|
+
readonly type: "bytes32[]";
|
|
418
|
+
readonly internalType: "bytes32[]";
|
|
419
|
+
}];
|
|
420
|
+
readonly stateMutability: "payable";
|
|
421
|
+
}, {
|
|
422
|
+
readonly type: "function";
|
|
423
|
+
readonly name: "createTriples";
|
|
424
|
+
readonly inputs: readonly [{
|
|
425
|
+
readonly name: "subjectIds";
|
|
426
|
+
readonly type: "bytes32[]";
|
|
427
|
+
readonly internalType: "bytes32[]";
|
|
428
|
+
}, {
|
|
429
|
+
readonly name: "predicateIds";
|
|
430
|
+
readonly type: "bytes32[]";
|
|
431
|
+
readonly internalType: "bytes32[]";
|
|
432
|
+
}, {
|
|
433
|
+
readonly name: "objectIds";
|
|
434
|
+
readonly type: "bytes32[]";
|
|
435
|
+
readonly internalType: "bytes32[]";
|
|
436
|
+
}, {
|
|
437
|
+
readonly name: "assets";
|
|
438
|
+
readonly type: "uint256[]";
|
|
439
|
+
readonly internalType: "uint256[]";
|
|
440
|
+
}];
|
|
441
|
+
readonly outputs: readonly [{
|
|
442
|
+
readonly name: "";
|
|
443
|
+
readonly type: "bytes32[]";
|
|
444
|
+
readonly internalType: "bytes32[]";
|
|
445
|
+
}];
|
|
446
|
+
readonly stateMutability: "payable";
|
|
447
|
+
}, {
|
|
448
|
+
readonly type: "function";
|
|
449
|
+
readonly name: "currentEpoch";
|
|
450
|
+
readonly inputs: readonly [];
|
|
451
|
+
readonly outputs: readonly [{
|
|
452
|
+
readonly name: "";
|
|
453
|
+
readonly type: "uint256";
|
|
454
|
+
readonly internalType: "uint256";
|
|
455
|
+
}];
|
|
456
|
+
readonly stateMutability: "view";
|
|
457
|
+
}, {
|
|
458
|
+
readonly type: "function";
|
|
459
|
+
readonly name: "currentSharePrice";
|
|
460
|
+
readonly inputs: readonly [{
|
|
461
|
+
readonly name: "termId";
|
|
462
|
+
readonly type: "bytes32";
|
|
463
|
+
readonly internalType: "bytes32";
|
|
464
|
+
}, {
|
|
465
|
+
readonly name: "curveId";
|
|
466
|
+
readonly type: "uint256";
|
|
467
|
+
readonly internalType: "uint256";
|
|
468
|
+
}];
|
|
469
|
+
readonly outputs: readonly [{
|
|
470
|
+
readonly name: "";
|
|
471
|
+
readonly type: "uint256";
|
|
472
|
+
readonly internalType: "uint256";
|
|
473
|
+
}];
|
|
474
|
+
readonly stateMutability: "view";
|
|
475
|
+
}, {
|
|
476
|
+
readonly type: "function";
|
|
477
|
+
readonly name: "deposit";
|
|
478
|
+
readonly inputs: readonly [{
|
|
479
|
+
readonly name: "receiver";
|
|
480
|
+
readonly type: "address";
|
|
481
|
+
readonly internalType: "address";
|
|
482
|
+
}, {
|
|
483
|
+
readonly name: "termId";
|
|
484
|
+
readonly type: "bytes32";
|
|
485
|
+
readonly internalType: "bytes32";
|
|
486
|
+
}, {
|
|
487
|
+
readonly name: "curveId";
|
|
488
|
+
readonly type: "uint256";
|
|
489
|
+
readonly internalType: "uint256";
|
|
490
|
+
}, {
|
|
491
|
+
readonly name: "minShares";
|
|
492
|
+
readonly type: "uint256";
|
|
493
|
+
readonly internalType: "uint256";
|
|
494
|
+
}];
|
|
495
|
+
readonly outputs: readonly [{
|
|
496
|
+
readonly name: "";
|
|
497
|
+
readonly type: "uint256";
|
|
498
|
+
readonly internalType: "uint256";
|
|
499
|
+
}];
|
|
500
|
+
readonly stateMutability: "payable";
|
|
501
|
+
}, {
|
|
502
|
+
readonly type: "function";
|
|
503
|
+
readonly name: "depositBatch";
|
|
504
|
+
readonly inputs: readonly [{
|
|
505
|
+
readonly name: "receiver";
|
|
506
|
+
readonly type: "address";
|
|
507
|
+
readonly internalType: "address";
|
|
508
|
+
}, {
|
|
509
|
+
readonly name: "termIds";
|
|
510
|
+
readonly type: "bytes32[]";
|
|
511
|
+
readonly internalType: "bytes32[]";
|
|
512
|
+
}, {
|
|
513
|
+
readonly name: "curveIds";
|
|
514
|
+
readonly type: "uint256[]";
|
|
515
|
+
readonly internalType: "uint256[]";
|
|
516
|
+
}, {
|
|
517
|
+
readonly name: "assets";
|
|
518
|
+
readonly type: "uint256[]";
|
|
519
|
+
readonly internalType: "uint256[]";
|
|
520
|
+
}, {
|
|
521
|
+
readonly name: "minShares";
|
|
522
|
+
readonly type: "uint256[]";
|
|
523
|
+
readonly internalType: "uint256[]";
|
|
524
|
+
}];
|
|
525
|
+
readonly outputs: readonly [{
|
|
526
|
+
readonly name: "shares";
|
|
527
|
+
readonly type: "uint256[]";
|
|
528
|
+
readonly internalType: "uint256[]";
|
|
529
|
+
}];
|
|
530
|
+
readonly stateMutability: "payable";
|
|
531
|
+
}, {
|
|
532
|
+
readonly type: "function";
|
|
533
|
+
readonly name: "entryFeeAmount";
|
|
534
|
+
readonly inputs: readonly [{
|
|
535
|
+
readonly name: "assets";
|
|
536
|
+
readonly type: "uint256";
|
|
537
|
+
readonly internalType: "uint256";
|
|
538
|
+
}];
|
|
539
|
+
readonly outputs: readonly [{
|
|
540
|
+
readonly name: "";
|
|
541
|
+
readonly type: "uint256";
|
|
542
|
+
readonly internalType: "uint256";
|
|
543
|
+
}];
|
|
544
|
+
readonly stateMutability: "view";
|
|
545
|
+
}, {
|
|
546
|
+
readonly type: "function";
|
|
547
|
+
readonly name: "exitFeeAmount";
|
|
548
|
+
readonly inputs: readonly [{
|
|
549
|
+
readonly name: "assets";
|
|
550
|
+
readonly type: "uint256";
|
|
551
|
+
readonly internalType: "uint256";
|
|
552
|
+
}];
|
|
553
|
+
readonly outputs: readonly [{
|
|
554
|
+
readonly name: "";
|
|
555
|
+
readonly type: "uint256";
|
|
556
|
+
readonly internalType: "uint256";
|
|
557
|
+
}];
|
|
558
|
+
readonly stateMutability: "view";
|
|
559
|
+
}, {
|
|
560
|
+
readonly type: "function";
|
|
561
|
+
readonly name: "generalConfig";
|
|
562
|
+
readonly inputs: readonly [];
|
|
563
|
+
readonly outputs: readonly [{
|
|
564
|
+
readonly name: "admin";
|
|
565
|
+
readonly type: "address";
|
|
566
|
+
readonly internalType: "address";
|
|
567
|
+
}, {
|
|
568
|
+
readonly name: "protocolMultisig";
|
|
569
|
+
readonly type: "address";
|
|
570
|
+
readonly internalType: "address";
|
|
571
|
+
}, {
|
|
572
|
+
readonly name: "feeDenominator";
|
|
573
|
+
readonly type: "uint256";
|
|
574
|
+
readonly internalType: "uint256";
|
|
575
|
+
}, {
|
|
576
|
+
readonly name: "trustBonding";
|
|
577
|
+
readonly type: "address";
|
|
578
|
+
readonly internalType: "address";
|
|
579
|
+
}, {
|
|
580
|
+
readonly name: "minDeposit";
|
|
581
|
+
readonly type: "uint256";
|
|
582
|
+
readonly internalType: "uint256";
|
|
583
|
+
}, {
|
|
584
|
+
readonly name: "minShare";
|
|
585
|
+
readonly type: "uint256";
|
|
586
|
+
readonly internalType: "uint256";
|
|
587
|
+
}, {
|
|
588
|
+
readonly name: "atomDataMaxLength";
|
|
589
|
+
readonly type: "uint256";
|
|
590
|
+
readonly internalType: "uint256";
|
|
591
|
+
}, {
|
|
592
|
+
readonly name: "decimalPrecision";
|
|
593
|
+
readonly type: "uint256";
|
|
594
|
+
readonly internalType: "uint256";
|
|
595
|
+
}];
|
|
596
|
+
readonly stateMutability: "view";
|
|
597
|
+
}, {
|
|
598
|
+
readonly type: "function";
|
|
599
|
+
readonly name: "getAtom";
|
|
600
|
+
readonly inputs: readonly [{
|
|
601
|
+
readonly name: "atomId";
|
|
602
|
+
readonly type: "bytes32";
|
|
603
|
+
readonly internalType: "bytes32";
|
|
604
|
+
}];
|
|
605
|
+
readonly outputs: readonly [{
|
|
606
|
+
readonly name: "data";
|
|
607
|
+
readonly type: "bytes";
|
|
608
|
+
readonly internalType: "bytes";
|
|
609
|
+
}];
|
|
610
|
+
readonly stateMutability: "view";
|
|
611
|
+
}, {
|
|
612
|
+
readonly type: "function";
|
|
613
|
+
readonly name: "getAtomConfig";
|
|
614
|
+
readonly inputs: readonly [];
|
|
615
|
+
readonly outputs: readonly [{
|
|
616
|
+
readonly name: "";
|
|
617
|
+
readonly type: "tuple";
|
|
618
|
+
readonly internalType: "struct AtomConfig";
|
|
619
|
+
readonly components: readonly [{
|
|
620
|
+
readonly name: "atomCreationProtocolFee";
|
|
621
|
+
readonly type: "uint256";
|
|
622
|
+
readonly internalType: "uint256";
|
|
623
|
+
}, {
|
|
624
|
+
readonly name: "atomWalletDepositFee";
|
|
625
|
+
readonly type: "uint256";
|
|
626
|
+
readonly internalType: "uint256";
|
|
627
|
+
}];
|
|
628
|
+
}];
|
|
629
|
+
readonly stateMutability: "view";
|
|
630
|
+
}, {
|
|
631
|
+
readonly type: "function";
|
|
632
|
+
readonly name: "getAtomCost";
|
|
633
|
+
readonly inputs: readonly [];
|
|
634
|
+
readonly outputs: readonly [{
|
|
635
|
+
readonly name: "";
|
|
636
|
+
readonly type: "uint256";
|
|
637
|
+
readonly internalType: "uint256";
|
|
638
|
+
}];
|
|
639
|
+
readonly stateMutability: "view";
|
|
640
|
+
}, {
|
|
641
|
+
readonly type: "function";
|
|
642
|
+
readonly name: "getAtomCreationCost";
|
|
643
|
+
readonly inputs: readonly [];
|
|
644
|
+
readonly outputs: readonly [{
|
|
645
|
+
readonly name: "";
|
|
646
|
+
readonly type: "uint256";
|
|
647
|
+
readonly internalType: "uint256";
|
|
648
|
+
}];
|
|
649
|
+
readonly stateMutability: "view";
|
|
650
|
+
}, {
|
|
651
|
+
readonly type: "function";
|
|
652
|
+
readonly name: "getAtomWarden";
|
|
653
|
+
readonly inputs: readonly [];
|
|
654
|
+
readonly outputs: readonly [{
|
|
655
|
+
readonly name: "";
|
|
656
|
+
readonly type: "address";
|
|
657
|
+
readonly internalType: "address";
|
|
658
|
+
}];
|
|
659
|
+
readonly stateMutability: "view";
|
|
660
|
+
}, {
|
|
661
|
+
readonly type: "function";
|
|
662
|
+
readonly name: "getBondingCurveConfig";
|
|
663
|
+
readonly inputs: readonly [];
|
|
664
|
+
readonly outputs: readonly [{
|
|
665
|
+
readonly name: "";
|
|
666
|
+
readonly type: "tuple";
|
|
667
|
+
readonly internalType: "struct BondingCurveConfig";
|
|
668
|
+
readonly components: readonly [{
|
|
669
|
+
readonly name: "registry";
|
|
670
|
+
readonly type: "address";
|
|
671
|
+
readonly internalType: "address";
|
|
672
|
+
}, {
|
|
673
|
+
readonly name: "defaultCurveId";
|
|
674
|
+
readonly type: "uint256";
|
|
675
|
+
readonly internalType: "uint256";
|
|
676
|
+
}];
|
|
677
|
+
}];
|
|
678
|
+
readonly stateMutability: "view";
|
|
679
|
+
}, {
|
|
680
|
+
readonly type: "function";
|
|
681
|
+
readonly name: "getCounterIdFromTripleId";
|
|
682
|
+
readonly inputs: readonly [{
|
|
683
|
+
readonly name: "tripleId";
|
|
684
|
+
readonly type: "bytes32";
|
|
685
|
+
readonly internalType: "bytes32";
|
|
686
|
+
}];
|
|
687
|
+
readonly outputs: readonly [{
|
|
688
|
+
readonly name: "";
|
|
689
|
+
readonly type: "bytes32";
|
|
690
|
+
readonly internalType: "bytes32";
|
|
691
|
+
}];
|
|
692
|
+
readonly stateMutability: "pure";
|
|
693
|
+
}, {
|
|
694
|
+
readonly type: "function";
|
|
695
|
+
readonly name: "getDefaultCurveId";
|
|
696
|
+
readonly inputs: readonly [];
|
|
697
|
+
readonly outputs: readonly [{
|
|
698
|
+
readonly name: "";
|
|
699
|
+
readonly type: "uint256";
|
|
700
|
+
readonly internalType: "uint256";
|
|
701
|
+
}];
|
|
702
|
+
readonly stateMutability: "view";
|
|
703
|
+
}, {
|
|
704
|
+
readonly type: "function";
|
|
705
|
+
readonly name: "getGeneralConfig";
|
|
706
|
+
readonly inputs: readonly [];
|
|
707
|
+
readonly outputs: readonly [{
|
|
708
|
+
readonly name: "";
|
|
709
|
+
readonly type: "tuple";
|
|
710
|
+
readonly internalType: "struct GeneralConfig";
|
|
711
|
+
readonly components: readonly [{
|
|
712
|
+
readonly name: "admin";
|
|
713
|
+
readonly type: "address";
|
|
714
|
+
readonly internalType: "address";
|
|
715
|
+
}, {
|
|
716
|
+
readonly name: "protocolMultisig";
|
|
717
|
+
readonly type: "address";
|
|
718
|
+
readonly internalType: "address";
|
|
719
|
+
}, {
|
|
720
|
+
readonly name: "feeDenominator";
|
|
721
|
+
readonly type: "uint256";
|
|
722
|
+
readonly internalType: "uint256";
|
|
723
|
+
}, {
|
|
724
|
+
readonly name: "trustBonding";
|
|
725
|
+
readonly type: "address";
|
|
726
|
+
readonly internalType: "address";
|
|
727
|
+
}, {
|
|
728
|
+
readonly name: "minDeposit";
|
|
729
|
+
readonly type: "uint256";
|
|
730
|
+
readonly internalType: "uint256";
|
|
731
|
+
}, {
|
|
732
|
+
readonly name: "minShare";
|
|
733
|
+
readonly type: "uint256";
|
|
734
|
+
readonly internalType: "uint256";
|
|
735
|
+
}, {
|
|
736
|
+
readonly name: "atomDataMaxLength";
|
|
737
|
+
readonly type: "uint256";
|
|
738
|
+
readonly internalType: "uint256";
|
|
739
|
+
}, {
|
|
740
|
+
readonly name: "decimalPrecision";
|
|
741
|
+
readonly type: "uint256";
|
|
742
|
+
readonly internalType: "uint256";
|
|
743
|
+
}];
|
|
744
|
+
}];
|
|
745
|
+
readonly stateMutability: "view";
|
|
746
|
+
}, {
|
|
747
|
+
readonly type: "function";
|
|
748
|
+
readonly name: "getRoleAdmin";
|
|
749
|
+
readonly inputs: readonly [{
|
|
750
|
+
readonly name: "role";
|
|
751
|
+
readonly type: "bytes32";
|
|
752
|
+
readonly internalType: "bytes32";
|
|
753
|
+
}];
|
|
754
|
+
readonly outputs: readonly [{
|
|
755
|
+
readonly name: "";
|
|
756
|
+
readonly type: "bytes32";
|
|
757
|
+
readonly internalType: "bytes32";
|
|
758
|
+
}];
|
|
759
|
+
readonly stateMutability: "view";
|
|
760
|
+
}, {
|
|
761
|
+
readonly type: "function";
|
|
762
|
+
readonly name: "getShares";
|
|
763
|
+
readonly inputs: readonly [{
|
|
764
|
+
readonly name: "account";
|
|
765
|
+
readonly type: "address";
|
|
766
|
+
readonly internalType: "address";
|
|
767
|
+
}, {
|
|
768
|
+
readonly name: "termId";
|
|
769
|
+
readonly type: "bytes32";
|
|
770
|
+
readonly internalType: "bytes32";
|
|
771
|
+
}, {
|
|
772
|
+
readonly name: "curveId";
|
|
773
|
+
readonly type: "uint256";
|
|
774
|
+
readonly internalType: "uint256";
|
|
775
|
+
}];
|
|
776
|
+
readonly outputs: readonly [{
|
|
777
|
+
readonly name: "";
|
|
778
|
+
readonly type: "uint256";
|
|
779
|
+
readonly internalType: "uint256";
|
|
780
|
+
}];
|
|
781
|
+
readonly stateMutability: "view";
|
|
782
|
+
}, {
|
|
783
|
+
readonly type: "function";
|
|
784
|
+
readonly name: "getTotalUtilizationForEpoch";
|
|
785
|
+
readonly inputs: readonly [{
|
|
786
|
+
readonly name: "epoch";
|
|
787
|
+
readonly type: "uint256";
|
|
788
|
+
readonly internalType: "uint256";
|
|
789
|
+
}];
|
|
790
|
+
readonly outputs: readonly [{
|
|
791
|
+
readonly name: "";
|
|
792
|
+
readonly type: "int256";
|
|
793
|
+
readonly internalType: "int256";
|
|
794
|
+
}];
|
|
795
|
+
readonly stateMutability: "view";
|
|
796
|
+
}, {
|
|
797
|
+
readonly type: "function";
|
|
798
|
+
readonly name: "getTriple";
|
|
799
|
+
readonly inputs: readonly [{
|
|
800
|
+
readonly name: "tripleId";
|
|
801
|
+
readonly type: "bytes32";
|
|
802
|
+
readonly internalType: "bytes32";
|
|
803
|
+
}];
|
|
804
|
+
readonly outputs: readonly [{
|
|
805
|
+
readonly name: "";
|
|
806
|
+
readonly type: "bytes32";
|
|
807
|
+
readonly internalType: "bytes32";
|
|
808
|
+
}, {
|
|
809
|
+
readonly name: "";
|
|
810
|
+
readonly type: "bytes32";
|
|
811
|
+
readonly internalType: "bytes32";
|
|
812
|
+
}, {
|
|
813
|
+
readonly name: "";
|
|
814
|
+
readonly type: "bytes32";
|
|
815
|
+
readonly internalType: "bytes32";
|
|
816
|
+
}];
|
|
817
|
+
readonly stateMutability: "view";
|
|
818
|
+
}, {
|
|
819
|
+
readonly type: "function";
|
|
820
|
+
readonly name: "getTripleConfig";
|
|
821
|
+
readonly inputs: readonly [];
|
|
822
|
+
readonly outputs: readonly [{
|
|
823
|
+
readonly name: "";
|
|
824
|
+
readonly type: "tuple";
|
|
825
|
+
readonly internalType: "struct TripleConfig";
|
|
826
|
+
readonly components: readonly [{
|
|
827
|
+
readonly name: "tripleCreationProtocolFee";
|
|
828
|
+
readonly type: "uint256";
|
|
829
|
+
readonly internalType: "uint256";
|
|
830
|
+
}, {
|
|
831
|
+
readonly name: "totalAtomDepositsOnTripleCreation";
|
|
832
|
+
readonly type: "uint256";
|
|
833
|
+
readonly internalType: "uint256";
|
|
834
|
+
}, {
|
|
835
|
+
readonly name: "atomDepositFractionForTriple";
|
|
836
|
+
readonly type: "uint256";
|
|
837
|
+
readonly internalType: "uint256";
|
|
838
|
+
}];
|
|
839
|
+
}];
|
|
840
|
+
readonly stateMutability: "view";
|
|
841
|
+
}, {
|
|
842
|
+
readonly type: "function";
|
|
843
|
+
readonly name: "getTripleCost";
|
|
844
|
+
readonly inputs: readonly [];
|
|
845
|
+
readonly outputs: readonly [{
|
|
846
|
+
readonly name: "";
|
|
847
|
+
readonly type: "uint256";
|
|
848
|
+
readonly internalType: "uint256";
|
|
849
|
+
}];
|
|
850
|
+
readonly stateMutability: "view";
|
|
851
|
+
}, {
|
|
852
|
+
readonly type: "function";
|
|
853
|
+
readonly name: "getTripleIdFromCounterId";
|
|
854
|
+
readonly inputs: readonly [{
|
|
855
|
+
readonly name: "counterId";
|
|
856
|
+
readonly type: "bytes32";
|
|
857
|
+
readonly internalType: "bytes32";
|
|
858
|
+
}];
|
|
859
|
+
readonly outputs: readonly [{
|
|
860
|
+
readonly name: "";
|
|
861
|
+
readonly type: "bytes32";
|
|
862
|
+
readonly internalType: "bytes32";
|
|
863
|
+
}];
|
|
864
|
+
readonly stateMutability: "view";
|
|
865
|
+
}, {
|
|
866
|
+
readonly type: "function";
|
|
867
|
+
readonly name: "getUserUtilizationForEpoch";
|
|
868
|
+
readonly inputs: readonly [{
|
|
869
|
+
readonly name: "user";
|
|
870
|
+
readonly type: "address";
|
|
871
|
+
readonly internalType: "address";
|
|
872
|
+
}, {
|
|
873
|
+
readonly name: "epoch";
|
|
874
|
+
readonly type: "uint256";
|
|
875
|
+
readonly internalType: "uint256";
|
|
876
|
+
}];
|
|
877
|
+
readonly outputs: readonly [{
|
|
878
|
+
readonly name: "";
|
|
879
|
+
readonly type: "int256";
|
|
880
|
+
readonly internalType: "int256";
|
|
881
|
+
}];
|
|
882
|
+
readonly stateMutability: "view";
|
|
883
|
+
}, {
|
|
884
|
+
readonly type: "function";
|
|
885
|
+
readonly name: "getVault";
|
|
886
|
+
readonly inputs: readonly [{
|
|
887
|
+
readonly name: "termId";
|
|
888
|
+
readonly type: "bytes32";
|
|
889
|
+
readonly internalType: "bytes32";
|
|
890
|
+
}, {
|
|
891
|
+
readonly name: "curveId";
|
|
892
|
+
readonly type: "uint256";
|
|
893
|
+
readonly internalType: "uint256";
|
|
894
|
+
}];
|
|
895
|
+
readonly outputs: readonly [{
|
|
896
|
+
readonly name: "";
|
|
897
|
+
readonly type: "uint256";
|
|
898
|
+
readonly internalType: "uint256";
|
|
899
|
+
}, {
|
|
900
|
+
readonly name: "";
|
|
901
|
+
readonly type: "uint256";
|
|
902
|
+
readonly internalType: "uint256";
|
|
903
|
+
}];
|
|
904
|
+
readonly stateMutability: "view";
|
|
905
|
+
}, {
|
|
906
|
+
readonly type: "function";
|
|
907
|
+
readonly name: "getVaultFees";
|
|
908
|
+
readonly inputs: readonly [];
|
|
909
|
+
readonly outputs: readonly [{
|
|
910
|
+
readonly name: "";
|
|
911
|
+
readonly type: "tuple";
|
|
912
|
+
readonly internalType: "struct VaultFees";
|
|
913
|
+
readonly components: readonly [{
|
|
914
|
+
readonly name: "entryFee";
|
|
915
|
+
readonly type: "uint256";
|
|
916
|
+
readonly internalType: "uint256";
|
|
917
|
+
}, {
|
|
918
|
+
readonly name: "exitFee";
|
|
919
|
+
readonly type: "uint256";
|
|
920
|
+
readonly internalType: "uint256";
|
|
921
|
+
}, {
|
|
922
|
+
readonly name: "protocolFee";
|
|
923
|
+
readonly type: "uint256";
|
|
924
|
+
readonly internalType: "uint256";
|
|
925
|
+
}];
|
|
926
|
+
}];
|
|
927
|
+
readonly stateMutability: "view";
|
|
928
|
+
}, {
|
|
929
|
+
readonly type: "function";
|
|
930
|
+
readonly name: "getVaultType";
|
|
931
|
+
readonly inputs: readonly [{
|
|
932
|
+
readonly name: "termId";
|
|
933
|
+
readonly type: "bytes32";
|
|
934
|
+
readonly internalType: "bytes32";
|
|
935
|
+
}];
|
|
936
|
+
readonly outputs: readonly [{
|
|
937
|
+
readonly name: "";
|
|
938
|
+
readonly type: "uint8";
|
|
939
|
+
readonly internalType: "enum IMultiVault.VaultType";
|
|
940
|
+
}];
|
|
941
|
+
readonly stateMutability: "view";
|
|
942
|
+
}, {
|
|
943
|
+
readonly type: "function";
|
|
944
|
+
readonly name: "getWalletConfig";
|
|
945
|
+
readonly inputs: readonly [];
|
|
946
|
+
readonly outputs: readonly [{
|
|
947
|
+
readonly name: "";
|
|
948
|
+
readonly type: "tuple";
|
|
949
|
+
readonly internalType: "struct WalletConfig";
|
|
950
|
+
readonly components: readonly [{
|
|
951
|
+
readonly name: "permit2";
|
|
952
|
+
readonly type: "address";
|
|
953
|
+
readonly internalType: "contract IPermit2";
|
|
954
|
+
}, {
|
|
955
|
+
readonly name: "entryPoint";
|
|
956
|
+
readonly type: "address";
|
|
957
|
+
readonly internalType: "address";
|
|
958
|
+
}, {
|
|
959
|
+
readonly name: "atomWarden";
|
|
960
|
+
readonly type: "address";
|
|
961
|
+
readonly internalType: "address";
|
|
962
|
+
}, {
|
|
963
|
+
readonly name: "atomWalletBeacon";
|
|
964
|
+
readonly type: "address";
|
|
965
|
+
readonly internalType: "address";
|
|
966
|
+
}, {
|
|
967
|
+
readonly name: "atomWalletFactory";
|
|
968
|
+
readonly type: "address";
|
|
969
|
+
readonly internalType: "address";
|
|
970
|
+
}];
|
|
971
|
+
}];
|
|
972
|
+
readonly stateMutability: "view";
|
|
973
|
+
}, {
|
|
974
|
+
readonly type: "function";
|
|
975
|
+
readonly name: "grantRole";
|
|
976
|
+
readonly inputs: readonly [{
|
|
977
|
+
readonly name: "role";
|
|
978
|
+
readonly type: "bytes32";
|
|
979
|
+
readonly internalType: "bytes32";
|
|
980
|
+
}, {
|
|
981
|
+
readonly name: "account";
|
|
982
|
+
readonly type: "address";
|
|
983
|
+
readonly internalType: "address";
|
|
984
|
+
}];
|
|
985
|
+
readonly outputs: readonly [];
|
|
986
|
+
readonly stateMutability: "nonpayable";
|
|
987
|
+
}, {
|
|
988
|
+
readonly type: "function";
|
|
989
|
+
readonly name: "hasRole";
|
|
990
|
+
readonly inputs: readonly [{
|
|
991
|
+
readonly name: "role";
|
|
992
|
+
readonly type: "bytes32";
|
|
993
|
+
readonly internalType: "bytes32";
|
|
994
|
+
}, {
|
|
995
|
+
readonly name: "account";
|
|
996
|
+
readonly type: "address";
|
|
997
|
+
readonly internalType: "address";
|
|
998
|
+
}];
|
|
999
|
+
readonly outputs: readonly [{
|
|
1000
|
+
readonly name: "";
|
|
1001
|
+
readonly type: "bool";
|
|
1002
|
+
readonly internalType: "bool";
|
|
1003
|
+
}];
|
|
1004
|
+
readonly stateMutability: "view";
|
|
1005
|
+
}, {
|
|
1006
|
+
readonly type: "function";
|
|
1007
|
+
readonly name: "initialize";
|
|
1008
|
+
readonly inputs: readonly [{
|
|
1009
|
+
readonly name: "_generalConfig";
|
|
1010
|
+
readonly type: "tuple";
|
|
1011
|
+
readonly internalType: "struct GeneralConfig";
|
|
1012
|
+
readonly components: readonly [{
|
|
1013
|
+
readonly name: "admin";
|
|
1014
|
+
readonly type: "address";
|
|
1015
|
+
readonly internalType: "address";
|
|
1016
|
+
}, {
|
|
1017
|
+
readonly name: "protocolMultisig";
|
|
1018
|
+
readonly type: "address";
|
|
1019
|
+
readonly internalType: "address";
|
|
1020
|
+
}, {
|
|
1021
|
+
readonly name: "feeDenominator";
|
|
1022
|
+
readonly type: "uint256";
|
|
1023
|
+
readonly internalType: "uint256";
|
|
1024
|
+
}, {
|
|
1025
|
+
readonly name: "trustBonding";
|
|
1026
|
+
readonly type: "address";
|
|
1027
|
+
readonly internalType: "address";
|
|
1028
|
+
}, {
|
|
1029
|
+
readonly name: "minDeposit";
|
|
1030
|
+
readonly type: "uint256";
|
|
1031
|
+
readonly internalType: "uint256";
|
|
1032
|
+
}, {
|
|
1033
|
+
readonly name: "minShare";
|
|
1034
|
+
readonly type: "uint256";
|
|
1035
|
+
readonly internalType: "uint256";
|
|
1036
|
+
}, {
|
|
1037
|
+
readonly name: "atomDataMaxLength";
|
|
1038
|
+
readonly type: "uint256";
|
|
1039
|
+
readonly internalType: "uint256";
|
|
1040
|
+
}, {
|
|
1041
|
+
readonly name: "decimalPrecision";
|
|
1042
|
+
readonly type: "uint256";
|
|
1043
|
+
readonly internalType: "uint256";
|
|
1044
|
+
}];
|
|
1045
|
+
}, {
|
|
1046
|
+
readonly name: "_atomConfig";
|
|
1047
|
+
readonly type: "tuple";
|
|
1048
|
+
readonly internalType: "struct AtomConfig";
|
|
1049
|
+
readonly components: readonly [{
|
|
1050
|
+
readonly name: "atomCreationProtocolFee";
|
|
1051
|
+
readonly type: "uint256";
|
|
1052
|
+
readonly internalType: "uint256";
|
|
1053
|
+
}, {
|
|
1054
|
+
readonly name: "atomWalletDepositFee";
|
|
1055
|
+
readonly type: "uint256";
|
|
1056
|
+
readonly internalType: "uint256";
|
|
1057
|
+
}];
|
|
1058
|
+
}, {
|
|
1059
|
+
readonly name: "_tripleConfig";
|
|
1060
|
+
readonly type: "tuple";
|
|
1061
|
+
readonly internalType: "struct TripleConfig";
|
|
1062
|
+
readonly components: readonly [{
|
|
1063
|
+
readonly name: "tripleCreationProtocolFee";
|
|
1064
|
+
readonly type: "uint256";
|
|
1065
|
+
readonly internalType: "uint256";
|
|
1066
|
+
}, {
|
|
1067
|
+
readonly name: "totalAtomDepositsOnTripleCreation";
|
|
1068
|
+
readonly type: "uint256";
|
|
1069
|
+
readonly internalType: "uint256";
|
|
1070
|
+
}, {
|
|
1071
|
+
readonly name: "atomDepositFractionForTriple";
|
|
1072
|
+
readonly type: "uint256";
|
|
1073
|
+
readonly internalType: "uint256";
|
|
1074
|
+
}];
|
|
1075
|
+
}, {
|
|
1076
|
+
readonly name: "_walletConfig";
|
|
1077
|
+
readonly type: "tuple";
|
|
1078
|
+
readonly internalType: "struct WalletConfig";
|
|
1079
|
+
readonly components: readonly [{
|
|
1080
|
+
readonly name: "permit2";
|
|
1081
|
+
readonly type: "address";
|
|
1082
|
+
readonly internalType: "contract IPermit2";
|
|
1083
|
+
}, {
|
|
1084
|
+
readonly name: "entryPoint";
|
|
1085
|
+
readonly type: "address";
|
|
1086
|
+
readonly internalType: "address";
|
|
1087
|
+
}, {
|
|
1088
|
+
readonly name: "atomWarden";
|
|
1089
|
+
readonly type: "address";
|
|
1090
|
+
readonly internalType: "address";
|
|
1091
|
+
}, {
|
|
1092
|
+
readonly name: "atomWalletBeacon";
|
|
1093
|
+
readonly type: "address";
|
|
1094
|
+
readonly internalType: "address";
|
|
1095
|
+
}, {
|
|
1096
|
+
readonly name: "atomWalletFactory";
|
|
1097
|
+
readonly type: "address";
|
|
1098
|
+
readonly internalType: "address";
|
|
1099
|
+
}];
|
|
1100
|
+
}, {
|
|
1101
|
+
readonly name: "_vaultFees";
|
|
1102
|
+
readonly type: "tuple";
|
|
1103
|
+
readonly internalType: "struct VaultFees";
|
|
1104
|
+
readonly components: readonly [{
|
|
1105
|
+
readonly name: "entryFee";
|
|
1106
|
+
readonly type: "uint256";
|
|
1107
|
+
readonly internalType: "uint256";
|
|
1108
|
+
}, {
|
|
1109
|
+
readonly name: "exitFee";
|
|
1110
|
+
readonly type: "uint256";
|
|
1111
|
+
readonly internalType: "uint256";
|
|
1112
|
+
}, {
|
|
1113
|
+
readonly name: "protocolFee";
|
|
1114
|
+
readonly type: "uint256";
|
|
1115
|
+
readonly internalType: "uint256";
|
|
1116
|
+
}];
|
|
1117
|
+
}, {
|
|
1118
|
+
readonly name: "_bondingCurveConfig";
|
|
1119
|
+
readonly type: "tuple";
|
|
1120
|
+
readonly internalType: "struct BondingCurveConfig";
|
|
1121
|
+
readonly components: readonly [{
|
|
1122
|
+
readonly name: "registry";
|
|
1123
|
+
readonly type: "address";
|
|
1124
|
+
readonly internalType: "address";
|
|
1125
|
+
}, {
|
|
1126
|
+
readonly name: "defaultCurveId";
|
|
1127
|
+
readonly type: "uint256";
|
|
1128
|
+
readonly internalType: "uint256";
|
|
1129
|
+
}];
|
|
1130
|
+
}];
|
|
1131
|
+
readonly outputs: readonly [];
|
|
1132
|
+
readonly stateMutability: "nonpayable";
|
|
1133
|
+
}, {
|
|
1134
|
+
readonly type: "function";
|
|
1135
|
+
readonly name: "isAtom";
|
|
1136
|
+
readonly inputs: readonly [{
|
|
1137
|
+
readonly name: "atomId";
|
|
1138
|
+
readonly type: "bytes32";
|
|
1139
|
+
readonly internalType: "bytes32";
|
|
1140
|
+
}];
|
|
1141
|
+
readonly outputs: readonly [{
|
|
1142
|
+
readonly name: "";
|
|
1143
|
+
readonly type: "bool";
|
|
1144
|
+
readonly internalType: "bool";
|
|
1145
|
+
}];
|
|
1146
|
+
readonly stateMutability: "view";
|
|
1147
|
+
}, {
|
|
1148
|
+
readonly type: "function";
|
|
1149
|
+
readonly name: "isCounterTriple";
|
|
1150
|
+
readonly inputs: readonly [{
|
|
1151
|
+
readonly name: "termId";
|
|
1152
|
+
readonly type: "bytes32";
|
|
1153
|
+
readonly internalType: "bytes32";
|
|
1154
|
+
}];
|
|
1155
|
+
readonly outputs: readonly [{
|
|
1156
|
+
readonly name: "";
|
|
1157
|
+
readonly type: "bool";
|
|
1158
|
+
readonly internalType: "bool";
|
|
1159
|
+
}];
|
|
1160
|
+
readonly stateMutability: "view";
|
|
1161
|
+
}, {
|
|
1162
|
+
readonly type: "function";
|
|
1163
|
+
readonly name: "isTermCreated";
|
|
1164
|
+
readonly inputs: readonly [{
|
|
1165
|
+
readonly name: "id";
|
|
1166
|
+
readonly type: "bytes32";
|
|
1167
|
+
readonly internalType: "bytes32";
|
|
1168
|
+
}];
|
|
1169
|
+
readonly outputs: readonly [{
|
|
1170
|
+
readonly name: "";
|
|
1171
|
+
readonly type: "bool";
|
|
1172
|
+
readonly internalType: "bool";
|
|
1173
|
+
}];
|
|
1174
|
+
readonly stateMutability: "view";
|
|
1175
|
+
}, {
|
|
1176
|
+
readonly type: "function";
|
|
1177
|
+
readonly name: "isTriple";
|
|
1178
|
+
readonly inputs: readonly [{
|
|
1179
|
+
readonly name: "termId";
|
|
1180
|
+
readonly type: "bytes32";
|
|
1181
|
+
readonly internalType: "bytes32";
|
|
1182
|
+
}];
|
|
1183
|
+
readonly outputs: readonly [{
|
|
1184
|
+
readonly name: "";
|
|
1185
|
+
readonly type: "bool";
|
|
1186
|
+
readonly internalType: "bool";
|
|
1187
|
+
}];
|
|
1188
|
+
readonly stateMutability: "view";
|
|
1189
|
+
}, {
|
|
1190
|
+
readonly type: "function";
|
|
1191
|
+
readonly name: "lastActiveEpoch";
|
|
1192
|
+
readonly inputs: readonly [{
|
|
1193
|
+
readonly name: "user";
|
|
1194
|
+
readonly type: "address";
|
|
1195
|
+
readonly internalType: "address";
|
|
1196
|
+
}];
|
|
1197
|
+
readonly outputs: readonly [{
|
|
1198
|
+
readonly name: "epoch";
|
|
1199
|
+
readonly type: "uint256";
|
|
1200
|
+
readonly internalType: "uint256";
|
|
1201
|
+
}];
|
|
1202
|
+
readonly stateMutability: "view";
|
|
1203
|
+
}, {
|
|
1204
|
+
readonly type: "function";
|
|
1205
|
+
readonly name: "pause";
|
|
1206
|
+
readonly inputs: readonly [];
|
|
1207
|
+
readonly outputs: readonly [];
|
|
1208
|
+
readonly stateMutability: "nonpayable";
|
|
1209
|
+
}, {
|
|
1210
|
+
readonly type: "function";
|
|
1211
|
+
readonly name: "paused";
|
|
1212
|
+
readonly inputs: readonly [];
|
|
1213
|
+
readonly outputs: readonly [{
|
|
1214
|
+
readonly name: "";
|
|
1215
|
+
readonly type: "bool";
|
|
1216
|
+
readonly internalType: "bool";
|
|
1217
|
+
}];
|
|
1218
|
+
readonly stateMutability: "view";
|
|
1219
|
+
}, {
|
|
1220
|
+
readonly type: "function";
|
|
1221
|
+
readonly name: "personalUtilization";
|
|
1222
|
+
readonly inputs: readonly [{
|
|
1223
|
+
readonly name: "user";
|
|
1224
|
+
readonly type: "address";
|
|
1225
|
+
readonly internalType: "address";
|
|
1226
|
+
}, {
|
|
1227
|
+
readonly name: "epoch";
|
|
1228
|
+
readonly type: "uint256";
|
|
1229
|
+
readonly internalType: "uint256";
|
|
1230
|
+
}];
|
|
1231
|
+
readonly outputs: readonly [{
|
|
1232
|
+
readonly name: "utilizationAmount";
|
|
1233
|
+
readonly type: "int256";
|
|
1234
|
+
readonly internalType: "int256";
|
|
1235
|
+
}];
|
|
1236
|
+
readonly stateMutability: "view";
|
|
1237
|
+
}, {
|
|
1238
|
+
readonly type: "function";
|
|
1239
|
+
readonly name: "previewAtomCreate";
|
|
1240
|
+
readonly inputs: readonly [{
|
|
1241
|
+
readonly name: "termId";
|
|
1242
|
+
readonly type: "bytes32";
|
|
1243
|
+
readonly internalType: "bytes32";
|
|
1244
|
+
}, {
|
|
1245
|
+
readonly name: "curveId";
|
|
1246
|
+
readonly type: "uint256";
|
|
1247
|
+
readonly internalType: "uint256";
|
|
1248
|
+
}, {
|
|
1249
|
+
readonly name: "assets";
|
|
1250
|
+
readonly type: "uint256";
|
|
1251
|
+
readonly internalType: "uint256";
|
|
1252
|
+
}];
|
|
1253
|
+
readonly outputs: readonly [{
|
|
1254
|
+
readonly name: "shares";
|
|
1255
|
+
readonly type: "uint256";
|
|
1256
|
+
readonly internalType: "uint256";
|
|
1257
|
+
}, {
|
|
1258
|
+
readonly name: "assetsAfterFixedFees";
|
|
1259
|
+
readonly type: "uint256";
|
|
1260
|
+
readonly internalType: "uint256";
|
|
1261
|
+
}, {
|
|
1262
|
+
readonly name: "assetsAfterFees";
|
|
1263
|
+
readonly type: "uint256";
|
|
1264
|
+
readonly internalType: "uint256";
|
|
1265
|
+
}];
|
|
1266
|
+
readonly stateMutability: "view";
|
|
1267
|
+
}, {
|
|
1268
|
+
readonly type: "function";
|
|
1269
|
+
readonly name: "previewDeposit";
|
|
1270
|
+
readonly inputs: readonly [{
|
|
1271
|
+
readonly name: "termId";
|
|
1272
|
+
readonly type: "bytes32";
|
|
1273
|
+
readonly internalType: "bytes32";
|
|
1274
|
+
}, {
|
|
1275
|
+
readonly name: "curveId";
|
|
1276
|
+
readonly type: "uint256";
|
|
1277
|
+
readonly internalType: "uint256";
|
|
1278
|
+
}, {
|
|
1279
|
+
readonly name: "assets";
|
|
1280
|
+
readonly type: "uint256";
|
|
1281
|
+
readonly internalType: "uint256";
|
|
1282
|
+
}];
|
|
1283
|
+
readonly outputs: readonly [{
|
|
1284
|
+
readonly name: "shares";
|
|
1285
|
+
readonly type: "uint256";
|
|
1286
|
+
readonly internalType: "uint256";
|
|
1287
|
+
}, {
|
|
1288
|
+
readonly name: "assetsAfterFees";
|
|
1289
|
+
readonly type: "uint256";
|
|
1290
|
+
readonly internalType: "uint256";
|
|
1291
|
+
}];
|
|
1292
|
+
readonly stateMutability: "view";
|
|
1293
|
+
}, {
|
|
1294
|
+
readonly type: "function";
|
|
1295
|
+
readonly name: "previewRedeem";
|
|
1296
|
+
readonly inputs: readonly [{
|
|
1297
|
+
readonly name: "termId";
|
|
1298
|
+
readonly type: "bytes32";
|
|
1299
|
+
readonly internalType: "bytes32";
|
|
1300
|
+
}, {
|
|
1301
|
+
readonly name: "curveId";
|
|
1302
|
+
readonly type: "uint256";
|
|
1303
|
+
readonly internalType: "uint256";
|
|
1304
|
+
}, {
|
|
1305
|
+
readonly name: "assets";
|
|
1306
|
+
readonly type: "uint256";
|
|
1307
|
+
readonly internalType: "uint256";
|
|
1308
|
+
}];
|
|
1309
|
+
readonly outputs: readonly [{
|
|
1310
|
+
readonly name: "shares";
|
|
1311
|
+
readonly type: "uint256";
|
|
1312
|
+
readonly internalType: "uint256";
|
|
1313
|
+
}, {
|
|
1314
|
+
readonly name: "assetsAfterFees";
|
|
1315
|
+
readonly type: "uint256";
|
|
1316
|
+
readonly internalType: "uint256";
|
|
1317
|
+
}];
|
|
1318
|
+
readonly stateMutability: "view";
|
|
1319
|
+
}, {
|
|
1320
|
+
readonly type: "function";
|
|
1321
|
+
readonly name: "previewTripleCreate";
|
|
1322
|
+
readonly inputs: readonly [{
|
|
1323
|
+
readonly name: "termId";
|
|
1324
|
+
readonly type: "bytes32";
|
|
1325
|
+
readonly internalType: "bytes32";
|
|
1326
|
+
}, {
|
|
1327
|
+
readonly name: "curveId";
|
|
1328
|
+
readonly type: "uint256";
|
|
1329
|
+
readonly internalType: "uint256";
|
|
1330
|
+
}, {
|
|
1331
|
+
readonly name: "assets";
|
|
1332
|
+
readonly type: "uint256";
|
|
1333
|
+
readonly internalType: "uint256";
|
|
1334
|
+
}];
|
|
1335
|
+
readonly outputs: readonly [{
|
|
1336
|
+
readonly name: "shares";
|
|
1337
|
+
readonly type: "uint256";
|
|
1338
|
+
readonly internalType: "uint256";
|
|
1339
|
+
}, {
|
|
1340
|
+
readonly name: "assetsAfterFixedFees";
|
|
1341
|
+
readonly type: "uint256";
|
|
1342
|
+
readonly internalType: "uint256";
|
|
1343
|
+
}, {
|
|
1344
|
+
readonly name: "assetsAfterFees";
|
|
1345
|
+
readonly type: "uint256";
|
|
1346
|
+
readonly internalType: "uint256";
|
|
1347
|
+
}];
|
|
1348
|
+
readonly stateMutability: "view";
|
|
1349
|
+
}, {
|
|
1350
|
+
readonly type: "function";
|
|
1351
|
+
readonly name: "protocolFeeAmount";
|
|
1352
|
+
readonly inputs: readonly [{
|
|
1353
|
+
readonly name: "assets";
|
|
1354
|
+
readonly type: "uint256";
|
|
1355
|
+
readonly internalType: "uint256";
|
|
1356
|
+
}];
|
|
1357
|
+
readonly outputs: readonly [{
|
|
1358
|
+
readonly name: "";
|
|
1359
|
+
readonly type: "uint256";
|
|
1360
|
+
readonly internalType: "uint256";
|
|
1361
|
+
}];
|
|
1362
|
+
readonly stateMutability: "view";
|
|
1363
|
+
}, {
|
|
1364
|
+
readonly type: "function";
|
|
1365
|
+
readonly name: "redeem";
|
|
1366
|
+
readonly inputs: readonly [{
|
|
1367
|
+
readonly name: "receiver";
|
|
1368
|
+
readonly type: "address";
|
|
1369
|
+
readonly internalType: "address";
|
|
1370
|
+
}, {
|
|
1371
|
+
readonly name: "termId";
|
|
1372
|
+
readonly type: "bytes32";
|
|
1373
|
+
readonly internalType: "bytes32";
|
|
1374
|
+
}, {
|
|
1375
|
+
readonly name: "curveId";
|
|
1376
|
+
readonly type: "uint256";
|
|
1377
|
+
readonly internalType: "uint256";
|
|
1378
|
+
}, {
|
|
1379
|
+
readonly name: "shares";
|
|
1380
|
+
readonly type: "uint256";
|
|
1381
|
+
readonly internalType: "uint256";
|
|
1382
|
+
}, {
|
|
1383
|
+
readonly name: "minAssets";
|
|
1384
|
+
readonly type: "uint256";
|
|
1385
|
+
readonly internalType: "uint256";
|
|
1386
|
+
}];
|
|
1387
|
+
readonly outputs: readonly [{
|
|
1388
|
+
readonly name: "";
|
|
1389
|
+
readonly type: "uint256";
|
|
1390
|
+
readonly internalType: "uint256";
|
|
1391
|
+
}];
|
|
1392
|
+
readonly stateMutability: "nonpayable";
|
|
1393
|
+
}, {
|
|
1394
|
+
readonly type: "function";
|
|
1395
|
+
readonly name: "redeemBatch";
|
|
1396
|
+
readonly inputs: readonly [{
|
|
1397
|
+
readonly name: "receiver";
|
|
1398
|
+
readonly type: "address";
|
|
1399
|
+
readonly internalType: "address";
|
|
1400
|
+
}, {
|
|
1401
|
+
readonly name: "termIds";
|
|
1402
|
+
readonly type: "bytes32[]";
|
|
1403
|
+
readonly internalType: "bytes32[]";
|
|
1404
|
+
}, {
|
|
1405
|
+
readonly name: "curveIds";
|
|
1406
|
+
readonly type: "uint256[]";
|
|
1407
|
+
readonly internalType: "uint256[]";
|
|
1408
|
+
}, {
|
|
1409
|
+
readonly name: "shares";
|
|
1410
|
+
readonly type: "uint256[]";
|
|
1411
|
+
readonly internalType: "uint256[]";
|
|
1412
|
+
}, {
|
|
1413
|
+
readonly name: "minAssets";
|
|
1414
|
+
readonly type: "uint256[]";
|
|
1415
|
+
readonly internalType: "uint256[]";
|
|
1416
|
+
}];
|
|
1417
|
+
readonly outputs: readonly [{
|
|
1418
|
+
readonly name: "received";
|
|
1419
|
+
readonly type: "uint256[]";
|
|
1420
|
+
readonly internalType: "uint256[]";
|
|
1421
|
+
}];
|
|
1422
|
+
readonly stateMutability: "nonpayable";
|
|
1423
|
+
}, {
|
|
1424
|
+
readonly type: "function";
|
|
1425
|
+
readonly name: "renounceRole";
|
|
1426
|
+
readonly inputs: readonly [{
|
|
1427
|
+
readonly name: "role";
|
|
1428
|
+
readonly type: "bytes32";
|
|
1429
|
+
readonly internalType: "bytes32";
|
|
1430
|
+
}, {
|
|
1431
|
+
readonly name: "callerConfirmation";
|
|
1432
|
+
readonly type: "address";
|
|
1433
|
+
readonly internalType: "address";
|
|
1434
|
+
}];
|
|
1435
|
+
readonly outputs: readonly [];
|
|
1436
|
+
readonly stateMutability: "nonpayable";
|
|
1437
|
+
}, {
|
|
1438
|
+
readonly type: "function";
|
|
1439
|
+
readonly name: "revokeRole";
|
|
1440
|
+
readonly inputs: readonly [{
|
|
1441
|
+
readonly name: "role";
|
|
1442
|
+
readonly type: "bytes32";
|
|
1443
|
+
readonly internalType: "bytes32";
|
|
1444
|
+
}, {
|
|
1445
|
+
readonly name: "account";
|
|
1446
|
+
readonly type: "address";
|
|
1447
|
+
readonly internalType: "address";
|
|
1448
|
+
}];
|
|
1449
|
+
readonly outputs: readonly [];
|
|
1450
|
+
readonly stateMutability: "nonpayable";
|
|
1451
|
+
}, {
|
|
1452
|
+
readonly type: "function";
|
|
1453
|
+
readonly name: "setAtomConfig";
|
|
1454
|
+
readonly inputs: readonly [{
|
|
1455
|
+
readonly name: "_atomConfig";
|
|
1456
|
+
readonly type: "tuple";
|
|
1457
|
+
readonly internalType: "struct AtomConfig";
|
|
1458
|
+
readonly components: readonly [{
|
|
1459
|
+
readonly name: "atomCreationProtocolFee";
|
|
1460
|
+
readonly type: "uint256";
|
|
1461
|
+
readonly internalType: "uint256";
|
|
1462
|
+
}, {
|
|
1463
|
+
readonly name: "atomWalletDepositFee";
|
|
1464
|
+
readonly type: "uint256";
|
|
1465
|
+
readonly internalType: "uint256";
|
|
1466
|
+
}];
|
|
1467
|
+
}];
|
|
1468
|
+
readonly outputs: readonly [];
|
|
1469
|
+
readonly stateMutability: "nonpayable";
|
|
1470
|
+
}, {
|
|
1471
|
+
readonly type: "function";
|
|
1472
|
+
readonly name: "setBondingCurveConfig";
|
|
1473
|
+
readonly inputs: readonly [{
|
|
1474
|
+
readonly name: "_bondingCurveConfig";
|
|
1475
|
+
readonly type: "tuple";
|
|
1476
|
+
readonly internalType: "struct BondingCurveConfig";
|
|
1477
|
+
readonly components: readonly [{
|
|
1478
|
+
readonly name: "registry";
|
|
1479
|
+
readonly type: "address";
|
|
1480
|
+
readonly internalType: "address";
|
|
1481
|
+
}, {
|
|
1482
|
+
readonly name: "defaultCurveId";
|
|
1483
|
+
readonly type: "uint256";
|
|
1484
|
+
readonly internalType: "uint256";
|
|
1485
|
+
}];
|
|
1486
|
+
}];
|
|
1487
|
+
readonly outputs: readonly [];
|
|
1488
|
+
readonly stateMutability: "nonpayable";
|
|
1489
|
+
}, {
|
|
1490
|
+
readonly type: "function";
|
|
1491
|
+
readonly name: "setGeneralConfig";
|
|
1492
|
+
readonly inputs: readonly [{
|
|
1493
|
+
readonly name: "_generalConfig";
|
|
1494
|
+
readonly type: "tuple";
|
|
1495
|
+
readonly internalType: "struct GeneralConfig";
|
|
1496
|
+
readonly components: readonly [{
|
|
1497
|
+
readonly name: "admin";
|
|
1498
|
+
readonly type: "address";
|
|
1499
|
+
readonly internalType: "address";
|
|
1500
|
+
}, {
|
|
1501
|
+
readonly name: "protocolMultisig";
|
|
1502
|
+
readonly type: "address";
|
|
1503
|
+
readonly internalType: "address";
|
|
1504
|
+
}, {
|
|
1505
|
+
readonly name: "feeDenominator";
|
|
1506
|
+
readonly type: "uint256";
|
|
1507
|
+
readonly internalType: "uint256";
|
|
1508
|
+
}, {
|
|
1509
|
+
readonly name: "trustBonding";
|
|
1510
|
+
readonly type: "address";
|
|
1511
|
+
readonly internalType: "address";
|
|
1512
|
+
}, {
|
|
1513
|
+
readonly name: "minDeposit";
|
|
1514
|
+
readonly type: "uint256";
|
|
1515
|
+
readonly internalType: "uint256";
|
|
1516
|
+
}, {
|
|
1517
|
+
readonly name: "minShare";
|
|
1518
|
+
readonly type: "uint256";
|
|
1519
|
+
readonly internalType: "uint256";
|
|
1520
|
+
}, {
|
|
1521
|
+
readonly name: "atomDataMaxLength";
|
|
1522
|
+
readonly type: "uint256";
|
|
1523
|
+
readonly internalType: "uint256";
|
|
1524
|
+
}, {
|
|
1525
|
+
readonly name: "decimalPrecision";
|
|
1526
|
+
readonly type: "uint256";
|
|
1527
|
+
readonly internalType: "uint256";
|
|
1528
|
+
}];
|
|
1529
|
+
}];
|
|
1530
|
+
readonly outputs: readonly [];
|
|
1531
|
+
readonly stateMutability: "nonpayable";
|
|
1532
|
+
}, {
|
|
1533
|
+
readonly type: "function";
|
|
1534
|
+
readonly name: "setTermCount";
|
|
1535
|
+
readonly inputs: readonly [{
|
|
1536
|
+
readonly name: "_termCount";
|
|
1537
|
+
readonly type: "uint256";
|
|
1538
|
+
readonly internalType: "uint256";
|
|
1539
|
+
}];
|
|
1540
|
+
readonly outputs: readonly [];
|
|
1541
|
+
readonly stateMutability: "nonpayable";
|
|
1542
|
+
}, {
|
|
1543
|
+
readonly type: "function";
|
|
1544
|
+
readonly name: "setTripleConfig";
|
|
1545
|
+
readonly inputs: readonly [{
|
|
1546
|
+
readonly name: "_tripleConfig";
|
|
1547
|
+
readonly type: "tuple";
|
|
1548
|
+
readonly internalType: "struct TripleConfig";
|
|
1549
|
+
readonly components: readonly [{
|
|
1550
|
+
readonly name: "tripleCreationProtocolFee";
|
|
1551
|
+
readonly type: "uint256";
|
|
1552
|
+
readonly internalType: "uint256";
|
|
1553
|
+
}, {
|
|
1554
|
+
readonly name: "totalAtomDepositsOnTripleCreation";
|
|
1555
|
+
readonly type: "uint256";
|
|
1556
|
+
readonly internalType: "uint256";
|
|
1557
|
+
}, {
|
|
1558
|
+
readonly name: "atomDepositFractionForTriple";
|
|
1559
|
+
readonly type: "uint256";
|
|
1560
|
+
readonly internalType: "uint256";
|
|
1561
|
+
}];
|
|
1562
|
+
}];
|
|
1563
|
+
readonly outputs: readonly [];
|
|
1564
|
+
readonly stateMutability: "nonpayable";
|
|
1565
|
+
}, {
|
|
1566
|
+
readonly type: "function";
|
|
1567
|
+
readonly name: "setVaultFees";
|
|
1568
|
+
readonly inputs: readonly [{
|
|
1569
|
+
readonly name: "_vaultFees";
|
|
1570
|
+
readonly type: "tuple";
|
|
1571
|
+
readonly internalType: "struct VaultFees";
|
|
1572
|
+
readonly components: readonly [{
|
|
1573
|
+
readonly name: "entryFee";
|
|
1574
|
+
readonly type: "uint256";
|
|
1575
|
+
readonly internalType: "uint256";
|
|
1576
|
+
}, {
|
|
1577
|
+
readonly name: "exitFee";
|
|
1578
|
+
readonly type: "uint256";
|
|
1579
|
+
readonly internalType: "uint256";
|
|
1580
|
+
}, {
|
|
1581
|
+
readonly name: "protocolFee";
|
|
1582
|
+
readonly type: "uint256";
|
|
1583
|
+
readonly internalType: "uint256";
|
|
1584
|
+
}];
|
|
1585
|
+
}];
|
|
1586
|
+
readonly outputs: readonly [];
|
|
1587
|
+
readonly stateMutability: "nonpayable";
|
|
1588
|
+
}, {
|
|
1589
|
+
readonly type: "function";
|
|
1590
|
+
readonly name: "setWalletConfig";
|
|
1591
|
+
readonly inputs: readonly [{
|
|
1592
|
+
readonly name: "_walletConfig";
|
|
1593
|
+
readonly type: "tuple";
|
|
1594
|
+
readonly internalType: "struct WalletConfig";
|
|
1595
|
+
readonly components: readonly [{
|
|
1596
|
+
readonly name: "permit2";
|
|
1597
|
+
readonly type: "address";
|
|
1598
|
+
readonly internalType: "contract IPermit2";
|
|
1599
|
+
}, {
|
|
1600
|
+
readonly name: "entryPoint";
|
|
1601
|
+
readonly type: "address";
|
|
1602
|
+
readonly internalType: "address";
|
|
1603
|
+
}, {
|
|
1604
|
+
readonly name: "atomWarden";
|
|
1605
|
+
readonly type: "address";
|
|
1606
|
+
readonly internalType: "address";
|
|
1607
|
+
}, {
|
|
1608
|
+
readonly name: "atomWalletBeacon";
|
|
1609
|
+
readonly type: "address";
|
|
1610
|
+
readonly internalType: "address";
|
|
1611
|
+
}, {
|
|
1612
|
+
readonly name: "atomWalletFactory";
|
|
1613
|
+
readonly type: "address";
|
|
1614
|
+
readonly internalType: "address";
|
|
1615
|
+
}];
|
|
1616
|
+
}];
|
|
1617
|
+
readonly outputs: readonly [];
|
|
1618
|
+
readonly stateMutability: "nonpayable";
|
|
1619
|
+
}, {
|
|
1620
|
+
readonly type: "function";
|
|
1621
|
+
readonly name: "supportsInterface";
|
|
1622
|
+
readonly inputs: readonly [{
|
|
1623
|
+
readonly name: "interfaceId";
|
|
1624
|
+
readonly type: "bytes4";
|
|
1625
|
+
readonly internalType: "bytes4";
|
|
1626
|
+
}];
|
|
1627
|
+
readonly outputs: readonly [{
|
|
1628
|
+
readonly name: "";
|
|
1629
|
+
readonly type: "bool";
|
|
1630
|
+
readonly internalType: "bool";
|
|
1631
|
+
}];
|
|
1632
|
+
readonly stateMutability: "view";
|
|
1633
|
+
}, {
|
|
1634
|
+
readonly type: "function";
|
|
1635
|
+
readonly name: "totalTermsCreated";
|
|
1636
|
+
readonly inputs: readonly [];
|
|
1637
|
+
readonly outputs: readonly [{
|
|
1638
|
+
readonly name: "";
|
|
1639
|
+
readonly type: "uint256";
|
|
1640
|
+
readonly internalType: "uint256";
|
|
1641
|
+
}];
|
|
1642
|
+
readonly stateMutability: "view";
|
|
1643
|
+
}, {
|
|
1644
|
+
readonly type: "function";
|
|
1645
|
+
readonly name: "totalUtilization";
|
|
1646
|
+
readonly inputs: readonly [{
|
|
1647
|
+
readonly name: "epoch";
|
|
1648
|
+
readonly type: "uint256";
|
|
1649
|
+
readonly internalType: "uint256";
|
|
1650
|
+
}];
|
|
1651
|
+
readonly outputs: readonly [{
|
|
1652
|
+
readonly name: "utilizationAmount";
|
|
1653
|
+
readonly type: "int256";
|
|
1654
|
+
readonly internalType: "int256";
|
|
1655
|
+
}];
|
|
1656
|
+
readonly stateMutability: "view";
|
|
1657
|
+
}, {
|
|
1658
|
+
readonly type: "function";
|
|
1659
|
+
readonly name: "triple";
|
|
1660
|
+
readonly inputs: readonly [{
|
|
1661
|
+
readonly name: "tripleId";
|
|
1662
|
+
readonly type: "bytes32";
|
|
1663
|
+
readonly internalType: "bytes32";
|
|
1664
|
+
}];
|
|
1665
|
+
readonly outputs: readonly [{
|
|
1666
|
+
readonly name: "";
|
|
1667
|
+
readonly type: "bytes32";
|
|
1668
|
+
readonly internalType: "bytes32";
|
|
1669
|
+
}, {
|
|
1670
|
+
readonly name: "";
|
|
1671
|
+
readonly type: "bytes32";
|
|
1672
|
+
readonly internalType: "bytes32";
|
|
1673
|
+
}, {
|
|
1674
|
+
readonly name: "";
|
|
1675
|
+
readonly type: "bytes32";
|
|
1676
|
+
readonly internalType: "bytes32";
|
|
1677
|
+
}];
|
|
1678
|
+
readonly stateMutability: "view";
|
|
1679
|
+
}, {
|
|
1680
|
+
readonly type: "function";
|
|
1681
|
+
readonly name: "tripleConfig";
|
|
1682
|
+
readonly inputs: readonly [];
|
|
1683
|
+
readonly outputs: readonly [{
|
|
1684
|
+
readonly name: "tripleCreationProtocolFee";
|
|
1685
|
+
readonly type: "uint256";
|
|
1686
|
+
readonly internalType: "uint256";
|
|
1687
|
+
}, {
|
|
1688
|
+
readonly name: "totalAtomDepositsOnTripleCreation";
|
|
1689
|
+
readonly type: "uint256";
|
|
1690
|
+
readonly internalType: "uint256";
|
|
1691
|
+
}, {
|
|
1692
|
+
readonly name: "atomDepositFractionForTriple";
|
|
1693
|
+
readonly type: "uint256";
|
|
1694
|
+
readonly internalType: "uint256";
|
|
1695
|
+
}];
|
|
1696
|
+
readonly stateMutability: "view";
|
|
1697
|
+
}, {
|
|
1698
|
+
readonly type: "function";
|
|
1699
|
+
readonly name: "unpause";
|
|
1700
|
+
readonly inputs: readonly [];
|
|
1701
|
+
readonly outputs: readonly [];
|
|
1702
|
+
readonly stateMutability: "nonpayable";
|
|
1703
|
+
}, {
|
|
1704
|
+
readonly type: "function";
|
|
1705
|
+
readonly name: "vaultFees";
|
|
1706
|
+
readonly inputs: readonly [];
|
|
1707
|
+
readonly outputs: readonly [{
|
|
1708
|
+
readonly name: "entryFee";
|
|
1709
|
+
readonly type: "uint256";
|
|
1710
|
+
readonly internalType: "uint256";
|
|
1711
|
+
}, {
|
|
1712
|
+
readonly name: "exitFee";
|
|
1713
|
+
readonly type: "uint256";
|
|
1714
|
+
readonly internalType: "uint256";
|
|
1715
|
+
}, {
|
|
1716
|
+
readonly name: "protocolFee";
|
|
1717
|
+
readonly type: "uint256";
|
|
1718
|
+
readonly internalType: "uint256";
|
|
1719
|
+
}];
|
|
1720
|
+
readonly stateMutability: "view";
|
|
1721
|
+
}, {
|
|
1722
|
+
readonly type: "function";
|
|
1723
|
+
readonly name: "walletConfig";
|
|
1724
|
+
readonly inputs: readonly [];
|
|
1725
|
+
readonly outputs: readonly [{
|
|
1726
|
+
readonly name: "permit2";
|
|
1727
|
+
readonly type: "address";
|
|
1728
|
+
readonly internalType: "contract IPermit2";
|
|
1729
|
+
}, {
|
|
1730
|
+
readonly name: "entryPoint";
|
|
1731
|
+
readonly type: "address";
|
|
1732
|
+
readonly internalType: "address";
|
|
1733
|
+
}, {
|
|
1734
|
+
readonly name: "atomWarden";
|
|
1735
|
+
readonly type: "address";
|
|
1736
|
+
readonly internalType: "address";
|
|
1737
|
+
}, {
|
|
1738
|
+
readonly name: "atomWalletBeacon";
|
|
1739
|
+
readonly type: "address";
|
|
1740
|
+
readonly internalType: "address";
|
|
1741
|
+
}, {
|
|
1742
|
+
readonly name: "atomWalletFactory";
|
|
1743
|
+
readonly type: "address";
|
|
1744
|
+
readonly internalType: "address";
|
|
1745
|
+
}];
|
|
1746
|
+
readonly stateMutability: "view";
|
|
1747
|
+
}, {
|
|
1748
|
+
readonly type: "event";
|
|
1749
|
+
readonly name: "ApprovalTypeUpdated";
|
|
1750
|
+
readonly inputs: readonly [{
|
|
1751
|
+
readonly name: "sender";
|
|
1752
|
+
readonly type: "address";
|
|
1753
|
+
readonly indexed: true;
|
|
1754
|
+
readonly internalType: "address";
|
|
1755
|
+
}, {
|
|
1756
|
+
readonly name: "receiver";
|
|
1757
|
+
readonly type: "address";
|
|
1758
|
+
readonly indexed: true;
|
|
1759
|
+
readonly internalType: "address";
|
|
1760
|
+
}, {
|
|
1761
|
+
readonly name: "approvalType";
|
|
1762
|
+
readonly type: "uint8";
|
|
1763
|
+
readonly indexed: false;
|
|
1764
|
+
readonly internalType: "enum IMultiVault.ApprovalTypes";
|
|
1765
|
+
}];
|
|
1766
|
+
readonly anonymous: false;
|
|
1767
|
+
}, {
|
|
1768
|
+
readonly type: "event";
|
|
1769
|
+
readonly name: "AtomCreated";
|
|
1770
|
+
readonly inputs: readonly [{
|
|
1771
|
+
readonly name: "creator";
|
|
1772
|
+
readonly type: "address";
|
|
1773
|
+
readonly indexed: true;
|
|
1774
|
+
readonly internalType: "address";
|
|
1775
|
+
}, {
|
|
1776
|
+
readonly name: "termId";
|
|
1777
|
+
readonly type: "bytes32";
|
|
1778
|
+
readonly indexed: true;
|
|
1779
|
+
readonly internalType: "bytes32";
|
|
1780
|
+
}, {
|
|
1781
|
+
readonly name: "atomData";
|
|
1782
|
+
readonly type: "bytes";
|
|
1783
|
+
readonly indexed: false;
|
|
1784
|
+
readonly internalType: "bytes";
|
|
1785
|
+
}, {
|
|
1786
|
+
readonly name: "atomWallet";
|
|
1787
|
+
readonly type: "address";
|
|
1788
|
+
readonly indexed: false;
|
|
1789
|
+
readonly internalType: "address";
|
|
1790
|
+
}];
|
|
1791
|
+
readonly anonymous: false;
|
|
1792
|
+
}, {
|
|
1793
|
+
readonly type: "event";
|
|
1794
|
+
readonly name: "AtomDepositFractionDeposited";
|
|
1795
|
+
readonly inputs: readonly [{
|
|
1796
|
+
readonly name: "termId";
|
|
1797
|
+
readonly type: "bytes32";
|
|
1798
|
+
readonly indexed: true;
|
|
1799
|
+
readonly internalType: "bytes32";
|
|
1800
|
+
}, {
|
|
1801
|
+
readonly name: "sender";
|
|
1802
|
+
readonly type: "address";
|
|
1803
|
+
readonly indexed: true;
|
|
1804
|
+
readonly internalType: "address";
|
|
1805
|
+
}, {
|
|
1806
|
+
readonly name: "amount";
|
|
1807
|
+
readonly type: "uint256";
|
|
1808
|
+
readonly indexed: false;
|
|
1809
|
+
readonly internalType: "uint256";
|
|
1810
|
+
}];
|
|
1811
|
+
readonly anonymous: false;
|
|
1812
|
+
}, {
|
|
1813
|
+
readonly type: "event";
|
|
1814
|
+
readonly name: "AtomWalletDepositFeeCollected";
|
|
1815
|
+
readonly inputs: readonly [{
|
|
1816
|
+
readonly name: "termId";
|
|
1817
|
+
readonly type: "bytes32";
|
|
1818
|
+
readonly indexed: true;
|
|
1819
|
+
readonly internalType: "bytes32";
|
|
1820
|
+
}, {
|
|
1821
|
+
readonly name: "sender";
|
|
1822
|
+
readonly type: "address";
|
|
1823
|
+
readonly indexed: true;
|
|
1824
|
+
readonly internalType: "address";
|
|
1825
|
+
}, {
|
|
1826
|
+
readonly name: "amount";
|
|
1827
|
+
readonly type: "uint256";
|
|
1828
|
+
readonly indexed: false;
|
|
1829
|
+
readonly internalType: "uint256";
|
|
1830
|
+
}];
|
|
1831
|
+
readonly anonymous: false;
|
|
1832
|
+
}, {
|
|
1833
|
+
readonly type: "event";
|
|
1834
|
+
readonly name: "AtomWalletDepositFeesClaimed";
|
|
1835
|
+
readonly inputs: readonly [{
|
|
1836
|
+
readonly name: "termId";
|
|
1837
|
+
readonly type: "bytes32";
|
|
1838
|
+
readonly indexed: true;
|
|
1839
|
+
readonly internalType: "bytes32";
|
|
1840
|
+
}, {
|
|
1841
|
+
readonly name: "atomWalletOwner";
|
|
1842
|
+
readonly type: "address";
|
|
1843
|
+
readonly indexed: true;
|
|
1844
|
+
readonly internalType: "address";
|
|
1845
|
+
}, {
|
|
1846
|
+
readonly name: "feesClaimed";
|
|
1847
|
+
readonly type: "uint256";
|
|
1848
|
+
readonly indexed: true;
|
|
1849
|
+
readonly internalType: "uint256";
|
|
1850
|
+
}];
|
|
1851
|
+
readonly anonymous: false;
|
|
1852
|
+
}, {
|
|
1853
|
+
readonly type: "event";
|
|
1854
|
+
readonly name: "ConfigSynced";
|
|
1855
|
+
readonly inputs: readonly [{
|
|
1856
|
+
readonly name: "caller";
|
|
1857
|
+
readonly type: "address";
|
|
1858
|
+
readonly indexed: true;
|
|
1859
|
+
readonly internalType: "address";
|
|
1860
|
+
}];
|
|
1861
|
+
readonly anonymous: false;
|
|
1862
|
+
}, {
|
|
1863
|
+
readonly type: "event";
|
|
1864
|
+
readonly name: "Deposited";
|
|
1865
|
+
readonly inputs: readonly [{
|
|
1866
|
+
readonly name: "sender";
|
|
1867
|
+
readonly type: "address";
|
|
1868
|
+
readonly indexed: true;
|
|
1869
|
+
readonly internalType: "address";
|
|
1870
|
+
}, {
|
|
1871
|
+
readonly name: "receiver";
|
|
1872
|
+
readonly type: "address";
|
|
1873
|
+
readonly indexed: true;
|
|
1874
|
+
readonly internalType: "address";
|
|
1875
|
+
}, {
|
|
1876
|
+
readonly name: "termId";
|
|
1877
|
+
readonly type: "bytes32";
|
|
1878
|
+
readonly indexed: true;
|
|
1879
|
+
readonly internalType: "bytes32";
|
|
1880
|
+
}, {
|
|
1881
|
+
readonly name: "curveId";
|
|
1882
|
+
readonly type: "uint256";
|
|
1883
|
+
readonly indexed: false;
|
|
1884
|
+
readonly internalType: "uint256";
|
|
1885
|
+
}, {
|
|
1886
|
+
readonly name: "assets";
|
|
1887
|
+
readonly type: "uint256";
|
|
1888
|
+
readonly indexed: false;
|
|
1889
|
+
readonly internalType: "uint256";
|
|
1890
|
+
}, {
|
|
1891
|
+
readonly name: "assetsAfterFees";
|
|
1892
|
+
readonly type: "uint256";
|
|
1893
|
+
readonly indexed: false;
|
|
1894
|
+
readonly internalType: "uint256";
|
|
1895
|
+
}, {
|
|
1896
|
+
readonly name: "shares";
|
|
1897
|
+
readonly type: "uint256";
|
|
1898
|
+
readonly indexed: false;
|
|
1899
|
+
readonly internalType: "uint256";
|
|
1900
|
+
}, {
|
|
1901
|
+
readonly name: "totalShares";
|
|
1902
|
+
readonly type: "uint256";
|
|
1903
|
+
readonly indexed: false;
|
|
1904
|
+
readonly internalType: "uint256";
|
|
1905
|
+
}, {
|
|
1906
|
+
readonly name: "vaultType";
|
|
1907
|
+
readonly type: "uint8";
|
|
1908
|
+
readonly indexed: false;
|
|
1909
|
+
readonly internalType: "enum IMultiVault.VaultType";
|
|
1910
|
+
}];
|
|
1911
|
+
readonly anonymous: false;
|
|
1912
|
+
}, {
|
|
1913
|
+
readonly type: "event";
|
|
1914
|
+
readonly name: "EntryFeeCollected";
|
|
1915
|
+
readonly inputs: readonly [{
|
|
1916
|
+
readonly name: "termId";
|
|
1917
|
+
readonly type: "bytes32";
|
|
1918
|
+
readonly indexed: true;
|
|
1919
|
+
readonly internalType: "bytes32";
|
|
1920
|
+
}, {
|
|
1921
|
+
readonly name: "curveId";
|
|
1922
|
+
readonly type: "uint256";
|
|
1923
|
+
readonly indexed: true;
|
|
1924
|
+
readonly internalType: "uint256";
|
|
1925
|
+
}, {
|
|
1926
|
+
readonly name: "sender";
|
|
1927
|
+
readonly type: "address";
|
|
1928
|
+
readonly indexed: true;
|
|
1929
|
+
readonly internalType: "address";
|
|
1930
|
+
}, {
|
|
1931
|
+
readonly name: "amount";
|
|
1932
|
+
readonly type: "uint256";
|
|
1933
|
+
readonly indexed: false;
|
|
1934
|
+
readonly internalType: "uint256";
|
|
1935
|
+
}];
|
|
1936
|
+
readonly anonymous: false;
|
|
1937
|
+
}, {
|
|
1938
|
+
readonly type: "event";
|
|
1939
|
+
readonly name: "ExitFeeCollected";
|
|
1940
|
+
readonly inputs: readonly [{
|
|
1941
|
+
readonly name: "termId";
|
|
1942
|
+
readonly type: "bytes32";
|
|
1943
|
+
readonly indexed: true;
|
|
1944
|
+
readonly internalType: "bytes32";
|
|
1945
|
+
}, {
|
|
1946
|
+
readonly name: "curveId";
|
|
1947
|
+
readonly type: "uint256";
|
|
1948
|
+
readonly indexed: true;
|
|
1949
|
+
readonly internalType: "uint256";
|
|
1950
|
+
}, {
|
|
1951
|
+
readonly name: "sender";
|
|
1952
|
+
readonly type: "address";
|
|
1953
|
+
readonly indexed: true;
|
|
1954
|
+
readonly internalType: "address";
|
|
1955
|
+
}, {
|
|
1956
|
+
readonly name: "amount";
|
|
1957
|
+
readonly type: "uint256";
|
|
1958
|
+
readonly indexed: false;
|
|
1959
|
+
readonly internalType: "uint256";
|
|
1960
|
+
}];
|
|
1961
|
+
readonly anonymous: false;
|
|
1962
|
+
}, {
|
|
1963
|
+
readonly type: "event";
|
|
1964
|
+
readonly name: "Initialized";
|
|
1965
|
+
readonly inputs: readonly [{
|
|
1966
|
+
readonly name: "version";
|
|
1967
|
+
readonly type: "uint64";
|
|
1968
|
+
readonly indexed: false;
|
|
1969
|
+
readonly internalType: "uint64";
|
|
1970
|
+
}];
|
|
1971
|
+
readonly anonymous: false;
|
|
1972
|
+
}, {
|
|
1973
|
+
readonly type: "event";
|
|
1974
|
+
readonly name: "Paused";
|
|
1975
|
+
readonly inputs: readonly [{
|
|
1976
|
+
readonly name: "account";
|
|
1977
|
+
readonly type: "address";
|
|
1978
|
+
readonly indexed: false;
|
|
1979
|
+
readonly internalType: "address";
|
|
1980
|
+
}];
|
|
1981
|
+
readonly anonymous: false;
|
|
1982
|
+
}, {
|
|
1983
|
+
readonly type: "event";
|
|
1984
|
+
readonly name: "PersonalUtilizationAdded";
|
|
1985
|
+
readonly inputs: readonly [{
|
|
1986
|
+
readonly name: "user";
|
|
1987
|
+
readonly type: "address";
|
|
1988
|
+
readonly indexed: true;
|
|
1989
|
+
readonly internalType: "address";
|
|
1990
|
+
}, {
|
|
1991
|
+
readonly name: "epoch";
|
|
1992
|
+
readonly type: "uint256";
|
|
1993
|
+
readonly indexed: true;
|
|
1994
|
+
readonly internalType: "uint256";
|
|
1995
|
+
}, {
|
|
1996
|
+
readonly name: "valueAdded";
|
|
1997
|
+
readonly type: "int256";
|
|
1998
|
+
readonly indexed: true;
|
|
1999
|
+
readonly internalType: "int256";
|
|
2000
|
+
}, {
|
|
2001
|
+
readonly name: "personalUtilization";
|
|
2002
|
+
readonly type: "int256";
|
|
2003
|
+
readonly indexed: false;
|
|
2004
|
+
readonly internalType: "int256";
|
|
2005
|
+
}];
|
|
2006
|
+
readonly anonymous: false;
|
|
2007
|
+
}, {
|
|
2008
|
+
readonly type: "event";
|
|
2009
|
+
readonly name: "PersonalUtilizationRemoved";
|
|
2010
|
+
readonly inputs: readonly [{
|
|
2011
|
+
readonly name: "user";
|
|
2012
|
+
readonly type: "address";
|
|
2013
|
+
readonly indexed: true;
|
|
2014
|
+
readonly internalType: "address";
|
|
2015
|
+
}, {
|
|
2016
|
+
readonly name: "epoch";
|
|
2017
|
+
readonly type: "uint256";
|
|
2018
|
+
readonly indexed: true;
|
|
2019
|
+
readonly internalType: "uint256";
|
|
2020
|
+
}, {
|
|
2021
|
+
readonly name: "valueRemoved";
|
|
2022
|
+
readonly type: "int256";
|
|
2023
|
+
readonly indexed: true;
|
|
2024
|
+
readonly internalType: "int256";
|
|
2025
|
+
}, {
|
|
2026
|
+
readonly name: "personalUtilization";
|
|
2027
|
+
readonly type: "int256";
|
|
2028
|
+
readonly indexed: false;
|
|
2029
|
+
readonly internalType: "int256";
|
|
2030
|
+
}];
|
|
2031
|
+
readonly anonymous: false;
|
|
2032
|
+
}, {
|
|
2033
|
+
readonly type: "event";
|
|
2034
|
+
readonly name: "ProtocolFeeAccrued";
|
|
2035
|
+
readonly inputs: readonly [{
|
|
2036
|
+
readonly name: "epoch";
|
|
2037
|
+
readonly type: "uint256";
|
|
2038
|
+
readonly indexed: true;
|
|
2039
|
+
readonly internalType: "uint256";
|
|
2040
|
+
}, {
|
|
2041
|
+
readonly name: "amount";
|
|
2042
|
+
readonly type: "uint256";
|
|
2043
|
+
readonly indexed: false;
|
|
2044
|
+
readonly internalType: "uint256";
|
|
2045
|
+
}];
|
|
2046
|
+
readonly anonymous: false;
|
|
2047
|
+
}, {
|
|
2048
|
+
readonly type: "event";
|
|
2049
|
+
readonly name: "ProtocolFeeTransferred";
|
|
2050
|
+
readonly inputs: readonly [{
|
|
2051
|
+
readonly name: "epoch";
|
|
2052
|
+
readonly type: "uint256";
|
|
2053
|
+
readonly indexed: true;
|
|
2054
|
+
readonly internalType: "uint256";
|
|
2055
|
+
}, {
|
|
2056
|
+
readonly name: "destination";
|
|
2057
|
+
readonly type: "address";
|
|
2058
|
+
readonly indexed: true;
|
|
2059
|
+
readonly internalType: "address";
|
|
2060
|
+
}, {
|
|
2061
|
+
readonly name: "amount";
|
|
2062
|
+
readonly type: "uint256";
|
|
2063
|
+
readonly indexed: false;
|
|
2064
|
+
readonly internalType: "uint256";
|
|
2065
|
+
}];
|
|
2066
|
+
readonly anonymous: false;
|
|
2067
|
+
}, {
|
|
2068
|
+
readonly type: "event";
|
|
2069
|
+
readonly name: "Redeemed";
|
|
2070
|
+
readonly inputs: readonly [{
|
|
2071
|
+
readonly name: "sender";
|
|
2072
|
+
readonly type: "address";
|
|
2073
|
+
readonly indexed: true;
|
|
2074
|
+
readonly internalType: "address";
|
|
2075
|
+
}, {
|
|
2076
|
+
readonly name: "receiver";
|
|
2077
|
+
readonly type: "address";
|
|
2078
|
+
readonly indexed: true;
|
|
2079
|
+
readonly internalType: "address";
|
|
2080
|
+
}, {
|
|
2081
|
+
readonly name: "termId";
|
|
2082
|
+
readonly type: "bytes32";
|
|
2083
|
+
readonly indexed: true;
|
|
2084
|
+
readonly internalType: "bytes32";
|
|
2085
|
+
}, {
|
|
2086
|
+
readonly name: "curveId";
|
|
2087
|
+
readonly type: "uint256";
|
|
2088
|
+
readonly indexed: false;
|
|
2089
|
+
readonly internalType: "uint256";
|
|
2090
|
+
}, {
|
|
2091
|
+
readonly name: "shares";
|
|
2092
|
+
readonly type: "uint256";
|
|
2093
|
+
readonly indexed: false;
|
|
2094
|
+
readonly internalType: "uint256";
|
|
2095
|
+
}, {
|
|
2096
|
+
readonly name: "totalShares";
|
|
2097
|
+
readonly type: "uint256";
|
|
2098
|
+
readonly indexed: false;
|
|
2099
|
+
readonly internalType: "uint256";
|
|
2100
|
+
}, {
|
|
2101
|
+
readonly name: "assets";
|
|
2102
|
+
readonly type: "uint256";
|
|
2103
|
+
readonly indexed: false;
|
|
2104
|
+
readonly internalType: "uint256";
|
|
2105
|
+
}, {
|
|
2106
|
+
readonly name: "fees";
|
|
2107
|
+
readonly type: "uint256";
|
|
2108
|
+
readonly indexed: false;
|
|
2109
|
+
readonly internalType: "uint256";
|
|
2110
|
+
}, {
|
|
2111
|
+
readonly name: "vaultType";
|
|
2112
|
+
readonly type: "uint8";
|
|
2113
|
+
readonly indexed: false;
|
|
2114
|
+
readonly internalType: "enum IMultiVault.VaultType";
|
|
2115
|
+
}];
|
|
2116
|
+
readonly anonymous: false;
|
|
2117
|
+
}, {
|
|
2118
|
+
readonly type: "event";
|
|
2119
|
+
readonly name: "RoleAdminChanged";
|
|
2120
|
+
readonly inputs: readonly [{
|
|
2121
|
+
readonly name: "role";
|
|
2122
|
+
readonly type: "bytes32";
|
|
2123
|
+
readonly indexed: true;
|
|
2124
|
+
readonly internalType: "bytes32";
|
|
2125
|
+
}, {
|
|
2126
|
+
readonly name: "previousAdminRole";
|
|
2127
|
+
readonly type: "bytes32";
|
|
2128
|
+
readonly indexed: true;
|
|
2129
|
+
readonly internalType: "bytes32";
|
|
2130
|
+
}, {
|
|
2131
|
+
readonly name: "newAdminRole";
|
|
2132
|
+
readonly type: "bytes32";
|
|
2133
|
+
readonly indexed: true;
|
|
2134
|
+
readonly internalType: "bytes32";
|
|
2135
|
+
}];
|
|
2136
|
+
readonly anonymous: false;
|
|
2137
|
+
}, {
|
|
2138
|
+
readonly type: "event";
|
|
2139
|
+
readonly name: "RoleGranted";
|
|
2140
|
+
readonly inputs: readonly [{
|
|
2141
|
+
readonly name: "role";
|
|
2142
|
+
readonly type: "bytes32";
|
|
2143
|
+
readonly indexed: true;
|
|
2144
|
+
readonly internalType: "bytes32";
|
|
2145
|
+
}, {
|
|
2146
|
+
readonly name: "account";
|
|
2147
|
+
readonly type: "address";
|
|
2148
|
+
readonly indexed: true;
|
|
2149
|
+
readonly internalType: "address";
|
|
2150
|
+
}, {
|
|
2151
|
+
readonly name: "sender";
|
|
2152
|
+
readonly type: "address";
|
|
2153
|
+
readonly indexed: true;
|
|
2154
|
+
readonly internalType: "address";
|
|
2155
|
+
}];
|
|
2156
|
+
readonly anonymous: false;
|
|
2157
|
+
}, {
|
|
2158
|
+
readonly type: "event";
|
|
2159
|
+
readonly name: "RoleRevoked";
|
|
2160
|
+
readonly inputs: readonly [{
|
|
2161
|
+
readonly name: "role";
|
|
2162
|
+
readonly type: "bytes32";
|
|
2163
|
+
readonly indexed: true;
|
|
2164
|
+
readonly internalType: "bytes32";
|
|
2165
|
+
}, {
|
|
2166
|
+
readonly name: "account";
|
|
2167
|
+
readonly type: "address";
|
|
2168
|
+
readonly indexed: true;
|
|
2169
|
+
readonly internalType: "address";
|
|
2170
|
+
}, {
|
|
2171
|
+
readonly name: "sender";
|
|
2172
|
+
readonly type: "address";
|
|
2173
|
+
readonly indexed: true;
|
|
2174
|
+
readonly internalType: "address";
|
|
2175
|
+
}];
|
|
2176
|
+
readonly anonymous: false;
|
|
2177
|
+
}, {
|
|
2178
|
+
readonly type: "event";
|
|
2179
|
+
readonly name: "SharePriceChanged";
|
|
2180
|
+
readonly inputs: readonly [{
|
|
2181
|
+
readonly name: "termId";
|
|
2182
|
+
readonly type: "bytes32";
|
|
2183
|
+
readonly indexed: true;
|
|
2184
|
+
readonly internalType: "bytes32";
|
|
2185
|
+
}, {
|
|
2186
|
+
readonly name: "curveId";
|
|
2187
|
+
readonly type: "uint256";
|
|
2188
|
+
readonly indexed: true;
|
|
2189
|
+
readonly internalType: "uint256";
|
|
2190
|
+
}, {
|
|
2191
|
+
readonly name: "sharePrice";
|
|
2192
|
+
readonly type: "uint256";
|
|
2193
|
+
readonly indexed: false;
|
|
2194
|
+
readonly internalType: "uint256";
|
|
2195
|
+
}, {
|
|
2196
|
+
readonly name: "totalAssets";
|
|
2197
|
+
readonly type: "uint256";
|
|
2198
|
+
readonly indexed: false;
|
|
2199
|
+
readonly internalType: "uint256";
|
|
2200
|
+
}, {
|
|
2201
|
+
readonly name: "totalShares";
|
|
2202
|
+
readonly type: "uint256";
|
|
2203
|
+
readonly indexed: false;
|
|
2204
|
+
readonly internalType: "uint256";
|
|
2205
|
+
}, {
|
|
2206
|
+
readonly name: "vaultType";
|
|
2207
|
+
readonly type: "uint8";
|
|
2208
|
+
readonly indexed: false;
|
|
2209
|
+
readonly internalType: "enum IMultiVault.VaultType";
|
|
2210
|
+
}];
|
|
2211
|
+
readonly anonymous: false;
|
|
2212
|
+
}, {
|
|
2213
|
+
readonly type: "event";
|
|
2214
|
+
readonly name: "SharesPullApproval";
|
|
2215
|
+
readonly inputs: readonly [{
|
|
2216
|
+
readonly name: "accountFrom";
|
|
2217
|
+
readonly type: "address";
|
|
2218
|
+
readonly indexed: true;
|
|
2219
|
+
readonly internalType: "address";
|
|
2220
|
+
}, {
|
|
2221
|
+
readonly name: "accountTo";
|
|
2222
|
+
readonly type: "address";
|
|
2223
|
+
readonly indexed: true;
|
|
2224
|
+
readonly internalType: "address";
|
|
2225
|
+
}, {
|
|
2226
|
+
readonly name: "status";
|
|
2227
|
+
readonly type: "bool";
|
|
2228
|
+
readonly indexed: false;
|
|
2229
|
+
readonly internalType: "bool";
|
|
2230
|
+
}];
|
|
2231
|
+
readonly anonymous: false;
|
|
2232
|
+
}, {
|
|
2233
|
+
readonly type: "event";
|
|
2234
|
+
readonly name: "TermCountSet";
|
|
2235
|
+
readonly inputs: readonly [{
|
|
2236
|
+
readonly name: "termCount";
|
|
2237
|
+
readonly type: "uint256";
|
|
2238
|
+
readonly indexed: false;
|
|
2239
|
+
readonly internalType: "uint256";
|
|
2240
|
+
}];
|
|
2241
|
+
readonly anonymous: false;
|
|
2242
|
+
}, {
|
|
2243
|
+
readonly type: "event";
|
|
2244
|
+
readonly name: "TokensRecovered";
|
|
2245
|
+
readonly inputs: readonly [{
|
|
2246
|
+
readonly name: "token";
|
|
2247
|
+
readonly type: "address";
|
|
2248
|
+
readonly indexed: true;
|
|
2249
|
+
readonly internalType: "address";
|
|
2250
|
+
}, {
|
|
2251
|
+
readonly name: "recipient";
|
|
2252
|
+
readonly type: "address";
|
|
2253
|
+
readonly indexed: true;
|
|
2254
|
+
readonly internalType: "address";
|
|
2255
|
+
}, {
|
|
2256
|
+
readonly name: "amount";
|
|
2257
|
+
readonly type: "uint256";
|
|
2258
|
+
readonly indexed: true;
|
|
2259
|
+
readonly internalType: "uint256";
|
|
2260
|
+
}];
|
|
2261
|
+
readonly anonymous: false;
|
|
2262
|
+
}, {
|
|
2263
|
+
readonly type: "event";
|
|
2264
|
+
readonly name: "TotalUtilizationAdded";
|
|
2265
|
+
readonly inputs: readonly [{
|
|
2266
|
+
readonly name: "epoch";
|
|
2267
|
+
readonly type: "uint256";
|
|
2268
|
+
readonly indexed: true;
|
|
2269
|
+
readonly internalType: "uint256";
|
|
2270
|
+
}, {
|
|
2271
|
+
readonly name: "valueAdded";
|
|
2272
|
+
readonly type: "int256";
|
|
2273
|
+
readonly indexed: true;
|
|
2274
|
+
readonly internalType: "int256";
|
|
2275
|
+
}, {
|
|
2276
|
+
readonly name: "totalUtilization";
|
|
2277
|
+
readonly type: "int256";
|
|
2278
|
+
readonly indexed: true;
|
|
2279
|
+
readonly internalType: "int256";
|
|
2280
|
+
}];
|
|
2281
|
+
readonly anonymous: false;
|
|
2282
|
+
}, {
|
|
2283
|
+
readonly type: "event";
|
|
2284
|
+
readonly name: "TotalUtilizationRemoved";
|
|
2285
|
+
readonly inputs: readonly [{
|
|
2286
|
+
readonly name: "epoch";
|
|
2287
|
+
readonly type: "uint256";
|
|
2288
|
+
readonly indexed: true;
|
|
2289
|
+
readonly internalType: "uint256";
|
|
2290
|
+
}, {
|
|
2291
|
+
readonly name: "valueRemoved";
|
|
2292
|
+
readonly type: "int256";
|
|
2293
|
+
readonly indexed: true;
|
|
2294
|
+
readonly internalType: "int256";
|
|
2295
|
+
}, {
|
|
2296
|
+
readonly name: "totalUtilization";
|
|
2297
|
+
readonly type: "int256";
|
|
2298
|
+
readonly indexed: true;
|
|
2299
|
+
readonly internalType: "int256";
|
|
2300
|
+
}];
|
|
2301
|
+
readonly anonymous: false;
|
|
2302
|
+
}, {
|
|
2303
|
+
readonly type: "event";
|
|
2304
|
+
readonly name: "TripleCreated";
|
|
2305
|
+
readonly inputs: readonly [{
|
|
2306
|
+
readonly name: "creator";
|
|
2307
|
+
readonly type: "address";
|
|
2308
|
+
readonly indexed: true;
|
|
2309
|
+
readonly internalType: "address";
|
|
2310
|
+
}, {
|
|
2311
|
+
readonly name: "termId";
|
|
2312
|
+
readonly type: "bytes32";
|
|
2313
|
+
readonly indexed: true;
|
|
2314
|
+
readonly internalType: "bytes32";
|
|
2315
|
+
}, {
|
|
2316
|
+
readonly name: "subjectId";
|
|
2317
|
+
readonly type: "bytes32";
|
|
2318
|
+
readonly indexed: false;
|
|
2319
|
+
readonly internalType: "bytes32";
|
|
2320
|
+
}, {
|
|
2321
|
+
readonly name: "predicateId";
|
|
2322
|
+
readonly type: "bytes32";
|
|
2323
|
+
readonly indexed: false;
|
|
2324
|
+
readonly internalType: "bytes32";
|
|
2325
|
+
}, {
|
|
2326
|
+
readonly name: "objectId";
|
|
2327
|
+
readonly type: "bytes32";
|
|
2328
|
+
readonly indexed: false;
|
|
2329
|
+
readonly internalType: "bytes32";
|
|
2330
|
+
}];
|
|
2331
|
+
readonly anonymous: false;
|
|
2332
|
+
}, {
|
|
2333
|
+
readonly type: "event";
|
|
2334
|
+
readonly name: "Unpaused";
|
|
2335
|
+
readonly inputs: readonly [{
|
|
2336
|
+
readonly name: "account";
|
|
2337
|
+
readonly type: "address";
|
|
2338
|
+
readonly indexed: false;
|
|
2339
|
+
readonly internalType: "address";
|
|
2340
|
+
}];
|
|
2341
|
+
readonly anonymous: false;
|
|
2342
|
+
}, {
|
|
2343
|
+
readonly type: "event";
|
|
2344
|
+
readonly name: "WalletMigrated";
|
|
2345
|
+
readonly inputs: readonly [{
|
|
2346
|
+
readonly name: "termId";
|
|
2347
|
+
readonly type: "bytes32";
|
|
2348
|
+
readonly indexed: true;
|
|
2349
|
+
readonly internalType: "bytes32";
|
|
2350
|
+
}, {
|
|
2351
|
+
readonly name: "curveId";
|
|
2352
|
+
readonly type: "uint256";
|
|
2353
|
+
readonly indexed: true;
|
|
2354
|
+
readonly internalType: "uint256";
|
|
2355
|
+
}, {
|
|
2356
|
+
readonly name: "oldWallet";
|
|
2357
|
+
readonly type: "address";
|
|
2358
|
+
readonly indexed: true;
|
|
2359
|
+
readonly internalType: "address";
|
|
2360
|
+
}, {
|
|
2361
|
+
readonly name: "newWallet";
|
|
2362
|
+
readonly type: "address";
|
|
2363
|
+
readonly indexed: false;
|
|
2364
|
+
readonly internalType: "address";
|
|
2365
|
+
}, {
|
|
2366
|
+
readonly name: "sharesMigrated";
|
|
2367
|
+
readonly type: "uint256";
|
|
2368
|
+
readonly indexed: false;
|
|
2369
|
+
readonly internalType: "uint256";
|
|
2370
|
+
}];
|
|
2371
|
+
readonly anonymous: false;
|
|
2372
|
+
}, {
|
|
2373
|
+
readonly type: "event";
|
|
2374
|
+
readonly name: "WrappedERC20Registered";
|
|
2375
|
+
readonly inputs: readonly [{
|
|
2376
|
+
readonly name: "termId";
|
|
2377
|
+
readonly type: "bytes32";
|
|
2378
|
+
readonly indexed: true;
|
|
2379
|
+
readonly internalType: "bytes32";
|
|
2380
|
+
}, {
|
|
2381
|
+
readonly name: "curveId";
|
|
2382
|
+
readonly type: "uint256";
|
|
2383
|
+
readonly indexed: true;
|
|
2384
|
+
readonly internalType: "uint256";
|
|
2385
|
+
}, {
|
|
2386
|
+
readonly name: "wrappedERC20";
|
|
2387
|
+
readonly type: "address";
|
|
2388
|
+
readonly indexed: true;
|
|
2389
|
+
readonly internalType: "address";
|
|
2390
|
+
}];
|
|
2391
|
+
readonly anonymous: false;
|
|
2392
|
+
}, {
|
|
2393
|
+
readonly type: "event";
|
|
2394
|
+
readonly name: "WrapperTransfer";
|
|
2395
|
+
readonly inputs: readonly [{
|
|
2396
|
+
readonly name: "from";
|
|
2397
|
+
readonly type: "address";
|
|
2398
|
+
readonly indexed: true;
|
|
2399
|
+
readonly internalType: "address";
|
|
2400
|
+
}, {
|
|
2401
|
+
readonly name: "to";
|
|
2402
|
+
readonly type: "address";
|
|
2403
|
+
readonly indexed: true;
|
|
2404
|
+
readonly internalType: "address";
|
|
2405
|
+
}, {
|
|
2406
|
+
readonly name: "termId";
|
|
2407
|
+
readonly type: "bytes32";
|
|
2408
|
+
readonly indexed: true;
|
|
2409
|
+
readonly internalType: "bytes32";
|
|
2410
|
+
}, {
|
|
2411
|
+
readonly name: "curveId";
|
|
2412
|
+
readonly type: "uint256";
|
|
2413
|
+
readonly indexed: false;
|
|
2414
|
+
readonly internalType: "uint256";
|
|
2415
|
+
}, {
|
|
2416
|
+
readonly name: "shares";
|
|
2417
|
+
readonly type: "uint256";
|
|
2418
|
+
readonly indexed: false;
|
|
2419
|
+
readonly internalType: "uint256";
|
|
2420
|
+
}];
|
|
2421
|
+
readonly anonymous: false;
|
|
2422
|
+
}, {
|
|
2423
|
+
readonly type: "error";
|
|
2424
|
+
readonly name: "AccessControlBadConfirmation";
|
|
2425
|
+
readonly inputs: readonly [];
|
|
2426
|
+
}, {
|
|
2427
|
+
readonly type: "error";
|
|
2428
|
+
readonly name: "AccessControlUnauthorizedAccount";
|
|
2429
|
+
readonly inputs: readonly [{
|
|
2430
|
+
readonly name: "account";
|
|
2431
|
+
readonly type: "address";
|
|
2432
|
+
readonly internalType: "address";
|
|
2433
|
+
}, {
|
|
2434
|
+
readonly name: "neededRole";
|
|
2435
|
+
readonly type: "bytes32";
|
|
2436
|
+
readonly internalType: "bytes32";
|
|
2437
|
+
}];
|
|
2438
|
+
}, {
|
|
2439
|
+
readonly type: "error";
|
|
2440
|
+
readonly name: "AtomDoesNotExist";
|
|
2441
|
+
readonly inputs: readonly [{
|
|
2442
|
+
readonly name: "termId";
|
|
2443
|
+
readonly type: "bytes32";
|
|
2444
|
+
readonly internalType: "bytes32";
|
|
2445
|
+
}];
|
|
2446
|
+
}, {
|
|
2447
|
+
readonly type: "error";
|
|
2448
|
+
readonly name: "EnforcedPause";
|
|
2449
|
+
readonly inputs: readonly [];
|
|
2450
|
+
}, {
|
|
2451
|
+
readonly type: "error";
|
|
2452
|
+
readonly name: "ExpectedPause";
|
|
2453
|
+
readonly inputs: readonly [];
|
|
2454
|
+
}, {
|
|
2455
|
+
readonly type: "error";
|
|
2456
|
+
readonly name: "FailedCall";
|
|
2457
|
+
readonly inputs: readonly [];
|
|
2458
|
+
}, {
|
|
2459
|
+
readonly type: "error";
|
|
2460
|
+
readonly name: "InsufficientBalance";
|
|
2461
|
+
readonly inputs: readonly [{
|
|
2462
|
+
readonly name: "balance";
|
|
2463
|
+
readonly type: "uint256";
|
|
2464
|
+
readonly internalType: "uint256";
|
|
2465
|
+
}, {
|
|
2466
|
+
readonly name: "needed";
|
|
2467
|
+
readonly type: "uint256";
|
|
2468
|
+
readonly internalType: "uint256";
|
|
2469
|
+
}];
|
|
2470
|
+
}, {
|
|
2471
|
+
readonly type: "error";
|
|
2472
|
+
readonly name: "InvalidInitialization";
|
|
2473
|
+
readonly inputs: readonly [];
|
|
2474
|
+
}, {
|
|
2475
|
+
readonly type: "error";
|
|
2476
|
+
readonly name: "MultiVault_ActionExceedsMaxAssets";
|
|
2477
|
+
readonly inputs: readonly [];
|
|
2478
|
+
}, {
|
|
2479
|
+
readonly type: "error";
|
|
2480
|
+
readonly name: "MultiVault_ArraysNotSameLength";
|
|
2481
|
+
readonly inputs: readonly [];
|
|
2482
|
+
}, {
|
|
2483
|
+
readonly type: "error";
|
|
2484
|
+
readonly name: "MultiVault_AtomDataTooLong";
|
|
2485
|
+
readonly inputs: readonly [];
|
|
2486
|
+
}, {
|
|
2487
|
+
readonly type: "error";
|
|
2488
|
+
readonly name: "MultiVault_AtomDoesNotExist";
|
|
2489
|
+
readonly inputs: readonly [{
|
|
2490
|
+
readonly name: "atomId";
|
|
2491
|
+
readonly type: "bytes32";
|
|
2492
|
+
readonly internalType: "bytes32";
|
|
2493
|
+
}];
|
|
2494
|
+
}, {
|
|
2495
|
+
readonly type: "error";
|
|
2496
|
+
readonly name: "MultiVault_AtomExists";
|
|
2497
|
+
readonly inputs: readonly [{
|
|
2498
|
+
readonly name: "atomData";
|
|
2499
|
+
readonly type: "bytes";
|
|
2500
|
+
readonly internalType: "bytes";
|
|
2501
|
+
}];
|
|
2502
|
+
}, {
|
|
2503
|
+
readonly type: "error";
|
|
2504
|
+
readonly name: "MultiVault_BurnFromZeroAddress";
|
|
2505
|
+
readonly inputs: readonly [];
|
|
2506
|
+
}, {
|
|
2507
|
+
readonly type: "error";
|
|
2508
|
+
readonly name: "MultiVault_BurnInsufficientBalance";
|
|
2509
|
+
readonly inputs: readonly [];
|
|
2510
|
+
}, {
|
|
2511
|
+
readonly type: "error";
|
|
2512
|
+
readonly name: "MultiVault_CannotApproveOrRevokeSelf";
|
|
2513
|
+
readonly inputs: readonly [];
|
|
2514
|
+
}, {
|
|
2515
|
+
readonly type: "error";
|
|
2516
|
+
readonly name: "MultiVault_DepositBelowMinimumDeposit";
|
|
2517
|
+
readonly inputs: readonly [];
|
|
2518
|
+
}, {
|
|
2519
|
+
readonly type: "error";
|
|
2520
|
+
readonly name: "MultiVault_DepositOrRedeemZeroShares";
|
|
2521
|
+
readonly inputs: readonly [];
|
|
2522
|
+
}, {
|
|
2523
|
+
readonly type: "error";
|
|
2524
|
+
readonly name: "MultiVault_EmptyArray";
|
|
2525
|
+
readonly inputs: readonly [];
|
|
2526
|
+
}, {
|
|
2527
|
+
readonly type: "error";
|
|
2528
|
+
readonly name: "MultiVault_InsufficientAssets";
|
|
2529
|
+
readonly inputs: readonly [];
|
|
2530
|
+
}, {
|
|
2531
|
+
readonly type: "error";
|
|
2532
|
+
readonly name: "MultiVault_InsufficientBalance";
|
|
2533
|
+
readonly inputs: readonly [];
|
|
2534
|
+
}, {
|
|
2535
|
+
readonly type: "error";
|
|
2536
|
+
readonly name: "MultiVault_InsufficientRemainingSharesInVault";
|
|
2537
|
+
readonly inputs: readonly [{
|
|
2538
|
+
readonly name: "remainingShares";
|
|
2539
|
+
readonly type: "uint256";
|
|
2540
|
+
readonly internalType: "uint256";
|
|
2541
|
+
}];
|
|
2542
|
+
}, {
|
|
2543
|
+
readonly type: "error";
|
|
2544
|
+
readonly name: "MultiVault_InsufficientSharesInVault";
|
|
2545
|
+
readonly inputs: readonly [];
|
|
2546
|
+
}, {
|
|
2547
|
+
readonly type: "error";
|
|
2548
|
+
readonly name: "MultiVault_InvalidArrayLength";
|
|
2549
|
+
readonly inputs: readonly [];
|
|
2550
|
+
}, {
|
|
2551
|
+
readonly type: "error";
|
|
2552
|
+
readonly name: "MultiVault_InvalidBondingCurveId";
|
|
2553
|
+
readonly inputs: readonly [];
|
|
2554
|
+
}, {
|
|
2555
|
+
readonly type: "error";
|
|
2556
|
+
readonly name: "MultiVault_NoAtomDataProvided";
|
|
2557
|
+
readonly inputs: readonly [];
|
|
2558
|
+
}, {
|
|
2559
|
+
readonly type: "error";
|
|
2560
|
+
readonly name: "MultiVault_OnlyAssociatedAtomWallet";
|
|
2561
|
+
readonly inputs: readonly [];
|
|
2562
|
+
}, {
|
|
2563
|
+
readonly type: "error";
|
|
2564
|
+
readonly name: "MultiVault_RedeemerNotApproved";
|
|
2565
|
+
readonly inputs: readonly [];
|
|
2566
|
+
}, {
|
|
2567
|
+
readonly type: "error";
|
|
2568
|
+
readonly name: "MultiVault_SenderNotApproved";
|
|
2569
|
+
readonly inputs: readonly [];
|
|
2570
|
+
}, {
|
|
2571
|
+
readonly type: "error";
|
|
2572
|
+
readonly name: "MultiVault_SlippageExceeded";
|
|
2573
|
+
readonly inputs: readonly [];
|
|
2574
|
+
}, {
|
|
2575
|
+
readonly type: "error";
|
|
2576
|
+
readonly name: "MultiVault_TermDoesNotExist";
|
|
2577
|
+
readonly inputs: readonly [];
|
|
2578
|
+
}, {
|
|
2579
|
+
readonly type: "error";
|
|
2580
|
+
readonly name: "MultiVault_TripleExists";
|
|
2581
|
+
readonly inputs: readonly [{
|
|
2582
|
+
readonly name: "termId";
|
|
2583
|
+
readonly type: "bytes32";
|
|
2584
|
+
readonly internalType: "bytes32";
|
|
2585
|
+
}, {
|
|
2586
|
+
readonly name: "subjectId";
|
|
2587
|
+
readonly type: "bytes32";
|
|
2588
|
+
readonly internalType: "bytes32";
|
|
2589
|
+
}, {
|
|
2590
|
+
readonly name: "predicateId";
|
|
2591
|
+
readonly type: "bytes32";
|
|
2592
|
+
readonly internalType: "bytes32";
|
|
2593
|
+
}, {
|
|
2594
|
+
readonly name: "objectId";
|
|
2595
|
+
readonly type: "bytes32";
|
|
2596
|
+
readonly internalType: "bytes32";
|
|
2597
|
+
}];
|
|
2598
|
+
}, {
|
|
2599
|
+
readonly type: "error";
|
|
2600
|
+
readonly name: "MultiVault_ZeroAddress";
|
|
2601
|
+
readonly inputs: readonly [];
|
|
2602
|
+
}, {
|
|
2603
|
+
readonly type: "error";
|
|
2604
|
+
readonly name: "MultiVault_ZeroValue";
|
|
2605
|
+
readonly inputs: readonly [];
|
|
2606
|
+
}, {
|
|
2607
|
+
readonly type: "error";
|
|
2608
|
+
readonly name: "NotInitializing";
|
|
2609
|
+
readonly inputs: readonly [];
|
|
2610
|
+
}, {
|
|
2611
|
+
readonly type: "error";
|
|
2612
|
+
readonly name: "ReentrancyGuardReentrantCall";
|
|
2613
|
+
readonly inputs: readonly [];
|
|
2614
|
+
}, {
|
|
2615
|
+
readonly type: "error";
|
|
2616
|
+
readonly name: "TermDoesNotExist";
|
|
2617
|
+
readonly inputs: readonly [{
|
|
2618
|
+
readonly name: "termId";
|
|
2619
|
+
readonly type: "bytes32";
|
|
2620
|
+
readonly internalType: "bytes32";
|
|
2621
|
+
}];
|
|
2622
|
+
}, {
|
|
2623
|
+
readonly type: "error";
|
|
2624
|
+
readonly name: "TripleDoesNotExist";
|
|
2625
|
+
readonly inputs: readonly [{
|
|
2626
|
+
readonly name: "termId";
|
|
2627
|
+
readonly type: "bytes32";
|
|
2628
|
+
readonly internalType: "bytes32";
|
|
2629
|
+
}];
|
|
2630
|
+
}];
|