@aastar/dapp 0.16.7
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/LICENSE +21 -0
- package/dist/core/src/abis/BLSAggregator.json +686 -0
- package/dist/core/src/abis/BLSValidator.json +42 -0
- package/dist/core/src/abis/DVTValidator.json +368 -0
- package/dist/core/src/abis/EntryPoint.json +1382 -0
- package/dist/core/src/abis/GToken.json +513 -0
- package/dist/core/src/abis/GTokenStaking.json +949 -0
- package/dist/core/src/abis/MySBT.json +1518 -0
- package/dist/core/src/abis/Paymaster.json +1143 -0
- package/dist/core/src/abis/PaymasterFactory.json +640 -0
- package/dist/core/src/abis/Registry.json +1942 -0
- package/dist/core/src/abis/ReputationSystem.json +699 -0
- package/dist/core/src/abis/SimpleAccount.json +560 -0
- package/dist/core/src/abis/SimpleAccountFactory.json +111 -0
- package/dist/core/src/abis/SuperPaymaster.json +1781 -0
- package/dist/core/src/abis/index.d.ts +1126 -0
- package/dist/core/src/abis/index.js +91 -0
- package/dist/core/src/abis/xPNTsFactory.json +718 -0
- package/dist/core/src/abis/xPNTsToken.json +1280 -0
- package/dist/core/src/actions/StateValidator.d.ts +68 -0
- package/dist/core/src/actions/StateValidator.js +187 -0
- package/dist/core/src/actions/account.d.ts +55 -0
- package/dist/core/src/actions/account.js +133 -0
- package/dist/core/src/actions/aggregator.d.ts +17 -0
- package/dist/core/src/actions/aggregator.js +31 -0
- package/dist/core/src/actions/dvt.d.ts +30 -0
- package/dist/core/src/actions/dvt.js +41 -0
- package/dist/core/src/actions/entryPoint.d.ts +90 -0
- package/dist/core/src/actions/entryPoint.js +211 -0
- package/dist/core/src/actions/factory.d.ts +215 -0
- package/dist/core/src/actions/factory.js +442 -0
- package/dist/core/src/actions/faucet.d.ts +48 -0
- package/dist/core/src/actions/faucet.js +337 -0
- package/dist/core/src/actions/gtokenExtended.d.ts +39 -0
- package/dist/core/src/actions/gtokenExtended.js +115 -0
- package/dist/core/src/actions/index.d.ts +15 -0
- package/dist/core/src/actions/index.js +17 -0
- package/dist/core/src/actions/paymasterV4.d.ts +170 -0
- package/dist/core/src/actions/paymasterV4.js +334 -0
- package/dist/core/src/actions/registry.d.ts +246 -0
- package/dist/core/src/actions/registry.js +667 -0
- package/dist/core/src/actions/reputation.d.ts +129 -0
- package/dist/core/src/actions/reputation.js +281 -0
- package/dist/core/src/actions/sbt.d.ts +191 -0
- package/dist/core/src/actions/sbt.js +533 -0
- package/dist/core/src/actions/staking.d.ts +132 -0
- package/dist/core/src/actions/staking.js +330 -0
- package/dist/core/src/actions/superPaymaster.d.ts +237 -0
- package/dist/core/src/actions/superPaymaster.js +644 -0
- package/dist/core/src/actions/tokens.d.ts +229 -0
- package/dist/core/src/actions/tokens.js +415 -0
- package/dist/core/src/branding.d.ts +30 -0
- package/dist/core/src/branding.js +30 -0
- package/dist/core/src/clients/BaseClient.d.ts +25 -0
- package/dist/core/src/clients/BaseClient.js +66 -0
- package/dist/core/src/clients/types.d.ts +60 -0
- package/dist/core/src/clients/types.js +1 -0
- package/dist/core/src/clients.d.ts +5 -0
- package/dist/core/src/clients.js +11 -0
- package/dist/core/src/communities.d.ts +52 -0
- package/dist/core/src/communities.js +73 -0
- package/dist/core/src/config/ContractConfigManager.d.ts +20 -0
- package/dist/core/src/config/ContractConfigManager.js +48 -0
- package/dist/core/src/constants.d.ts +88 -0
- package/dist/core/src/constants.js +125 -0
- package/dist/core/src/contract-addresses.d.ts +110 -0
- package/dist/core/src/contract-addresses.js +99 -0
- package/dist/core/src/contracts.d.ts +424 -0
- package/dist/core/src/contracts.js +343 -0
- package/dist/core/src/crypto/blsSigner.d.ts +64 -0
- package/dist/core/src/crypto/blsSigner.js +98 -0
- package/dist/core/src/crypto/index.d.ts +1 -0
- package/dist/core/src/crypto/index.js +1 -0
- package/dist/core/src/index.d.ts +21 -0
- package/dist/core/src/index.js +21 -0
- package/dist/core/src/networks.d.ts +127 -0
- package/dist/core/src/networks.js +118 -0
- package/dist/core/src/requirementChecker.d.ts +38 -0
- package/dist/core/src/requirementChecker.js +139 -0
- package/dist/core/src/roles.d.ts +204 -0
- package/dist/core/src/roles.js +211 -0
- package/dist/core/src/utils/validation.d.ts +24 -0
- package/dist/core/src/utils/validation.js +56 -0
- package/dist/dapp/src/index.d.ts +3 -0
- package/dist/dapp/src/index.js +3 -0
- package/dist/dapp/src/ui/components/EvaluationPanel.d.ts +11 -0
- package/dist/dapp/src/ui/components/EvaluationPanel.js +37 -0
- package/dist/dapp/src/ui/hooks/useCreditScore.d.ts +13 -0
- package/dist/dapp/src/ui/hooks/useCreditScore.js +32 -0
- package/dist/dapp/src/ui/hooks/useSuperPaymaster.d.ts +8 -0
- package/dist/dapp/src/ui/hooks/useSuperPaymaster.js +23 -0
- package/dist/dapp/src/ui/index.d.ts +4 -0
- package/dist/dapp/src/ui/index.js +17 -0
- package/dist/paymaster/src/SuperPaymaster/index.d.ts +44 -0
- package/dist/paymaster/src/SuperPaymaster/index.js +133 -0
- package/dist/paymaster/src/V4/PaymasterClient.d.ts +79 -0
- package/dist/paymaster/src/V4/PaymasterClient.js +315 -0
- package/dist/paymaster/src/V4/PaymasterOperator.d.ts +41 -0
- package/dist/paymaster/src/V4/PaymasterOperator.js +241 -0
- package/dist/paymaster/src/V4/PaymasterUtils.d.ts +55 -0
- package/dist/paymaster/src/V4/PaymasterUtils.js +124 -0
- package/dist/paymaster/src/V4/SuperPaymasterClient.d.ts +21 -0
- package/dist/paymaster/src/V4/SuperPaymasterClient.js +73 -0
- package/dist/paymaster/src/V4/index.d.ts +4 -0
- package/dist/paymaster/src/V4/index.js +4 -0
- package/dist/paymaster/src/index.d.ts +2 -0
- package/dist/paymaster/src/index.js +4 -0
- package/package.json +31 -0
|
@@ -0,0 +1,699 @@
|
|
|
1
|
+
{
|
|
2
|
+
"abi": [
|
|
3
|
+
{
|
|
4
|
+
"type": "constructor",
|
|
5
|
+
"inputs": [
|
|
6
|
+
{
|
|
7
|
+
"name": "_registry",
|
|
8
|
+
"type": "address",
|
|
9
|
+
"internalType": "address"
|
|
10
|
+
}
|
|
11
|
+
],
|
|
12
|
+
"stateMutability": "nonpayable"
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"type": "function",
|
|
16
|
+
"name": "REGISTRY",
|
|
17
|
+
"inputs": [],
|
|
18
|
+
"outputs": [
|
|
19
|
+
{
|
|
20
|
+
"name": "",
|
|
21
|
+
"type": "address",
|
|
22
|
+
"internalType": "contract IRegistry"
|
|
23
|
+
}
|
|
24
|
+
],
|
|
25
|
+
"stateMutability": "view"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"type": "function",
|
|
29
|
+
"name": "boostedCollections",
|
|
30
|
+
"inputs": [
|
|
31
|
+
{
|
|
32
|
+
"name": "",
|
|
33
|
+
"type": "uint256",
|
|
34
|
+
"internalType": "uint256"
|
|
35
|
+
}
|
|
36
|
+
],
|
|
37
|
+
"outputs": [
|
|
38
|
+
{
|
|
39
|
+
"name": "",
|
|
40
|
+
"type": "address",
|
|
41
|
+
"internalType": "address"
|
|
42
|
+
}
|
|
43
|
+
],
|
|
44
|
+
"stateMutability": "view"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"type": "function",
|
|
48
|
+
"name": "calculateReputation",
|
|
49
|
+
"inputs": [
|
|
50
|
+
{
|
|
51
|
+
"name": "user",
|
|
52
|
+
"type": "address",
|
|
53
|
+
"internalType": "address"
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"name": "community",
|
|
57
|
+
"type": "address",
|
|
58
|
+
"internalType": "address"
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"name": "",
|
|
62
|
+
"type": "uint256",
|
|
63
|
+
"internalType": "uint256"
|
|
64
|
+
}
|
|
65
|
+
],
|
|
66
|
+
"outputs": [
|
|
67
|
+
{
|
|
68
|
+
"name": "communityScore",
|
|
69
|
+
"type": "uint256",
|
|
70
|
+
"internalType": "uint256"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"name": "globalScore",
|
|
74
|
+
"type": "uint256",
|
|
75
|
+
"internalType": "uint256"
|
|
76
|
+
}
|
|
77
|
+
],
|
|
78
|
+
"stateMutability": "view"
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"type": "function",
|
|
82
|
+
"name": "communityActiveRules",
|
|
83
|
+
"inputs": [
|
|
84
|
+
{
|
|
85
|
+
"name": "",
|
|
86
|
+
"type": "address",
|
|
87
|
+
"internalType": "address"
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"name": "",
|
|
91
|
+
"type": "uint256",
|
|
92
|
+
"internalType": "uint256"
|
|
93
|
+
}
|
|
94
|
+
],
|
|
95
|
+
"outputs": [
|
|
96
|
+
{
|
|
97
|
+
"name": "",
|
|
98
|
+
"type": "bytes32",
|
|
99
|
+
"internalType": "bytes32"
|
|
100
|
+
}
|
|
101
|
+
],
|
|
102
|
+
"stateMutability": "view"
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"type": "function",
|
|
106
|
+
"name": "communityReputations",
|
|
107
|
+
"inputs": [
|
|
108
|
+
{
|
|
109
|
+
"name": "",
|
|
110
|
+
"type": "address",
|
|
111
|
+
"internalType": "address"
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"name": "",
|
|
115
|
+
"type": "address",
|
|
116
|
+
"internalType": "address"
|
|
117
|
+
}
|
|
118
|
+
],
|
|
119
|
+
"outputs": [
|
|
120
|
+
{
|
|
121
|
+
"name": "",
|
|
122
|
+
"type": "uint256",
|
|
123
|
+
"internalType": "uint256"
|
|
124
|
+
}
|
|
125
|
+
],
|
|
126
|
+
"stateMutability": "view"
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"type": "function",
|
|
130
|
+
"name": "communityRules",
|
|
131
|
+
"inputs": [
|
|
132
|
+
{
|
|
133
|
+
"name": "",
|
|
134
|
+
"type": "address",
|
|
135
|
+
"internalType": "address"
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"name": "",
|
|
139
|
+
"type": "bytes32",
|
|
140
|
+
"internalType": "bytes32"
|
|
141
|
+
}
|
|
142
|
+
],
|
|
143
|
+
"outputs": [
|
|
144
|
+
{
|
|
145
|
+
"name": "baseScore",
|
|
146
|
+
"type": "uint256",
|
|
147
|
+
"internalType": "uint256"
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"name": "activityBonus",
|
|
151
|
+
"type": "uint256",
|
|
152
|
+
"internalType": "uint256"
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"name": "maxBonus",
|
|
156
|
+
"type": "uint256",
|
|
157
|
+
"internalType": "uint256"
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"name": "description",
|
|
161
|
+
"type": "string",
|
|
162
|
+
"internalType": "string"
|
|
163
|
+
}
|
|
164
|
+
],
|
|
165
|
+
"stateMutability": "view"
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"type": "function",
|
|
169
|
+
"name": "computeScore",
|
|
170
|
+
"inputs": [
|
|
171
|
+
{
|
|
172
|
+
"name": "user",
|
|
173
|
+
"type": "address",
|
|
174
|
+
"internalType": "address"
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"name": "communities",
|
|
178
|
+
"type": "address[]",
|
|
179
|
+
"internalType": "address[]"
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
"name": "ruleIds",
|
|
183
|
+
"type": "bytes32[][]",
|
|
184
|
+
"internalType": "bytes32[][]"
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
"name": "activities",
|
|
188
|
+
"type": "uint256[][]",
|
|
189
|
+
"internalType": "uint256[][]"
|
|
190
|
+
}
|
|
191
|
+
],
|
|
192
|
+
"outputs": [
|
|
193
|
+
{
|
|
194
|
+
"name": "totalScore",
|
|
195
|
+
"type": "uint256",
|
|
196
|
+
"internalType": "uint256"
|
|
197
|
+
}
|
|
198
|
+
],
|
|
199
|
+
"stateMutability": "view"
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
"type": "function",
|
|
203
|
+
"name": "defaultRule",
|
|
204
|
+
"inputs": [],
|
|
205
|
+
"outputs": [
|
|
206
|
+
{
|
|
207
|
+
"name": "baseScore",
|
|
208
|
+
"type": "uint256",
|
|
209
|
+
"internalType": "uint256"
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"name": "activityBonus",
|
|
213
|
+
"type": "uint256",
|
|
214
|
+
"internalType": "uint256"
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
"name": "maxBonus",
|
|
218
|
+
"type": "uint256",
|
|
219
|
+
"internalType": "uint256"
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
"name": "description",
|
|
223
|
+
"type": "string",
|
|
224
|
+
"internalType": "string"
|
|
225
|
+
}
|
|
226
|
+
],
|
|
227
|
+
"stateMutability": "view"
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
"type": "function",
|
|
231
|
+
"name": "entropyFactors",
|
|
232
|
+
"inputs": [
|
|
233
|
+
{
|
|
234
|
+
"name": "",
|
|
235
|
+
"type": "address",
|
|
236
|
+
"internalType": "address"
|
|
237
|
+
}
|
|
238
|
+
],
|
|
239
|
+
"outputs": [
|
|
240
|
+
{
|
|
241
|
+
"name": "",
|
|
242
|
+
"type": "uint256",
|
|
243
|
+
"internalType": "uint256"
|
|
244
|
+
}
|
|
245
|
+
],
|
|
246
|
+
"stateMutability": "view"
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
"type": "function",
|
|
250
|
+
"name": "getActiveRules",
|
|
251
|
+
"inputs": [
|
|
252
|
+
{
|
|
253
|
+
"name": "community",
|
|
254
|
+
"type": "address",
|
|
255
|
+
"internalType": "address"
|
|
256
|
+
}
|
|
257
|
+
],
|
|
258
|
+
"outputs": [
|
|
259
|
+
{
|
|
260
|
+
"name": "ruleIds",
|
|
261
|
+
"type": "bytes32[]",
|
|
262
|
+
"internalType": "bytes32[]"
|
|
263
|
+
}
|
|
264
|
+
],
|
|
265
|
+
"stateMutability": "view"
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"type": "function",
|
|
269
|
+
"name": "getReputationBreakdown",
|
|
270
|
+
"inputs": [
|
|
271
|
+
{
|
|
272
|
+
"name": "user",
|
|
273
|
+
"type": "address",
|
|
274
|
+
"internalType": "address"
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
"name": "community",
|
|
278
|
+
"type": "address",
|
|
279
|
+
"internalType": "address"
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
"name": "",
|
|
283
|
+
"type": "uint256",
|
|
284
|
+
"internalType": "uint256"
|
|
285
|
+
}
|
|
286
|
+
],
|
|
287
|
+
"outputs": [
|
|
288
|
+
{
|
|
289
|
+
"name": "baseScore",
|
|
290
|
+
"type": "uint256",
|
|
291
|
+
"internalType": "uint256"
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
"name": "nftBonus",
|
|
295
|
+
"type": "uint256",
|
|
296
|
+
"internalType": "uint256"
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
"name": "activityBonus",
|
|
300
|
+
"type": "uint256",
|
|
301
|
+
"internalType": "uint256"
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
"name": "multiplier",
|
|
305
|
+
"type": "uint256",
|
|
306
|
+
"internalType": "uint256"
|
|
307
|
+
}
|
|
308
|
+
],
|
|
309
|
+
"stateMutability": "view"
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
"type": "function",
|
|
313
|
+
"name": "nftCollectionBoost",
|
|
314
|
+
"inputs": [
|
|
315
|
+
{
|
|
316
|
+
"name": "",
|
|
317
|
+
"type": "address",
|
|
318
|
+
"internalType": "address"
|
|
319
|
+
}
|
|
320
|
+
],
|
|
321
|
+
"outputs": [
|
|
322
|
+
{
|
|
323
|
+
"name": "",
|
|
324
|
+
"type": "uint256",
|
|
325
|
+
"internalType": "uint256"
|
|
326
|
+
}
|
|
327
|
+
],
|
|
328
|
+
"stateMutability": "view"
|
|
329
|
+
},
|
|
330
|
+
{
|
|
331
|
+
"type": "function",
|
|
332
|
+
"name": "nftHoldStart",
|
|
333
|
+
"inputs": [
|
|
334
|
+
{
|
|
335
|
+
"name": "",
|
|
336
|
+
"type": "address",
|
|
337
|
+
"internalType": "address"
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
"name": "",
|
|
341
|
+
"type": "address",
|
|
342
|
+
"internalType": "address"
|
|
343
|
+
}
|
|
344
|
+
],
|
|
345
|
+
"outputs": [
|
|
346
|
+
{
|
|
347
|
+
"name": "",
|
|
348
|
+
"type": "uint256",
|
|
349
|
+
"internalType": "uint256"
|
|
350
|
+
}
|
|
351
|
+
],
|
|
352
|
+
"stateMutability": "view"
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
"type": "function",
|
|
356
|
+
"name": "owner",
|
|
357
|
+
"inputs": [],
|
|
358
|
+
"outputs": [
|
|
359
|
+
{
|
|
360
|
+
"name": "",
|
|
361
|
+
"type": "address",
|
|
362
|
+
"internalType": "address"
|
|
363
|
+
}
|
|
364
|
+
],
|
|
365
|
+
"stateMutability": "view"
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
"type": "function",
|
|
369
|
+
"name": "renounceOwnership",
|
|
370
|
+
"inputs": [],
|
|
371
|
+
"outputs": [],
|
|
372
|
+
"stateMutability": "nonpayable"
|
|
373
|
+
},
|
|
374
|
+
{
|
|
375
|
+
"type": "function",
|
|
376
|
+
"name": "setCommunityReputation",
|
|
377
|
+
"inputs": [
|
|
378
|
+
{
|
|
379
|
+
"name": "community",
|
|
380
|
+
"type": "address",
|
|
381
|
+
"internalType": "address"
|
|
382
|
+
},
|
|
383
|
+
{
|
|
384
|
+
"name": "user",
|
|
385
|
+
"type": "address",
|
|
386
|
+
"internalType": "address"
|
|
387
|
+
},
|
|
388
|
+
{
|
|
389
|
+
"name": "score",
|
|
390
|
+
"type": "uint256",
|
|
391
|
+
"internalType": "uint256"
|
|
392
|
+
}
|
|
393
|
+
],
|
|
394
|
+
"outputs": [],
|
|
395
|
+
"stateMutability": "nonpayable"
|
|
396
|
+
},
|
|
397
|
+
{
|
|
398
|
+
"type": "function",
|
|
399
|
+
"name": "setEntropyFactor",
|
|
400
|
+
"inputs": [
|
|
401
|
+
{
|
|
402
|
+
"name": "community",
|
|
403
|
+
"type": "address",
|
|
404
|
+
"internalType": "address"
|
|
405
|
+
},
|
|
406
|
+
{
|
|
407
|
+
"name": "factor",
|
|
408
|
+
"type": "uint256",
|
|
409
|
+
"internalType": "uint256"
|
|
410
|
+
}
|
|
411
|
+
],
|
|
412
|
+
"outputs": [],
|
|
413
|
+
"stateMutability": "nonpayable"
|
|
414
|
+
},
|
|
415
|
+
{
|
|
416
|
+
"type": "function",
|
|
417
|
+
"name": "setNFTBoost",
|
|
418
|
+
"inputs": [
|
|
419
|
+
{
|
|
420
|
+
"name": "collection",
|
|
421
|
+
"type": "address",
|
|
422
|
+
"internalType": "address"
|
|
423
|
+
},
|
|
424
|
+
{
|
|
425
|
+
"name": "boost",
|
|
426
|
+
"type": "uint256",
|
|
427
|
+
"internalType": "uint256"
|
|
428
|
+
}
|
|
429
|
+
],
|
|
430
|
+
"outputs": [],
|
|
431
|
+
"stateMutability": "nonpayable"
|
|
432
|
+
},
|
|
433
|
+
{
|
|
434
|
+
"type": "function",
|
|
435
|
+
"name": "setRule",
|
|
436
|
+
"inputs": [
|
|
437
|
+
{
|
|
438
|
+
"name": "ruleId",
|
|
439
|
+
"type": "bytes32",
|
|
440
|
+
"internalType": "bytes32"
|
|
441
|
+
},
|
|
442
|
+
{
|
|
443
|
+
"name": "base",
|
|
444
|
+
"type": "uint256",
|
|
445
|
+
"internalType": "uint256"
|
|
446
|
+
},
|
|
447
|
+
{
|
|
448
|
+
"name": "bonus",
|
|
449
|
+
"type": "uint256",
|
|
450
|
+
"internalType": "uint256"
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
"name": "max",
|
|
454
|
+
"type": "uint256",
|
|
455
|
+
"internalType": "uint256"
|
|
456
|
+
},
|
|
457
|
+
{
|
|
458
|
+
"name": "desc",
|
|
459
|
+
"type": "string",
|
|
460
|
+
"internalType": "string"
|
|
461
|
+
}
|
|
462
|
+
],
|
|
463
|
+
"outputs": [],
|
|
464
|
+
"stateMutability": "nonpayable"
|
|
465
|
+
},
|
|
466
|
+
{
|
|
467
|
+
"type": "function",
|
|
468
|
+
"name": "syncToRegistry",
|
|
469
|
+
"inputs": [
|
|
470
|
+
{
|
|
471
|
+
"name": "user",
|
|
472
|
+
"type": "address",
|
|
473
|
+
"internalType": "address"
|
|
474
|
+
},
|
|
475
|
+
{
|
|
476
|
+
"name": "communities",
|
|
477
|
+
"type": "address[]",
|
|
478
|
+
"internalType": "address[]"
|
|
479
|
+
},
|
|
480
|
+
{
|
|
481
|
+
"name": "ruleIds",
|
|
482
|
+
"type": "bytes32[][]",
|
|
483
|
+
"internalType": "bytes32[][]"
|
|
484
|
+
},
|
|
485
|
+
{
|
|
486
|
+
"name": "activities",
|
|
487
|
+
"type": "uint256[][]",
|
|
488
|
+
"internalType": "uint256[][]"
|
|
489
|
+
},
|
|
490
|
+
{
|
|
491
|
+
"name": "epoch",
|
|
492
|
+
"type": "uint256",
|
|
493
|
+
"internalType": "uint256"
|
|
494
|
+
},
|
|
495
|
+
{
|
|
496
|
+
"name": "proof",
|
|
497
|
+
"type": "bytes",
|
|
498
|
+
"internalType": "bytes"
|
|
499
|
+
}
|
|
500
|
+
],
|
|
501
|
+
"outputs": [],
|
|
502
|
+
"stateMutability": "nonpayable"
|
|
503
|
+
},
|
|
504
|
+
{
|
|
505
|
+
"type": "function",
|
|
506
|
+
"name": "transferOwnership",
|
|
507
|
+
"inputs": [
|
|
508
|
+
{
|
|
509
|
+
"name": "newOwner",
|
|
510
|
+
"type": "address",
|
|
511
|
+
"internalType": "address"
|
|
512
|
+
}
|
|
513
|
+
],
|
|
514
|
+
"outputs": [],
|
|
515
|
+
"stateMutability": "nonpayable"
|
|
516
|
+
},
|
|
517
|
+
{
|
|
518
|
+
"type": "function",
|
|
519
|
+
"name": "updateNFTHoldStart",
|
|
520
|
+
"inputs": [
|
|
521
|
+
{
|
|
522
|
+
"name": "collection",
|
|
523
|
+
"type": "address",
|
|
524
|
+
"internalType": "address"
|
|
525
|
+
}
|
|
526
|
+
],
|
|
527
|
+
"outputs": [],
|
|
528
|
+
"stateMutability": "nonpayable"
|
|
529
|
+
},
|
|
530
|
+
{
|
|
531
|
+
"type": "function",
|
|
532
|
+
"name": "version",
|
|
533
|
+
"inputs": [],
|
|
534
|
+
"outputs": [
|
|
535
|
+
{
|
|
536
|
+
"name": "",
|
|
537
|
+
"type": "string",
|
|
538
|
+
"internalType": "string"
|
|
539
|
+
}
|
|
540
|
+
],
|
|
541
|
+
"stateMutability": "pure"
|
|
542
|
+
},
|
|
543
|
+
{
|
|
544
|
+
"type": "event",
|
|
545
|
+
"name": "CommunityReputationUpdated",
|
|
546
|
+
"inputs": [
|
|
547
|
+
{
|
|
548
|
+
"name": "community",
|
|
549
|
+
"type": "address",
|
|
550
|
+
"indexed": true,
|
|
551
|
+
"internalType": "address"
|
|
552
|
+
},
|
|
553
|
+
{
|
|
554
|
+
"name": "user",
|
|
555
|
+
"type": "address",
|
|
556
|
+
"indexed": true,
|
|
557
|
+
"internalType": "address"
|
|
558
|
+
},
|
|
559
|
+
{
|
|
560
|
+
"name": "score",
|
|
561
|
+
"type": "uint256",
|
|
562
|
+
"indexed": false,
|
|
563
|
+
"internalType": "uint256"
|
|
564
|
+
}
|
|
565
|
+
],
|
|
566
|
+
"anonymous": false
|
|
567
|
+
},
|
|
568
|
+
{
|
|
569
|
+
"type": "event",
|
|
570
|
+
"name": "EntropyFactorUpdated",
|
|
571
|
+
"inputs": [
|
|
572
|
+
{
|
|
573
|
+
"name": "community",
|
|
574
|
+
"type": "address",
|
|
575
|
+
"indexed": true,
|
|
576
|
+
"internalType": "address"
|
|
577
|
+
},
|
|
578
|
+
{
|
|
579
|
+
"name": "factor",
|
|
580
|
+
"type": "uint256",
|
|
581
|
+
"indexed": false,
|
|
582
|
+
"internalType": "uint256"
|
|
583
|
+
}
|
|
584
|
+
],
|
|
585
|
+
"anonymous": false
|
|
586
|
+
},
|
|
587
|
+
{
|
|
588
|
+
"type": "event",
|
|
589
|
+
"name": "NFTBoostAdded",
|
|
590
|
+
"inputs": [
|
|
591
|
+
{
|
|
592
|
+
"name": "collection",
|
|
593
|
+
"type": "address",
|
|
594
|
+
"indexed": true,
|
|
595
|
+
"internalType": "address"
|
|
596
|
+
},
|
|
597
|
+
{
|
|
598
|
+
"name": "boost",
|
|
599
|
+
"type": "uint256",
|
|
600
|
+
"indexed": false,
|
|
601
|
+
"internalType": "uint256"
|
|
602
|
+
}
|
|
603
|
+
],
|
|
604
|
+
"anonymous": false
|
|
605
|
+
},
|
|
606
|
+
{
|
|
607
|
+
"type": "event",
|
|
608
|
+
"name": "OwnershipTransferred",
|
|
609
|
+
"inputs": [
|
|
610
|
+
{
|
|
611
|
+
"name": "previousOwner",
|
|
612
|
+
"type": "address",
|
|
613
|
+
"indexed": true,
|
|
614
|
+
"internalType": "address"
|
|
615
|
+
},
|
|
616
|
+
{
|
|
617
|
+
"name": "newOwner",
|
|
618
|
+
"type": "address",
|
|
619
|
+
"indexed": true,
|
|
620
|
+
"internalType": "address"
|
|
621
|
+
}
|
|
622
|
+
],
|
|
623
|
+
"anonymous": false
|
|
624
|
+
},
|
|
625
|
+
{
|
|
626
|
+
"type": "event",
|
|
627
|
+
"name": "ReputationComputed",
|
|
628
|
+
"inputs": [
|
|
629
|
+
{
|
|
630
|
+
"name": "user",
|
|
631
|
+
"type": "address",
|
|
632
|
+
"indexed": true,
|
|
633
|
+
"internalType": "address"
|
|
634
|
+
},
|
|
635
|
+
{
|
|
636
|
+
"name": "score",
|
|
637
|
+
"type": "uint256",
|
|
638
|
+
"indexed": false,
|
|
639
|
+
"internalType": "uint256"
|
|
640
|
+
}
|
|
641
|
+
],
|
|
642
|
+
"anonymous": false
|
|
643
|
+
},
|
|
644
|
+
{
|
|
645
|
+
"type": "event",
|
|
646
|
+
"name": "RuleUpdated",
|
|
647
|
+
"inputs": [
|
|
648
|
+
{
|
|
649
|
+
"name": "community",
|
|
650
|
+
"type": "address",
|
|
651
|
+
"indexed": true,
|
|
652
|
+
"internalType": "address"
|
|
653
|
+
},
|
|
654
|
+
{
|
|
655
|
+
"name": "ruleId",
|
|
656
|
+
"type": "bytes32",
|
|
657
|
+
"indexed": true,
|
|
658
|
+
"internalType": "bytes32"
|
|
659
|
+
},
|
|
660
|
+
{
|
|
661
|
+
"name": "base",
|
|
662
|
+
"type": "uint256",
|
|
663
|
+
"indexed": false,
|
|
664
|
+
"internalType": "uint256"
|
|
665
|
+
},
|
|
666
|
+
{
|
|
667
|
+
"name": "bonus",
|
|
668
|
+
"type": "uint256",
|
|
669
|
+
"indexed": false,
|
|
670
|
+
"internalType": "uint256"
|
|
671
|
+
}
|
|
672
|
+
],
|
|
673
|
+
"anonymous": false
|
|
674
|
+
},
|
|
675
|
+
{
|
|
676
|
+
"type": "error",
|
|
677
|
+
"name": "OwnableInvalidOwner",
|
|
678
|
+
"inputs": [
|
|
679
|
+
{
|
|
680
|
+
"name": "owner",
|
|
681
|
+
"type": "address",
|
|
682
|
+
"internalType": "address"
|
|
683
|
+
}
|
|
684
|
+
]
|
|
685
|
+
},
|
|
686
|
+
{
|
|
687
|
+
"type": "error",
|
|
688
|
+
"name": "OwnableUnauthorizedAccount",
|
|
689
|
+
"inputs": [
|
|
690
|
+
{
|
|
691
|
+
"name": "account",
|
|
692
|
+
"type": "address",
|
|
693
|
+
"internalType": "address"
|
|
694
|
+
}
|
|
695
|
+
]
|
|
696
|
+
}
|
|
697
|
+
],
|
|
698
|
+
"bytecode": "0x60a0604052346102ba57604051601f611e1038819003918201601f19168301916001600160401b03831184841017610293578084926020946040528339810103126102ba57516001600160a01b038116908190036102ba5733156102a7575f8054336001600160a01b0319821681178355916001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09080a360809081526040519081016001600160401b0381118282101761029357604052600a81526020810160018152604082019060648252604051926040840184811060018060401b03821117610293576040526007845266111959985d5b1d60ca1b60208501526060810184905251600355516004555160055580516001600160401b03811161029357600654600181811c91168015610289575b602082101461027557601f8111610212575b50602091601f82116001146101b2579181925f926101a7575b50508160011b915f199060031b1c1916176006555b604051611b5190816102bf82396080518181816108db01528181610bb30152818161131d015261138c0152f35b015190505f80610165565b601f1982169260065f52805f20915f5b8581106101fa575083600195106101e2575b505050811b0160065561017a565b01515f1960f88460031b161c191690555f80806101d4565b919260206001819286850151815501940192016101c2565b60065f527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f601f830160051c8101916020841061026b575b601f0160051c01905b818110610260575061014c565b5f8155600101610253565b909150819061024a565b634e487b7160e01b5f52602260045260245ffd5b90607f169061013a565b634e487b7160e01b5f52604160045260245ffd5b631e4fbdf760e01b5f525f60045260245ffd5b5f80fdfe6080806040526004361015610012575f80fd5b5f905f3560e01c90816306433b1b1461137a57508063097f6b7c1461124d5780632f4468811461110957806330cd71a8146110485780633425bfae14610ff85780634a2357b914610f8e57806354fd4d5014610f3c5780636df80b4e14610b68578063715018a614610b2457806374f9924414610a975780638da5cb5b14610a705780638dbda2eb14610a385780639172ff45146107d65780639c4b343614610698578063a00e8f8114610636578063a981c9f5146105df578063bcd3697c146104ef578063ce26b0e01461043a578063cf1c545614610401578063f2fde38b1461038e578063fb42a9bf1461033b578063fc193b49146102f75763ff61c64e1461011b575f80fd5b346102f457610129366113e7565b509091809160018060a01b03168082526002602052604082206040518082602082945493848152019086526020862092865b8181106102db5750506101709250038261148d565b8051156102cd57818352600160205261018c604084209161175e565b51835260205261019e6040832061177f565b9260208451940151915b8352600760205260408320549283156102bd575b600b546001600160a01b039096169590805b8281106101f35750505060809450604051938452602084015260408301526060820152f35b6024602061020083611705565b90546040516370a0823160e01b8152600481018d90529384929091839160031b1c6001600160a01b03165afa839181610286575b50610243575b506001016101ce565b61024e575b5f61023a565b9261027e60019161025e86611705565b848060a01b0391549060031b1c16845260096020526040842054906117df565b939050610248565b9091506020813d82116102b5575b816102a16020938361148d565b810103126102b15751905f610234565b5f80fd5b3d9150610294565b670de0b6b3a764000093506101bc565b5060035492600454916101a8565b845483526001948501948694506020909301920161015b565b80fd5b50346102f45760203660031901126102f45760043590600b548210156102f457602061032283611705565b905460405160039290921b1c6001600160a01b03168152f35b50346102f45760403660031901126102f45760406103576113bb565b916103606113d1565b9260018060a01b031681526008602052209060018060a01b03165f52602052602060405f2054604051908152f35b50346102f45760203660031901126102f4576103a86113bb565b6103b0611a95565b6001600160a01b031680156103ed5781546001600160a01b03198116821783556001600160a01b03165f516020611afc5f395f51905f528380a380f35b631e4fbdf760e01b82526004829052602482fd5b50346102f45760203660031901126102f4576020906040906001600160a01b036104296113bb565b168152600983522054604051908152f35b50346102f45760203660031901126102f4576001600160a01b0361045c6113bb565b168152600260205260408120604051908160208254918281520190819285526020852090855b8181106104d9575050508261049891038361148d565b604051928392602084019060208552518091526040840192915b8181106104c0575050500390f35b82518452859450602093840193909201916001016104b2565b8254845260209093019260019283019201610482565b50346102f457806003193601126102f4576003546004549160055460405191806006549061051c82611607565b80865291600181169081156105b85750600114610557575b505090610547836105539493038361148d565b604051948594856116df565b0390f35b600681527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f94939250905b80821061059c575091925090820160200161054783610534565b9192936001816020925483858901015201910190939291610582565b60ff191660208088019190915292151560051b860190920192506105479150849050610534565b50346102f45760403660031901126102f4576105f96113bb565b6001600160a01b03168152600260205260408120805460243592908310156102f45760206106278484611731565b90549060031b1c604051908152f35b50346102f45760403660031901126102f4576040906001600160a01b0361065b6113bb565b1681526001602052818120602435825260205220805461055360018301549261068b60036002830154920161163f565b90604051948594856116df565b50346102f4576106a7366113e7565b5060018060a01b0316918281526002602052604081209260405191826020865491828152019582526020822090825b8181106107c0575050506106f0836107b39596038461148d565b604094855192610700878561148d565b60018452601f198701926107178460208701611a79565b856107218661175e565b5261072b8561175e565b50875195610739898861148d565b6001875261074a8560208901611a79565b519050610756816114b0565b906107638951928361148d565b808252610772601f19916114b0565b013660208301376107828661175e565b5261078c8561175e565b5086519261079a888561148d565b600184523660208501376107ad8361175e565b526117ec565b8151908082526020820152f35b82548852602090970196600192830192016106d6565b50346102b15760c03660031901126102b1576107f06113bb565b6024356001600160401b0381116102b15761080f9036906004016114c7565b6044356001600160401b0381116102b15761082e903690600401611535565b6064356001600160401b0381116102b15761084d903690600401611535565b60a435906001600160401b0382116102b157610870610879923690600401611445565b939094866117ec565b9160409182519161088a848461148d565b600183526020830191601f19850191823685376108a68561175e565b6001600160a01b03909816978890528551936108c2878661148d565b600185526020850193368537876108d88661175e565b527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031694853b156102b15795939291908751968795631b02e44f60e01b875260a48701905f600489015260a060248901525180915260c4870192905f5b818110610a165750505060209060031987840301604488015251918281520193905f5b8181106109fd575050506020845f969484829589956084356064860152600319858503016084860152818452858401378181018401859052601f01601f1916010301925af180156109f3576109cb575b505f516020611adc5f395f51905f529160209151908152a280f35b6020919450916109e95f5f516020611adc5f395f51905f529461148d565b5f949150916109b0565b82513d5f823e3d90fd5b8251865288965060209586019590920191600101610960565b82516001600160a01b031685528a98506020948501949092019160010161093d565b346102b15760203660031901126102b1576001600160a01b03610a596113bb565b165f526007602052602060405f2054604051908152f35b346102b1575f3660031901126102b1575f546040516001600160a01b039091168152602090f35b346102b15760803660031901126102b157610ab06113bb565b6024356001600160401b0381116102b157610acf9036906004016114c7565b906044356001600160401b0381116102b157610aef903690600401611535565b60643591906001600160401b0383116102b157602093610b16610b1c943690600401611535565b926117ec565b604051908152f35b346102b1575f3660031901126102b157610b3c611a95565b5f80546001600160a01b0319811682556001600160a01b03165f516020611afc5f395f51905f528280a3005b346102b15760a03660031901126102b1576004356024356044356084356001600160401b0381116102b157610ba1903690600401611445565b604051635168010760e11b81529091907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690602081600481855afa8015610efe575f90610f09575b60209150604460405180948193632474521560e21b835260048301523360248301525afa908115610efe575f91610ecf575b508015610ebc575b15610e8657335f52600160205260405f20855f5260205260405f20541580610e7d575b610e3b575b604051610c6081611472565b8481526020810184815260643560408301908152906001600160401b038511610e275760405194610c9b601f8201601f19166020018761148d565b80865236818601116102b1576020815f92600397838a01378701015260608301948552335f52600160205260405f20885f5260205260405f209251835551600183015551600282015501905180519060018060401b038211610e27578190610d038454611607565b601f8111610dd7575b50602090601f8311600114610d74575f92610d69575b50508160011b915f199060031b1c19161790555b60405191825260208201527f868a11f79934bfa7243fd979d39bf00f37050e24b3ffc20a11f12a8b7e48d99560403392a3005b015190508680610d22565b5f8581528281209350601f198516905b818110610dbf5750908460019594939210610da7575b505050811b019055610d36565b01515f1960f88460031b161c19169055868080610d9a565b92936020600181928786015181550195019301610d84565b909150835f5260205f20601f840160051c81019160208510610e1d575b90601f859493920160051c01905b818110610e0f5750610d0c565b5f8155849350600101610e02565b9091508190610df4565b634e487b7160e01b5f52604160045260245ffd5b335f52600260205260405f208054600160401b811015610e2757610e6491600182018155611731565b81549060031b9087821b915f19901b1916179055610c54565b50831515610c4f565b60405162461bcd60e51b815260206004820152600e60248201526d139bdd08105d5d1a1bdc9a5e995960921b6044820152606490fd5b505f546001600160a01b03163314610c2c565b610ef1915060203d602011610ef7575b610ee9818361148d565b810190611746565b86610c24565b503d610edf565b6040513d5f823e3d90fd5b506020813d602011610f34575b81610f236020938361148d565b810103126102b15760209051610bf2565b3d9150610f16565b346102b1575f3660031901126102b157610553604051610f5d60408261148d565b601081526f2932b83aba30ba34b7b716981719971960811b6020820152604051918291602083526020830190611421565b346102b15760403660031901126102b157610fa76113bb565b7f21281390931aaf470d02c340b1ca10fabd02c8d7cdd1efcdbb3dc3fe5a0d0749602060243592610fd6611a95565b6001600160a01b03165f818152600783526040908190208590555193845292a2005b346102b15760403660031901126102b1576110116113bb565b6110196113d1565b6001600160a01b039182165f908152600a60209081526040808320949093168252928352819020549051908152f35b346102b15760403660031901126102b1576110616113bb565b6024359061106d611a95565b6001600160a01b03165f81815260096020526040902054909190156110b4575b60205f516020611abc5f395f51905f5291835f52600982528060405f2055604051908152a2005b600b54600160401b811015610e27575f516020611abc5f395f51905f52916110e482600160209401600b55611705565b81546001600160a01b0360039290921b91821b19169086901b179055915061108d9050565b346102b15760203660031901126102b1576111226113bb565b6040516370a0823160e01b81523360048201526020816024816001600160a01b0386165afa5f9181611219575b5061118e5760405162461bcd60e51b815260206004820152601260248201527124b73b30b634b21031b7b63632b1ba34b7b760711b6044820152606490fd5b156111e057335f52600a60205260405f2060018060a01b0382165f5260205260405f2054156111b957005b335f908152600a602090815260408083206001600160a01b03909416835292905220429055005b60405162461bcd60e51b8152602060048201526011602482015270111bd95cc81b9bdd081a1bdb1908139195607a1b6044820152606490fd5b9091506020813d602011611245575b816112356020938361148d565b810103126102b15751908361114f565b3d9150611228565b346102b15761125b366113e7565b9160018060a01b035f541633148015611301575b156112cd576001600160a01b039081165f8181526008602090815260408083209590941680835294815290839020859055915193845291927f6c1649831c4a2bebf79dfe8a2623ce1f5c65c9ab62903600dc011ee60a11c4089190a3005b60405162461bcd60e51b815260206004820152600c60248201526b155b985d5d1a1bdc9a5e995960a21b6044820152606490fd5b50604051635f9464c560e11b81523360048201526020816024817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa908115610efe575f9161135b575b5061126f565b611374915060203d602011610ef757610ee9818361148d565b84611355565b346102b1575f3660031901126102b1577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b600435906001600160a01b03821682036102b157565b602435906001600160a01b03821682036102b157565b60609060031901126102b1576004356001600160a01b03811681036102b157906024356001600160a01b03811681036102b1579060443590565b805180835260209291819084018484015e5f828201840152601f01601f1916010190565b9181601f840112156102b1578235916001600160401b0383116102b157602083818601950101116102b157565b608081019081106001600160401b03821117610e2757604052565b601f909101601f19168101906001600160401b03821190821017610e2757604052565b6001600160401b038111610e275760051b60200190565b9080601f830112156102b1578135906114df826114b0565b926114ed604051948561148d565b82845260208085019360051b8201019182116102b157602001915b8183106115155750505090565b82356001600160a01b03811681036102b157815260209283019201611508565b9080601f830112156102b15781359061154d826114b0565b9261155b604051948561148d565b82845260208085019360051b820101908282116102b15760208101935b82851061158757505050505090565b84356001600160401b0381116102b157820184603f820112156102b1576020810135906115b3826114b0565b916115c1604051938461148d565b8083526020808085019260051b84010101918783116102b157604001905b8282106115f757505050815260209485019401611578565b81358152602091820191016115df565b90600182811c92168015611635575b602083101461162157565b634e487b7160e01b5f52602260045260245ffd5b91607f1691611616565b9060405191825f82549261165284611607565b80845293600181169081156116bd5750600114611679575b506116779250038361148d565b565b90505f9291925260205f20905f915b8183106116a1575050906020611677928201015f61166a565b6020919350806001915483858901015201910190918492611688565b90506020925061167794915060ff191682840152151560051b8201015f61166a565b909260809261170295948352602083015260408201528160608201520190611421565b90565b600b5481101561171d57600b5f5260205f2001905f90565b634e487b7160e01b5f52603260045260245ffd5b805482101561171d575f5260205f2001905f90565b908160209103126102b1575180151581036102b15790565b80511561171d5760200190565b805182101561171d5760209160051b010190565b9060405161178c81611472565b60606117b3600383958054855260018101546020860152600281015460408601520161163f565b910152565b818102929181159184041417156117cb57565b634e487b7160e01b5f52601160045260245ffd5b919082018092116117cb57565b93919290935f935f915b8651831015611966576001600160a01b03611811848961176b565b5116965f91825b611822868661176b565b5151841015611917576118af6001916118458661183f8a8a61176b565b5161176b565b518c5f528360205260405f20905f526020528561186460405f2061177f565b8a8a8251158061190f575b6118bf575b6118a99361183f611888926118949461176b565b516020830151906117b8565b9060408101518083116118b7575b50516117df565b906117df565b930192611818565b91505f6118a2565b505050506118a9896118946118888961183f8d6040516118de81611472565b6003548152600454602082015260055460408201526118fd600661163f565b60608201529594509250509350611874565b50831561186f565b6001935061194c670de0b6b3a764000091611953949b9a93979a9996995f52600760205260405f205490811561195e576117b8565b04906117df565b9501919390936117f6565b8391506117b8565b939495505050505f90600b54915b82811061198057505050565b61198981611705565b90546001600160a01b038481165f818152600a6020908152604080832060039790971b9590951c90931680825294909252919020548015159081611a61575b506119d8575b5050600101611974565b604051906370a0823160e01b82526004820152602081602481855afa5f9181611a2e575b50156119ce57611a0d575b806119ce565b60019195611a27915f52600960205260405f2054906117df565b9490611a07565b9091506020813d8211611a59575b81611a496020938361148d565b810103126102b15751905f6119fc565b3d9150611a3c565b905062093a8081018091116117cb574210155f6119c8565b5f5b828110611a8757505050565b606082820152602001611a7b565b5f546001600160a01b03163303611aa857565b63118cdaa760e01b5f523360045260245ffdfecde4878b12c6b6c93c3eb3433ffbfdb24eb29698d8ac6ac98caf5db49d823457db8ed69eccdb6ff5105e3934ba9b515bb1b9d366e3a0c25a5f852ee20b6783e28be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0a264697066735822122060089b58bfa930766963cea3bdd8c52ce8caf63016ff1a032076fe2eebdb853964736f6c634300081c0033"
|
|
699
|
+
}
|