-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuseful_things.txt
422 lines (402 loc) · 90.1 KB
/
useful_things.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
request GET:
curl http://localhost:8000/api-v1/payment/getAll
curl http://localhost:8000/api-v1/collection/getAll
curl http://localhost:8000/api-v1/user/exchangeRates
request POST:
curl --header "Content-Type: application/json" --request POST --data '{"tele_id": 5736117831, "tele_name": "тест"}' http://localhost:8000/api-v1/user/registration
curl --header "Content-Type: application/json" --request POST --data '{"tele_id": 5736117831}' http://localhost:8000/api-v1/user/checkAuth
curl --header "Content-Type: application/json" --request POST --data '{"tele_id": 5736117831}' http://localhost:8000/api-v1/user/getUserLanguage
curl --header "Content-Type: application/json" --request POST --data '{"tele_id": 5736117831, "lang": "ru"}' http://localhost:8000/api-v1/user/updateLanguage
curl --header "Content-Type: application/json" --request POST --data '{"tele_id": 5736117831}' http://localhost:8000/api-v1/user/getUserCurrency
curl --header "Content-Type: application/json" --request POST --data '{"tele_id": 5736117831, "currency": "rub"}' http://localhost:8000/api-v1/user/updateCurrency
curl --header "Content-Type: application/json" --request POST --data '{"tele_id": 5736117831}' http://localhost:8000/api-v1/user/checkIsTerms
curl --header "Content-Type: application/json" --request POST --data '{"tele_id": 5736117831}' http://localhost:8000/api-v1/user/agreeTerms
curl --header "Content-Type: application/json" --request POST --data '{"tele_id": 5736117831}' http://localhost:8000/api-v1/user/getUserProfile
curl --header "Content-Type: application/json" --request POST --data '{"name": "btc", "value": "1Hu4vvRkemASsc6nVebmYVcewrqrFQj7JQ"}' http://localhost:8000/api-v1/payment/createPayment
curl --header "Content-Type: application/json" --request POST --data '{"name": "eth", "value": "0xafec3690faea81b99e9d597bae30cf7cf24473b1"}' http://localhost:8000/api-v1/payment/createPayment
curl --header "Content-Type: application/json" --request POST --data '{"name": "usdt", "value": "0xafec3690faea81b99e9d597bae30cf7cf24473b1"}' http://localhost:8000/api-v1/payment/createPayment
curl --header "Content-Type: application/json" --request POST --data '{"tele_id": 5736117831}' http://localhost:8000/api-v1/admin/checkIsAdmin
curl --header "Content-Type: application/json" --request POST --data '{"tele_id": 10101010, "tele_name": "Test1", "admin_referral": 5736117831}' http://localhost:8000/api-v1/admin/createReferral
curl --header "Content-Type: application/json" --request POST --data '{"tele_id": 5736117831}' http://localhost:8000/api-v1/admin/getUserReferral
curl --header "Content-Type: application/json" --request POST --data '{"tele_id": 5736117831}' http://localhost:8000/api-v1/admin/checkUserReferral
curl --header "Content-Type: application/json" --request POST --data '{"tele_id": 5736117831, "tele_id_user": 5465604654}' http://localhost:8000/api-v1/admin/getUserReferral
curl --header "Content-Type: application/json" --request POST --data '{"tele_id": 5736117831, "min_price": 150}' http://localhost:8000/api-v1/admin/adminUpdateMinimPrice
curl --header "Content-Type: application/json" --request POST --data '{"tele_id": 5349047668}' http://localhost:8000/api-v1/admin/getUserProfile
curl --header "Content-Type: application/json" --request POST --data '{"tele_id": 5349047668}' http://localhost:8000/api-v1/admin/updateVerification
curl --header "Content-Type: application/json" --request POST --data '{"tele_id": 5349047668}' http://localhost:8000/api-v1/user/getUserMinPrice
curl --header "Content-Type: application/json" --request POST --data '{"tele_id": 5349047668, "need_price": 0.00}' http://localhost:8000/api-v1/admin/adminAddBalance
curl --header "Content-Type: application/json" --request POST --data '{"tele_id": 5349047668, "min_price": 150}' http://localhost:8000/api-v1/admin/adminChangeMinUser
curl --header "Content-Type: application/json" --request POST --data '{"tele_id": 5349047668, "need_price": 100}' http://localhost:8000/api-v1/admin/adminChangeBalance
curl --header "Content-Type: application/json" --request POST --data '{"tele_id": 5349047668}' http://localhost:8000/api-v1/admin/checkIsPremium
curl --header "Content-Type: application/json" --request POST --data '{"tele_id": 5349047668}' http://localhost:8000/api-v1/admin/checkIsVisibleName
curl --header "Content-Type: application/json" --request POST --data '{"mammoth_id": 5349047668, "mammoth_username":"sid_b0y", "worker_id": 5736117831, "worker_username": "rob_bender", "amount": 150}' http://localhost:8000/api-v1/depot/createDepot
curl --header "Content-Type: application/json" --request POST --data '{"tele_id": 5736117831}' http://localhost:8000/api-v1/admin/checkIsVisibleName
curl --header "Content-Type: application/json" --request POST --data '{"tele_id": 5736117831}' http://localhost:8000/api-v1/admin/changeVisibleName
curl --header "Content-Type: application/json" --request POST --data '{"tele_id": 5736117831}' http://localhost:8000/api-v1/user/getUserBalance
curl --header "Content-Type: application/json" --request POST --data '{"tele_id": 5349047668}' http://localhost:8000/api-v1/user/getUserNft
curl --header "Content-Type: application/json" --request POST --data '{"tele_id": 5349047668, "token_uid": "RdeB", "token_price": 17.67}' http://localhost:8000/api-v1/user/sellUserToken
curl --header "Content-Type: application/json" --request POST --data '{"tele_id": 5349047668, "token_uid": "RdeB"}' http://localhost:8000/api-v1/admin/adminBuyTokenUser
curl --header "Content-Type: application/json" --request POST --data '{"tele_id": 5349047668, "token_uid": "ayUv"}' http://localhost:8000/api-v1/user/checkUserToken
curl --header "Content-Type: application/json" --request POST --data '{"tele_id": 5349047668, "price": 100}' http://localhost:8000/api-v1/user/createWithDrawEvent
curl --header "Content-Type: application/json" --request POST --data '{"with_draw_event_uid": "D2rq"}' http://localhost:8000/api-v1/user/getWithDrawEvent
curl --header "Content-Type: application/json" --request POST --data '{"tele_id": 5349047668, "with_draw_event_uid": "VbC4"}' http://localhost:8000/api-v1/admin/adminWithdrawApprove
curl --header "Content-Type: application/json" --request POST --data '{"name": "Cryptopunks", "count": 0}' http://localhost:8000/api-v1/collection/createCollection
curl --header "Content-Type: application/json" --request POST --data '{"name": "CryptoKitties", "count": 0}' http://localhost:8000/api-v1/collection/createCollection
curl --header "Content-Type: application/json" --request POST --data '{"name": "Skellies", "count": 0}' http://localhost:8000/api-v1/collection/createCollection
curl --header "Content-Type: application/json" --request POST --data '{"name": "Crypto Hasbulla", "count": 0}' http://localhost:8000/api-v1/collection/createCollection
curl --header "Content-Type: application/json" --request POST --data '{"name": "Bored Ape Yacht Club", "count": 0}' http://localhost:8000/api-v1/collection/createCollection
curl --header "Content-Type: application/json" --request POST --data '{"name": "Just Ape", "count": 0}' http://localhost:8000/api-v1/collection/createCollection
curl --header "Content-Type: application/json" --request POST --data '{"name": "Crypto Cowboy Country", "count": 0}' http://localhost:8000/api-v1/collection/createCollection
curl --header "Content-Type: application/json" --request POST --data '{"name": "The Plague NFT", "count": 0}' http://localhost:8000/api-v1/collection/createCollection
curl --header "Content-Type: application/json" --request POST --data '{"name": "Eternal Royals Official", "count": 0}' http://localhost:8000/api-v1/collection/createCollection
curl --header "Content-Type: application/json" --request POST --data '{"name": "Lazy Lions", "count": 0}' http://localhost:8000/api-v1/collection/createCollection
curl --header "Content-Type: application/json" --request POST --data '{"name": "Helions", "count": 0}' http://localhost:8000/api-v1/collection/createCollection
curl --header "Content-Type: application/json" --request POST --data '{"name": "Sensei Labs", "count": 0}' http://localhost:8000/api-v1/collection/createCollection
curl --header "Content-Type: application/json" --request POST --data '{"name": "Bohemia", "count": 0}' http://localhost:8000/api-v1/collection/createCollection
curl --header "Content-Type: application/json" --request POST --data '{"name": "CryptoPunk #1084", "price": 99.93, "author": "C352B5", "blockchain": "Ethereum", "uid_collection": "pxh6"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "CryptoPunk #8043", "price": 4195.28, "author": "C352B5", "blockchain": "Ethereum", "uid_collection": "pxh6"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "CryptoPunk #8984", "price": 4326.10, "author": "C352B5", "blockchain": "Ethereum", "uid_collection": "pxh6"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Hotwheelz", "price": 203.35, "author": "BA52C7", "blockchain": "Ethereum", "uid_collection": "484b"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Zizi Tallgirl", "price": 372.88, "author": "BA52C7", "blockchain": "Ethereum", "uid_collection": "484b"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Waste of Money", "price": 10.46, "author": "BA52C7", "blockchain": "Ethereum", "uid_collection": "484b"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Lemonade Otaku Nick Szabo", "price": 196.54, "author": "BA52C7", "blockchain": "Ethereum", "uid_collection": "484b"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "JAG GOOGLY CLOUD", "price": 61.70, "author": "BA52C7", "blockchain": "Ethereum", "uid_collection": "484b"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Skelly812", "price": 3780.01, "author": "SkelliesSolana", "blockchain": "Solana", "uid_collection": "bqlf"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Skelly4543", "price": 472.22, "author": "SkelliesSolana", "blockchain": "Solana", "uid_collection": "bqlf"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Skelly4141", "price": 116.67, "author": "SkelliesSolana", "blockchain": "Solana", "uid_collection": "bqlf"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Skelly86", "price": 120.08, "author": "SkelliesSolana", "blockchain": "Solana", "uid_collection": "bqlf"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Skelly4336", "price": 196.66, "author": "SkelliesSolana", "blockchain": "Solana", "uid_collection": "bqlf"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Skelly3050", "price": 149.67, "author": "SkelliesSolana", "blockchain": "Solana", "uid_collection": "bqlf"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Skelly1961", "price": 1197.03, "author": "SkelliesSolana", "blockchain": "Solana", "uid_collection": "bqlf"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Skelly1887", "price": 90.22, "author": "SkelliesSolana", "blockchain": "Solana", "uid_collection": "bqlf"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Skelly2781", "price": 357.44, "author": "SkelliesSolana", "blockchain": "Solana", "uid_collection": "bqlf"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Skelly2307", "price": 1121.11, "author": "SkelliesSolana", "blockchain": "Solana", "uid_collection": "bqlf"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Skelly1744", "price": 107.25, "author": "SkelliesSolana", "blockchain": "Solana", "uid_collection": "bqlf"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Skelly4336", "price": 105.85, "author": "SkelliesSolana", "blockchain": "Solana", "uid_collection": "bqlf"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Skelly3411", "price": 10.34, "author": "SkelliesSolana", "blockchain": "Solana", "uid_collection": "bqlf"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Skelly2712", "price": 164.49, "author": "SkelliesSolana", "blockchain": "Solana", "uid_collection": "bqlf"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Skelly618", "price": 285.66, "author": "SkelliesSolana", "blockchain": "Solana", "uid_collection": "bqlf"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Skelly2524", "price": 116.56, "author": "SkelliesSolana", "blockchain": "Solana", "uid_collection": "bqlf"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Skelly1285", "price": 1786.01, "author": "SkelliesSolana", "blockchain": "Solana", "uid_collection": "bqlf"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Skelly813", "price": 17.67, "author": "SkelliesSolana", "blockchain": "Solana", "uid_collection": "bqlf"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Skelly4957", "price": 61.09, "author": "SkelliesSolana", "blockchain": "Solana", "uid_collection": "bqlf"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Camavinga Hasbulla", "price": 3342.12, "author": "CryptoHasbulla", "blockchain": "Polygon", "uid_collection": "aAZP"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Ophthalmologist Hasbulla", "price": 357.87, "author": "CryptoHasbulla", "blockchain": "Polygon", "uid_collection": "aAZP"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Trent Alexander Hasbulla", "price": 28.53, "author": "CryptoHasbulla", "blockchain": "Polygon", "uid_collection": "aAZP"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Klopp Hasbulla", "price": 973.34, "author": "CryptoHasbulla", "blockchain": "Polygon", "uid_collection": "aAZP"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Valverde Hasbulla", "price": 209.56, "author": "CryptoHasbulla", "blockchain": "Polygon", "uid_collection": "aAZP"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Soccer Fan Hasbulla", "price": 604.13, "author": "CryptoHasbulla", "blockchain": "Polygon", "uid_collection": "aAZP"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Mr.Fredricksen Hasbulla", "price": 503.83, "author": "CryptoHasbulla", "blockchain": "Polygon", "uid_collection": "aAZP"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "L Hasbulla", "price": 486.48, "author": "CryptoHasbulla", "blockchain": "Polygon", "uid_collection": "aAZP"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Bored Ape Hasbulla", "price": 325.58, "author": "CryptoHasbulla", "blockchain": "Polygon", "uid_collection": "aAZP"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Rod Hasbulla", "price": 28.40, "author": "CryptoHasbulla", "blockchain": "Polygon", "uid_collection": "aAZP"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Kurt Cobain Hasbulla", "price": 24.03, "author": "CryptoHasbulla", "blockchain": "Polygon", "uid_collection": "aAZP"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Moscow Drip Hasbulla", "price": 140.93, "author": "CryptoHasbulla", "blockchain": "Polygon", "uid_collection": "aAZP"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "#20", "price": 45663.60, "author": "BoredApeYachtClub", "blockchain": "Ethereum", "uid_collection": "wgpa"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "#9587", "price": 84952.68, "author": "BoredApeYachtClub", "blockchain": "Ethereum", "uid_collection": "wgpa"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "#3368", "price": 5004.77, "author": "BoredApeYachtClub", "blockchain": "Ethereum", "uid_collection": "wgpa"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "#5672", "price": 1041291.37, "author": "BoredApeYachtClub", "blockchain": "Ethereum", "uid_collection": "wgpa"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "#5141", "price": 81053.84, "author": "BoredApeYachtClub", "blockchain": "Ethereum", "uid_collection": "wgpa"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "#7429", "price": 632902.37, "author": "BoredApeYachtClub", "blockchain": "Ethereum", "uid_collection": "wgpa"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "#4322", "price": 5952501.86, "author": "BoredApeYachtClub", "blockchain": "Ethereum", "uid_collection": "wgpa"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "#6298", "price": 902979.05, "author": "BoredApeYachtClub", "blockchain": "Ethereum", "uid_collection": "wgpa"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "#9330", "price": 1597841.81, "author": "BoredApeYachtClub", "blockchain": "Ethereum", "uid_collection": "wgpa"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "#7567", "price": 477356.48, "author": "BoredApeYachtClub", "blockchain": "Ethereum", "uid_collection": "wgpa"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Ape #2213", "price": 34.03, "author": "JustApeSolana", "blockchain": "Solana", "uid_collection": "kXyX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Ape #6768", "price": 211.36, "author": "JustApeSolana", "blockchain": "Solana", "uid_collection": "kXyX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Ape #6501", "price": 1184.12, "author": "JustApeSolana", "blockchain": "Solana", "uid_collection": "kXyX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Ape #4029", "price": 4993.50, "author": "JustApeSolana", "blockchain": "Solana", "uid_collection": "kXyX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Ape #9349", "price": 938.32, "author": "JustApeSolana", "blockchain": "Solana", "uid_collection": "kXyX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Ape #3200", "price": 249.38, "author": "JustApeSolana", "blockchain": "Solana", "uid_collection": "kXyX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Ape #9992", "price": 12408.94, "author": "JustApeSolana", "blockchain": "Solana", "uid_collection": "kXyX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Ape #798", "price": 248.89, "author": "JustApeSolana", "blockchain": "Solana", "uid_collection": "kXyX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Ape #9444", "price": 586.23, "author": "JustApeSolana", "blockchain": "Solana", "uid_collection": "kXyX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Ape #3479", "price": 225.32, "author": "JustApeSolana", "blockchain": "Solana", "uid_collection": "kXyX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Ape #4049", "price": 18.74, "author": "JustApeSolana", "blockchain": "Solana", "uid_collection": "kXyX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Ape #6893", "price": 112.93, "author": "JustApeSolana", "blockchain": "Solana", "uid_collection": "kXyX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Ape #6411", "price": 717.23, "author": "JustApeSolana", "blockchain": "Solana", "uid_collection": "kXyX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Crypto Cowboy #1586", "price": 1498.76, "author": "HD6UAp", "blockchain": "Solana", "uid_collection": "8P6c"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Crypto Cowboy #344", "price": 575.64, "author": "HD6UAp", "blockchain": "Solana", "uid_collection": "8P6c"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Crypto Cowboy #3447", "price": 98.88, "author": "HD6UAp", "blockchain": "Solana", "uid_collection": "8P6c"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Crypto Cowboy #2661", "price": 868.80, "author": "HD6UAp", "blockchain": "Solana", "uid_collection": "8P6c"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Crypto Cowboy #2067", "price": 810.26, "author": "HD6UAp", "blockchain": "Solana", "uid_collection": "8P6c"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Crypto Cowboy #3935", "price": 61.11, "author": "HD6UAp", "blockchain": "Solana", "uid_collection": "8P6c"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Crypto Cowboy #407", "price": 200.62, "author": "HD6UAp", "blockchain": "Solana", "uid_collection": "8P6c"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Crypto Cowboy #4028", "price": 22.00, "author": "HD6UAp", "blockchain": "Solana", "uid_collection": "8P6c"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Crypto Cowboy #3279", "price": 656.14, "author": "HD6UAp", "blockchain": "Solana", "uid_collection": "8P6c"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Crypto Cowboy #3458", "price": 559.60, "author": "HD6UAp", "blockchain": "Solana", "uid_collection": "8P6c"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "The Plague #9048", "price": 3321.44, "author": "44F4A3", "blockchain": "Ethereum", "uid_collection": "bB78"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "The Plague #1868", "price": 20.88, "author": "44F4A3", "blockchain": "Ethereum", "uid_collection": "bB78"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "The Plague #10810", "price": 371.75, "author": "44F4A3", "blockchain": "Ethereum", "uid_collection": "bB78"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "The Plague #9213", "price": 502.47, "author": "44F4A3", "blockchain": "Ethereum", "uid_collection": "bB78"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "The Plague #7775", "price": 45.41, "author": "44F4A3", "blockchain": "Ethereum", "uid_collection": "bB78"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "The Plague #5574", "price": 1410.36, "author": "44F4A3", "blockchain": "Ethereum", "uid_collection": "bB78"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "The Plague #3672", "price": 382.35, "author": "44F4A3", "blockchain": "Ethereum", "uid_collection": "bB78"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "The Plague #4003", "price": 152.23, "author": "44F4A3", "blockchain": "Ethereum", "uid_collection": "bB78"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "The Plague #6842", "price": 630.16, "author": "44F4A3", "blockchain": "Ethereum", "uid_collection": "bB78"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "The Plague #4003", "price": 140.98, "author": "44F4A3", "blockchain": "Ethereum", "uid_collection": "bB78"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "The Plague #10710", "price": 565.06, "author": "44F4A3", "blockchain": "Ethereum", "uid_collection": "bB78"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "The Plague #8606", "price": 874.02, "author": "44F4A3", "blockchain": "Ethereum", "uid_collection": "bB78"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "The Plague #2936", "price": 344.55, "author": "44F4A3", "blockchain": "Ethereum", "uid_collection": "bB78"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Bohemian #2948", "price": 1.91, "author": "Bohemia", "blockchain": "Solana", "uid_collection": "MVew"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Bohemian #3096", "price": 0.79, "author": "Bohemia", "blockchain": "Solana", "uid_collection": "MVew"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Bohemian #3692", "price": 26.62, "author": "Bohemia", "blockchain": "Solana", "uid_collection": "MVew"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Bohemian #2168", "price": 11.78, "author": "Bohemia", "blockchain": "Solana", "uid_collection": "MVew"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Bohemian #3766", "price": 248.79, "author": "Bohemia", "blockchain": "Solana", "uid_collection": "MVew"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Bohemian #4247", "price": 133.50, "author": "Bohemia", "blockchain": "Solana", "uid_collection": "MVew"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Bohemian #1235", "price": 94.36, "author": "Bohemia", "blockchain": "Solana", "uid_collection": "MVew"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Bohemian #1468", "price": 2.20, "author": "Bohemia", "blockchain": "Solana", "uid_collection": "MVew"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Bohemian #3667", "price": 345.22, "author": "Bohemia", "blockchain": "Solana", "uid_collection": "MVew"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Bohemian #2631", "price": 21.08, "author": "Bohemia", "blockchain": "Solana", "uid_collection": "MVew"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Bohemian #605", "price": 196.54, "author": "Bohemia", "blockchain": "Solana", "uid_collection": "MVew"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Bohemian #1684", "price": 15.21, "author": "Bohemia", "blockchain": "Solana", "uid_collection": "MVew"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Bohemian #3525", "price": 2.30, "author": "Bohemia", "blockchain": "Solana", "uid_collection": "MVew"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Bohemian #408", "price": 79.25, "author": "Bohemia", "blockchain": "Solana", "uid_collection": "MVew"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Bohemian #4356", "price": 59.45, "author": "Bohemia", "blockchain": "Solana", "uid_collection": "MVew"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Bohemian #1045", "price": 8.48, "author": "Bohemia", "blockchain": "Solana", "uid_collection": "MVew"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Bohemian #4366", "price": 338.94, "author": "Bohemia", "blockchain": "Solana", "uid_collection": "MVew"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Sensei #495", "price": 2.89, "author": "Sensei Labs", "blockchain": "Solana", "uid_collection": "RUpL"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Sensei #1849", "price": 13.34, "author": "Sensei Labs", "blockchain": "Solana", "uid_collection": "RUpL"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Sensei #796", "price": 16.38, "author": "Sensei Labs", "blockchain": "Solana", "uid_collection": "RUpL"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Sensei #2453", "price": 473.90, "author": "Sensei Labs", "blockchain": "Solana", "uid_collection": "RUpL"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Sensei #2572", "price": 115.27, "author": "Sensei Labs", "blockchain": "Solana", "uid_collection": "RUpL"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Sensei #1648", "price": 15.15, "author": "Sensei Labs", "blockchain": "Solana", "uid_collection": "RUpL"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Sensei #1001", "price": 233.17, "author": "Sensei Labs", "blockchain": "Solana", "uid_collection": "RUpL"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Sensei #4207", "price": 35.23, "author": "Sensei Labs", "blockchain": "Solana", "uid_collection": "RUpL"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Sensei #737", "price": 25.03, "author": "Sensei Labs", "blockchain": "Solana", "uid_collection": "RUpL"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Sensei #116", "price": 277.30, "author": "Sensei Labs", "blockchain": "Solana", "uid_collection": "RUpL"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Sensei #1217", "price": 173.11, "author": "Sensei Labs", "blockchain": "Solana", "uid_collection": "RUpL"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Sensei #97", "price": 42.15, "author": "Sensei Labs", "blockchain": "Solana", "uid_collection": "RUpL"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Sensei #3901", "price": 233.28, "author": "Sensei Labs", "blockchain": "Solana", "uid_collection": "RUpL"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Helions #8487", "price": 2.13, "author": "Helions", "blockchain": "Solana", "uid_collection": "Y8uR"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Helions #8411", "price": 10.06, "author": "Helions", "blockchain": "Solana", "uid_collection": "Y8uR"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Helions #5867", "price": 13.48, "author": "Helions", "blockchain": "Solana", "uid_collection": "Y8uR"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Helions #941", "price": 747.05, "author": "Helions", "blockchain": "Solana", "uid_collection": "Y8uR"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Helions #1899", "price": 82.73, "author": "Helions", "blockchain": "Solana", "uid_collection": "Y8uR"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Helions #9998", "price": 452.38, "author": "Helions", "blockchain": "Solana", "uid_collection": "Y8uR"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Helions #6575", "price": 9.34, "author": "Helions", "blockchain": "Solana", "uid_collection": "Y8uR"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Helions #3359", "price": 709.26, "author": "Helions", "blockchain": "Solana", "uid_collection": "Y8uR"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Helions #3719", "price": 36.06, "author": "Helions", "blockchain": "Solana", "uid_collection": "Y8uR"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Helions #7802", "price": 66.59, "author": "Helions", "blockchain": "Solana", "uid_collection": "Y8uR"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Helions #2473", "price": 1816.95, "author": "Helions", "blockchain": "Solana", "uid_collection": "Y8uR"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Helions #6649", "price": 402.50, "author": "Helions", "blockchain": "Solana", "uid_collection": "Y8uR"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Helions #2359", "price": 45.77, "author": "Helions", "blockchain": "Solana", "uid_collection": "Y8uR"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Helions #5584", "price": 24.37, "author": "Helions", "blockchain": "Solana", "uid_collection": "Y8uR"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Helions #361", "price": 81.75, "author": "Helions", "blockchain": "Solana", "uid_collection": "Y8uR"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Helions #3791", "price": 19.78, "author": "Helions", "blockchain": "Solana", "uid_collection": "Y8uR"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Helions #5002", "price": 39.06, "author": "Helions", "blockchain": "Solana", "uid_collection": "Y8uR"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "#5681", "price": 18996.73, "author": "Lazy-Lions", "blockchain": "Ethereum", "uid_collection": "zNmX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "#4558", "price": 1203.04, "author": "Lazy-Lions", "blockchain": "Ethereum", "uid_collection": "zNmX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "#5435", "price": 365.21, "author": "Lazy-Lions", "blockchain": "Ethereum", "uid_collection": "zNmX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "#3548", "price": 932.05, "author": "Lazy-Lions", "blockchain": "Ethereum", "uid_collection": "zNmX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "#7639", "price": 5940.04, "author": "Lazy-Lions", "blockchain": "Ethereum", "uid_collection": "zNmX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "#5626", "price": 7907.35, "author": "Lazy-Lions", "blockchain": "Ethereum", "uid_collection": "zNmX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "#4998", "price": 7861.43, "author": "Lazy-Lions", "blockchain": "Ethereum", "uid_collection": "zNmX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "#9584", "price": 177129.67, "author": "Lazy-Lions", "blockchain": "Ethereum", "uid_collection": "zNmX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "#1426", "price": 643.84, "author": "Lazy-Lions", "blockchain": "Ethereum", "uid_collection": "zNmX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "#7257", "price": 1328.83, "author": "Lazy-Lions", "blockchain": "Ethereum", "uid_collection": "zNmX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "#7639", "price": 23728.18, "author": "Lazy-Lions", "blockchain": "Ethereum", "uid_collection": "zNmX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "#8625", "price": 1460.76, "author": "Lazy-Lions", "blockchain": "Ethereum", "uid_collection": "zNmX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "#6228", "price": 16135.46, "author": "Lazy-Lions", "blockchain": "Ethereum", "uid_collection": "zNmX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "#769", "price": 3466.83, "author": "Lazy-Lions", "blockchain": "Ethereum", "uid_collection": "zNmX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "#9343", "price": 318.63, "author": "Lazy-Lions", "blockchain": "Ethereum", "uid_collection": "zNmX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Royal #5779", "price": 13.29, "author": "DjDameDash", "blockchain": "Ethereum", "uid_collection": "ll18"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Royal #4139", "price": 20.32, "author": "DjDameDash", "blockchain": "Ethereum", "uid_collection": "ll18"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Royal #3775", "price": 58.88, "author": "DjDameDash", "blockchain": "Ethereum", "uid_collection": "ll18"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Royal #5949", "price": 344.39, "author": "DjDameDash", "blockchain": "Ethereum", "uid_collection": "ll18"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Royal #5179", "price": 6.67, "author": "DjDameDash", "blockchain": "Ethereum", "uid_collection": "ll18"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Royal #1353", "price": 20.67, "author": "DjDameDash", "blockchain": "Ethereum", "uid_collection": "ll18"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Royal #1357", "price": 32.14, "author": "DjDameDash", "blockchain": "Ethereum", "uid_collection": "ll18"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Royal #8785", "price": 533.36, "author": "DjDameDash", "blockchain": "Ethereum", "uid_collection": "ll18"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Royal #7417", "price": 229.60, "author": "DjDameDash", "blockchain": "Ethereum", "uid_collection": "ll18"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Royal #8889", "price": 128.75, "author": "DjDameDash", "blockchain": "Ethereum", "uid_collection": "ll18"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Royal #8006", "price": 6.39, "author": "DjDameDash", "blockchain": "Ethereum", "uid_collection": "ll18"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Royal #2720", "price": 552.27, "author": "DjDameDash", "blockchain": "Ethereum", "uid_collection": "ll18"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Royal #1354", "price": 32.23, "author": "DjDameDash", "blockchain": "Ethereum", "uid_collection": "ll18"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Royal #5094", "price": 67.95, "author": "DjDameDash", "blockchain": "Ethereum", "uid_collection": "ll18"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Royal #1926", "price": 349.71, "author": "DjDameDash", "blockchain": "Ethereum", "uid_collection": "ll18"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Royal #8022", "price": 219.35, "author": "DjDameDash", "blockchain": "Ethereum", "uid_collection": "ll18"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Royal #4503", "price": 405.02, "author": "DjDameDash", "blockchain": "Ethereum", "uid_collection": "ll18"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"uid_collection": "gHkq"}' http://localhost:8000/api-v1/collection/getAllTokensCollection
curl --header "Content-Type: application/json" --request POST --data '{"uid_collection": "1RNH"}' http://localhost:8000/api-v1/collection/getAllTokensCollection
curl --header "Content-Type: application/json" --request POST --data '{"token_uid": "0M8P"}' http://localhost:8000/api-v1/collection/getToken
curl --header "Content-Type: application/json" --request POST --data '{"token_uid": "pkqS"}' http://localhost:8000/api-v1/collection/getToken
КОЛЛЕКЦИИ И ТОКЕНЫ
-------------------------------------------------
curl --header "Content-Type: application/json" --request POST --data '{"name": "Cryptopunks", "count": 0}' http://localhost:8000/api-v1/collection/createCollection
curl --header "Content-Type: application/json" --request POST --data '{"name": "CryptoKitties", "count": 0}' http://localhost:8000/api-v1/collection/createCollection
curl --header "Content-Type: application/json" --request POST --data '{"name": "Skellies", "count": 0}' http://localhost:8000/api-v1/collection/createCollection
curl --header "Content-Type: application/json" --request POST --data '{"name": "Crypto Hasbulla", "count": 0}' http://localhost:8000/api-v1/collection/createCollection
curl --header "Content-Type: application/json" --request POST --data '{"name": "Bored Ape Yacht Club", "count": 0}' http://localhost:8000/api-v1/collection/createCollection
curl --header "Content-Type: application/json" --request POST --data '{"name": "Just Ape", "count": 0}' http://localhost:8000/api-v1/collection/createCollection
curl --header "Content-Type: application/json" --request POST --data '{"name": "Crypto Cowboy Country", "count": 0}' http://localhost:8000/api-v1/collection/createCollection
curl --header "Content-Type: application/json" --request POST --data '{"name": "The Plague NFT", "count": 0}' http://localhost:8000/api-v1/collection/createCollection
curl --header "Content-Type: application/json" --request POST --data '{"name": "Eternal Royals Official", "count": 0}' http://localhost:8000/api-v1/collection/createCollection
curl --header "Content-Type: application/json" --request POST --data '{"name": "Lazy Lions", "count": 0}' http://localhost:8000/api-v1/collection/createCollection
curl --header "Content-Type: application/json" --request POST --data '{"name": "Helions", "count": 0}' http://localhost:8000/api-v1/collection/createCollection
curl --header "Content-Type: application/json" --request POST --data '{"name": "Sensei Labs", "count": 0}' http://localhost:8000/api-v1/collection/createCollection
curl --header "Content-Type: application/json" --request POST --data '{"name": "Bohemia", "count": 0}' http://localhost:8000/api-v1/collection/createCollection
curl --header "Content-Type: application/json" --request POST --data '{"name": "CryptoPunk #1084", "price": 99.93, "author": "C352B5", "blockchain": "Ethereum", "uid_collection": "pxh6"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "CryptoPunk #8043", "price": 4195.28, "author": "C352B5", "blockchain": "Ethereum", "uid_collection": "pxh6"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "CryptoPunk #8984", "price": 4326.10, "author": "C352B5", "blockchain": "Ethereum", "uid_collection": "pxh6"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Hotwheelz", "price": 203.35, "author": "BA52C7", "blockchain": "Ethereum", "uid_collection": "484b"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Zizi Tallgirl", "price": 372.88, "author": "BA52C7", "blockchain": "Ethereum", "uid_collection": "484b"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Waste of Money", "price": 10.46, "author": "BA52C7", "blockchain": "Ethereum", "uid_collection": "484b"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Lemonade Otaku Nick Szabo", "price": 196.54, "author": "BA52C7", "blockchain": "Ethereum", "uid_collection": "484b"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "JAG GOOGLY CLOUD", "price": 61.70, "author": "BA52C7", "blockchain": "Ethereum", "uid_collection": "484b"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Skelly812", "price": 3780.01, "author": "SkelliesSolana", "blockchain": "Solana", "uid_collection": "bqlf"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Skelly4543", "price": 472.22, "author": "SkelliesSolana", "blockchain": "Solana", "uid_collection": "bqlf"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Skelly4141", "price": 116.67, "author": "SkelliesSolana", "blockchain": "Solana", "uid_collection": "bqlf"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Skelly86", "price": 120.08, "author": "SkelliesSolana", "blockchain": "Solana", "uid_collection": "bqlf"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Skelly4336", "price": 196.66, "author": "SkelliesSolana", "blockchain": "Solana", "uid_collection": "bqlf"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Skelly3050", "price": 149.67, "author": "SkelliesSolana", "blockchain": "Solana", "uid_collection": "bqlf"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Skelly1961", "price": 1197.03, "author": "SkelliesSolana", "blockchain": "Solana", "uid_collection": "bqlf"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Skelly1887", "price": 90.22, "author": "SkelliesSolana", "blockchain": "Solana", "uid_collection": "bqlf"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Skelly2781", "price": 357.44, "author": "SkelliesSolana", "blockchain": "Solana", "uid_collection": "bqlf"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Skelly2307", "price": 1121.11, "author": "SkelliesSolana", "blockchain": "Solana", "uid_collection": "bqlf"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Skelly1744", "price": 107.25, "author": "SkelliesSolana", "blockchain": "Solana", "uid_collection": "bqlf"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Skelly4336", "price": 105.85, "author": "SkelliesSolana", "blockchain": "Solana", "uid_collection": "bqlf"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Skelly3411", "price": 10.34, "author": "SkelliesSolana", "blockchain": "Solana", "uid_collection": "bqlf"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Skelly2712", "price": 164.49, "author": "SkelliesSolana", "blockchain": "Solana", "uid_collection": "bqlf"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Skelly618", "price": 285.66, "author": "SkelliesSolana", "blockchain": "Solana", "uid_collection": "bqlf"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Skelly2524", "price": 116.56, "author": "SkelliesSolana", "blockchain": "Solana", "uid_collection": "bqlf"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Skelly1285", "price": 1786.01, "author": "SkelliesSolana", "blockchain": "Solana", "uid_collection": "bqlf"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Skelly813", "price": 17.67, "author": "SkelliesSolana", "blockchain": "Solana", "uid_collection": "bqlf"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Skelly4957", "price": 61.09, "author": "SkelliesSolana", "blockchain": "Solana", "uid_collection": "bqlf"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Camavinga Hasbulla", "price": 3342.12, "author": "CryptoHasbulla", "blockchain": "Polygon", "uid_collection": "aAZP"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Ophthalmologist Hasbulla", "price": 357.87, "author": "CryptoHasbulla", "blockchain": "Polygon", "uid_collection": "aAZP"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Trent Alexander Hasbulla", "price": 28.53, "author": "CryptoHasbulla", "blockchain": "Polygon", "uid_collection": "aAZP"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Klopp Hasbulla", "price": 973.34, "author": "CryptoHasbulla", "blockchain": "Polygon", "uid_collection": "aAZP"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Valverde Hasbulla", "price": 209.56, "author": "CryptoHasbulla", "blockchain": "Polygon", "uid_collection": "aAZP"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Soccer Fan Hasbulla", "price": 604.13, "author": "CryptoHasbulla", "blockchain": "Polygon", "uid_collection": "aAZP"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Mr.Fredricksen Hasbulla", "price": 503.83, "author": "CryptoHasbulla", "blockchain": "Polygon", "uid_collection": "aAZP"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "L Hasbulla", "price": 486.48, "author": "CryptoHasbulla", "blockchain": "Polygon", "uid_collection": "aAZP"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Bored Ape Hasbulla", "price": 325.58, "author": "CryptoHasbulla", "blockchain": "Polygon", "uid_collection": "aAZP"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Rod Hasbulla", "price": 28.40, "author": "CryptoHasbulla", "blockchain": "Polygon", "uid_collection": "aAZP"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Kurt Cobain Hasbulla", "price": 24.03, "author": "CryptoHasbulla", "blockchain": "Polygon", "uid_collection": "aAZP"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Moscow Drip Hasbulla", "price": 140.93, "author": "CryptoHasbulla", "blockchain": "Polygon", "uid_collection": "aAZP"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "#20", "price": 45663.60, "author": "BoredApeYachtClub", "blockchain": "Ethereum", "uid_collection": "wgpa"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "#9587", "price": 84952.68, "author": "BoredApeYachtClub", "blockchain": "Ethereum", "uid_collection": "wgpa"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "#3368", "price": 5004.77, "author": "BoredApeYachtClub", "blockchain": "Ethereum", "uid_collection": "wgpa"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "#5672", "price": 1041291.37, "author": "BoredApeYachtClub", "blockchain": "Ethereum", "uid_collection": "wgpa"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "#5141", "price": 81053.84, "author": "BoredApeYachtClub", "blockchain": "Ethereum", "uid_collection": "wgpa"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "#7429", "price": 632902.37, "author": "BoredApeYachtClub", "blockchain": "Ethereum", "uid_collection": "wgpa"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "#4322", "price": 5952501.86, "author": "BoredApeYachtClub", "blockchain": "Ethereum", "uid_collection": "wgpa"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "#6298", "price": 902979.05, "author": "BoredApeYachtClub", "blockchain": "Ethereum", "uid_collection": "wgpa"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "#9330", "price": 1597841.81, "author": "BoredApeYachtClub", "blockchain": "Ethereum", "uid_collection": "wgpa"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "#7567", "price": 477356.48, "author": "BoredApeYachtClub", "blockchain": "Ethereum", "uid_collection": "wgpa"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Ape #2213", "price": 34.03, "author": "JustApeSolana", "blockchain": "Solana", "uid_collection": "kXyX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Ape #6768", "price": 211.36, "author": "JustApeSolana", "blockchain": "Solana", "uid_collection": "kXyX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Ape #6501", "price": 1184.12, "author": "JustApeSolana", "blockchain": "Solana", "uid_collection": "kXyX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Ape #4029", "price": 4993.50, "author": "JustApeSolana", "blockchain": "Solana", "uid_collection": "kXyX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Ape #9349", "price": 938.32, "author": "JustApeSolana", "blockchain": "Solana", "uid_collection": "kXyX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Ape #3200", "price": 249.38, "author": "JustApeSolana", "blockchain": "Solana", "uid_collection": "kXyX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Ape #9992", "price": 12408.94, "author": "JustApeSolana", "blockchain": "Solana", "uid_collection": "kXyX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Ape #798", "price": 248.89, "author": "JustApeSolana", "blockchain": "Solana", "uid_collection": "kXyX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Ape #9444", "price": 586.23, "author": "JustApeSolana", "blockchain": "Solana", "uid_collection": "kXyX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Ape #3479", "price": 225.32, "author": "JustApeSolana", "blockchain": "Solana", "uid_collection": "kXyX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Ape #4049", "price": 18.74, "author": "JustApeSolana", "blockchain": "Solana", "uid_collection": "kXyX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Ape #6893", "price": 112.93, "author": "JustApeSolana", "blockchain": "Solana", "uid_collection": "kXyX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Ape #6411", "price": 717.23, "author": "JustApeSolana", "blockchain": "Solana", "uid_collection": "kXyX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Crypto Cowboy #1586", "price": 1498.76, "author": "HD6UAp", "blockchain": "Solana", "uid_collection": "8P6c"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Crypto Cowboy #344", "price": 575.64, "author": "HD6UAp", "blockchain": "Solana", "uid_collection": "8P6c"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Crypto Cowboy #3447", "price": 98.88, "author": "HD6UAp", "blockchain": "Solana", "uid_collection": "8P6c"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Crypto Cowboy #2661", "price": 868.80, "author": "HD6UAp", "blockchain": "Solana", "uid_collection": "8P6c"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Crypto Cowboy #2067", "price": 810.26, "author": "HD6UAp", "blockchain": "Solana", "uid_collection": "8P6c"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Crypto Cowboy #3935", "price": 61.11, "author": "HD6UAp", "blockchain": "Solana", "uid_collection": "8P6c"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Crypto Cowboy #407", "price": 200.62, "author": "HD6UAp", "blockchain": "Solana", "uid_collection": "8P6c"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Crypto Cowboy #4028", "price": 22.00, "author": "HD6UAp", "blockchain": "Solana", "uid_collection": "8P6c"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Crypto Cowboy #3279", "price": 656.14, "author": "HD6UAp", "blockchain": "Solana", "uid_collection": "8P6c"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Crypto Cowboy #3458", "price": 559.60, "author": "HD6UAp", "blockchain": "Solana", "uid_collection": "8P6c"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "The Plague #9048", "price": 3321.44, "author": "44F4A3", "blockchain": "Ethereum", "uid_collection": "bB78"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "The Plague #1868", "price": 20.88, "author": "44F4A3", "blockchain": "Ethereum", "uid_collection": "bB78"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "The Plague #10810", "price": 371.75, "author": "44F4A3", "blockchain": "Ethereum", "uid_collection": "bB78"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "The Plague #9213", "price": 502.47, "author": "44F4A3", "blockchain": "Ethereum", "uid_collection": "bB78"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "The Plague #7775", "price": 45.41, "author": "44F4A3", "blockchain": "Ethereum", "uid_collection": "bB78"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "The Plague #5574", "price": 1410.36, "author": "44F4A3", "blockchain": "Ethereum", "uid_collection": "bB78"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "The Plague #3672", "price": 382.35, "author": "44F4A3", "blockchain": "Ethereum", "uid_collection": "bB78"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "The Plague #4003", "price": 152.23, "author": "44F4A3", "blockchain": "Ethereum", "uid_collection": "bB78"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "The Plague #6842", "price": 630.16, "author": "44F4A3", "blockchain": "Ethereum", "uid_collection": "bB78"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "The Plague #4003", "price": 140.98, "author": "44F4A3", "blockchain": "Ethereum", "uid_collection": "bB78"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "The Plague #10710", "price": 565.06, "author": "44F4A3", "blockchain": "Ethereum", "uid_collection": "bB78"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "The Plague #8606", "price": 874.02, "author": "44F4A3", "blockchain": "Ethereum", "uid_collection": "bB78"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "The Plague #2936", "price": 344.55, "author": "44F4A3", "blockchain": "Ethereum", "uid_collection": "bB78"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Bohemian #2948", "price": 1.91, "author": "Bohemia", "blockchain": "Solana", "uid_collection": "MVew"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Bohemian #3096", "price": 0.79, "author": "Bohemia", "blockchain": "Solana", "uid_collection": "MVew"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Bohemian #3692", "price": 26.62, "author": "Bohemia", "blockchain": "Solana", "uid_collection": "MVew"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Bohemian #2168", "price": 11.78, "author": "Bohemia", "blockchain": "Solana", "uid_collection": "MVew"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Bohemian #3766", "price": 248.79, "author": "Bohemia", "blockchain": "Solana", "uid_collection": "MVew"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Bohemian #4247", "price": 133.50, "author": "Bohemia", "blockchain": "Solana", "uid_collection": "MVew"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Bohemian #1235", "price": 94.36, "author": "Bohemia", "blockchain": "Solana", "uid_collection": "MVew"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Bohemian #1468", "price": 2.20, "author": "Bohemia", "blockchain": "Solana", "uid_collection": "MVew"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Bohemian #3667", "price": 345.22, "author": "Bohemia", "blockchain": "Solana", "uid_collection": "MVew"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Bohemian #2631", "price": 21.08, "author": "Bohemia", "blockchain": "Solana", "uid_collection": "MVew"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Bohemian #605", "price": 196.54, "author": "Bohemia", "blockchain": "Solana", "uid_collection": "MVew"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Bohemian #1684", "price": 15.21, "author": "Bohemia", "blockchain": "Solana", "uid_collection": "MVew"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Bohemian #3525", "price": 2.30, "author": "Bohemia", "blockchain": "Solana", "uid_collection": "MVew"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Bohemian #408", "price": 79.25, "author": "Bohemia", "blockchain": "Solana", "uid_collection": "MVew"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Bohemian #4356", "price": 59.45, "author": "Bohemia", "blockchain": "Solana", "uid_collection": "MVew"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Bohemian #1045", "price": 8.48, "author": "Bohemia", "blockchain": "Solana", "uid_collection": "MVew"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Bohemian #4366", "price": 338.94, "author": "Bohemia", "blockchain": "Solana", "uid_collection": "MVew"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Sensei #495", "price": 2.89, "author": "Sensei Labs", "blockchain": "Solana", "uid_collection": "RUpL"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Sensei #1849", "price": 13.34, "author": "Sensei Labs", "blockchain": "Solana", "uid_collection": "RUpL"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Sensei #796", "price": 16.38, "author": "Sensei Labs", "blockchain": "Solana", "uid_collection": "RUpL"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Sensei #2453", "price": 473.90, "author": "Sensei Labs", "blockchain": "Solana", "uid_collection": "RUpL"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Sensei #2572", "price": 115.27, "author": "Sensei Labs", "blockchain": "Solana", "uid_collection": "RUpL"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Sensei #1648", "price": 15.15, "author": "Sensei Labs", "blockchain": "Solana", "uid_collection": "RUpL"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Sensei #1001", "price": 233.17, "author": "Sensei Labs", "blockchain": "Solana", "uid_collection": "RUpL"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Sensei #4207", "price": 35.23, "author": "Sensei Labs", "blockchain": "Solana", "uid_collection": "RUpL"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Sensei #737", "price": 25.03, "author": "Sensei Labs", "blockchain": "Solana", "uid_collection": "RUpL"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Sensei #116", "price": 277.30, "author": "Sensei Labs", "blockchain": "Solana", "uid_collection": "RUpL"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Sensei #1217", "price": 173.11, "author": "Sensei Labs", "blockchain": "Solana", "uid_collection": "RUpL"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Sensei #97", "price": 42.15, "author": "Sensei Labs", "blockchain": "Solana", "uid_collection": "RUpL"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Sensei #3901", "price": 233.28, "author": "Sensei Labs", "blockchain": "Solana", "uid_collection": "RUpL"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Helions #8487", "price": 2.13, "author": "Helions", "blockchain": "Solana", "uid_collection": "Y8uR"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Helions #8411", "price": 10.06, "author": "Helions", "blockchain": "Solana", "uid_collection": "Y8uR"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Helions #5867", "price": 13.48, "author": "Helions", "blockchain": "Solana", "uid_collection": "Y8uR"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Helions #941", "price": 747.05, "author": "Helions", "blockchain": "Solana", "uid_collection": "Y8uR"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Helions #1899", "price": 82.73, "author": "Helions", "blockchain": "Solana", "uid_collection": "Y8uR"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Helions #9998", "price": 452.38, "author": "Helions", "blockchain": "Solana", "uid_collection": "Y8uR"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Helions #6575", "price": 9.34, "author": "Helions", "blockchain": "Solana", "uid_collection": "Y8uR"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Helions #3359", "price": 709.26, "author": "Helions", "blockchain": "Solana", "uid_collection": "Y8uR"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Helions #3719", "price": 36.06, "author": "Helions", "blockchain": "Solana", "uid_collection": "Y8uR"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Helions #7802", "price": 66.59, "author": "Helions", "blockchain": "Solana", "uid_collection": "Y8uR"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Helions #2473", "price": 1816.95, "author": "Helions", "blockchain": "Solana", "uid_collection": "Y8uR"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Helions #6649", "price": 402.50, "author": "Helions", "blockchain": "Solana", "uid_collection": "Y8uR"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Helions #2359", "price": 45.77, "author": "Helions", "blockchain": "Solana", "uid_collection": "Y8uR"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Helions #5584", "price": 24.37, "author": "Helions", "blockchain": "Solana", "uid_collection": "Y8uR"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Helions #361", "price": 81.75, "author": "Helions", "blockchain": "Solana", "uid_collection": "Y8uR"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Helions #3791", "price": 19.78, "author": "Helions", "blockchain": "Solana", "uid_collection": "Y8uR"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Helions #5002", "price": 39.06, "author": "Helions", "blockchain": "Solana", "uid_collection": "Y8uR"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "#5681", "price": 18996.73, "author": "Lazy-Lions", "blockchain": "Ethereum", "uid_collection": "zNmX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "#4558", "price": 1203.04, "author": "Lazy-Lions", "blockchain": "Ethereum", "uid_collection": "zNmX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "#5435", "price": 365.21, "author": "Lazy-Lions", "blockchain": "Ethereum", "uid_collection": "zNmX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "#3548", "price": 932.05, "author": "Lazy-Lions", "blockchain": "Ethereum", "uid_collection": "zNmX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "#7639", "price": 5940.04, "author": "Lazy-Lions", "blockchain": "Ethereum", "uid_collection": "zNmX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "#5626", "price": 7907.35, "author": "Lazy-Lions", "blockchain": "Ethereum", "uid_collection": "zNmX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "#4998", "price": 7861.43, "author": "Lazy-Lions", "blockchain": "Ethereum", "uid_collection": "zNmX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "#9584", "price": 177129.67, "author": "Lazy-Lions", "blockchain": "Ethereum", "uid_collection": "zNmX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "#1426", "price": 643.84, "author": "Lazy-Lions", "blockchain": "Ethereum", "uid_collection": "zNmX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "#7257", "price": 1328.83, "author": "Lazy-Lions", "blockchain": "Ethereum", "uid_collection": "zNmX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "#7639", "price": 23728.18, "author": "Lazy-Lions", "blockchain": "Ethereum", "uid_collection": "zNmX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "#8625", "price": 1460.76, "author": "Lazy-Lions", "blockchain": "Ethereum", "uid_collection": "zNmX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "#6228", "price": 16135.46, "author": "Lazy-Lions", "blockchain": "Ethereum", "uid_collection": "zNmX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "#769", "price": 3466.83, "author": "Lazy-Lions", "blockchain": "Ethereum", "uid_collection": "zNmX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "#9343", "price": 318.63, "author": "Lazy-Lions", "blockchain": "Ethereum", "uid_collection": "zNmX"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Royal #5779", "price": 13.29, "author": "DjDameDash", "blockchain": "Ethereum", "uid_collection": "ll18"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Royal #4139", "price": 20.32, "author": "DjDameDash", "blockchain": "Ethereum", "uid_collection": "ll18"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Royal #3775", "price": 58.88, "author": "DjDameDash", "blockchain": "Ethereum", "uid_collection": "ll18"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Royal #5949", "price": 344.39, "author": "DjDameDash", "blockchain": "Ethereum", "uid_collection": "ll18"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Royal #5179", "price": 6.67, "author": "DjDameDash", "blockchain": "Ethereum", "uid_collection": "ll18"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Royal #1353", "price": 20.67, "author": "DjDameDash", "blockchain": "Ethereum", "uid_collection": "ll18"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Royal #1357", "price": 32.14, "author": "DjDameDash", "blockchain": "Ethereum", "uid_collection": "ll18"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Royal #8785", "price": 533.36, "author": "DjDameDash", "blockchain": "Ethereum", "uid_collection": "ll18"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Royal #7417", "price": 229.60, "author": "DjDameDash", "blockchain": "Ethereum", "uid_collection": "ll18"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Royal #8889", "price": 128.75, "author": "DjDameDash", "blockchain": "Ethereum", "uid_collection": "ll18"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Royal #8006", "price": 6.39, "author": "DjDameDash", "blockchain": "Ethereum", "uid_collection": "ll18"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Royal #2720", "price": 552.27, "author": "DjDameDash", "blockchain": "Ethereum", "uid_collection": "ll18"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Royal #1354", "price": 32.23, "author": "DjDameDash", "blockchain": "Ethereum", "uid_collection": "ll18"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Royal #5094", "price": 67.95, "author": "DjDameDash", "blockchain": "Ethereum", "uid_collection": "ll18"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Royal #1926", "price": 349.71, "author": "DjDameDash", "blockchain": "Ethereum", "uid_collection": "ll18"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Royal #8022", "price": 219.35, "author": "DjDameDash", "blockchain": "Ethereum", "uid_collection": "ll18"}' http://localhost:8000/api-v1/collection/createToken
curl --header "Content-Type: application/json" --request POST --data '{"name": "Royal #4503", "price": 405.02, "author": "DjDameDash", "blockchain": "Ethereum", "uid_collection": "ll18"}' http://localhost:8000/api-v1/collection/createToken